Automate exporting NWC files?

Automate exporting NWC files?

tlc_coreyschiller
Enthusiast Enthusiast
5,071 Views
8 Replies
Message 1 of 9

Automate exporting NWC files?

tlc_coreyschiller
Enthusiast
Enthusiast

As my first forray into the Revit API, I want to be able to automate the process of saving out NWC files from various views in a project.  If possible I'd like to script this, so that it can be done on a schedule, say daily at a certain time.

 

Is this possible without too much time and effort?

What would be the best approach to tackle something like this?

Where can I find sample code to get me going?

 

Thank you!

5,072 Views
8 Replies
Replies (8)
Message 2 of 9

Anonymous
Not applicable

Yes that can be done. I've seen a class in AU about it.

 

It's a little bit messy as it involves using journal files and windows task scheduling. If I can find the link (when at home) I'll pass it to you!

Message 3 of 9

tlc_coreyschiller
Enthusiast
Enthusiast

Yes, if you can find that info it would be much appreciated!

0 Likes
Message 4 of 9

Anonymous
Not applicable

Here you go..

 

http://au.autodesk.com/?nd=class&session_id=9039

 

CR3220 Automating Autodesk® Navisworks® Clash Reports

Message 5 of 9

Anonymous
Not applicable

Messy isn't the word for it. If I remember correctly they were using DWF files because of a dialog that kept coming up. And their report may have been a text file or something, no images in any case.

0 Likes
Message 6 of 9

tlc_coreyschiller
Enthusiast
Enthusiast

Thanks for the reply, unfortunately I don't have an AU subscription..

0 Likes
Message 7 of 9

mikako_harada
Community Manager
Community Manager

Hi Corey,

 

Anybody can sign up for the AU site to access to the class materials from the AU in the past.  Feel free to register for it.

 

As to the original question about API for exporting NWC, that feature is an addin coming from Navisworks product.  No API within the Revit for that. We have a wish to make it accessible through API, however. 

Technically speaking, it is possible to write your own using Revit API and Navisworks NWcreate API. But it will involve quite a lot of coding, I'm sure.

 


Mikako Harada
Developer Technical Services
0 Likes
Message 8 of 9

Anonymous
Not applicable

For those that arrive here from a search engine (like myself) check out the new INavisworkExporter interface: http://www.revitapidocs.com/2017/b389017c-d7af-f0a4-7440-e9dc30f47718.htm

Message 9 of 9

thomas
Advocate
Advocate

This is very easy to do using the class:

 

 

NavisworksExportOptions 

 

 

Note that you need to install the free Navisworks exporter utility  here, otherwise the 

Document.Export

method you need to save the NWC will throw an exception. You can also implement a check in case your users don't have the NWC exporter utility installed: 

 

OptionalFunctionalityUtils.IsNavisworksExporterAvailable()