Posts

Showing posts from December, 2017

Revit to Infraworks Highlights

Revit import to Infraworks Navis 3D View in Revit: https://youtu.be/Y-vdLl5NREo?t=957 Revit Materials: 3D view for exporting standard textures (Customized textures don't export in this tutorial): https://youtu.be/Y-vdLl5NREo?t=1912    Navisworks to manage export settings to translate Revit files: https://youtu.be/Y-vdLl5NREo?t=2028 Alternates FBX and Colada (Maintaining rotation and location) https://youtu.be/Y-vdLl5NREo?t=2091  revit not on roadmap!? FBCX or IFC acceptable. Lat Long in Infraworks Point Of Interest POI: https://youtu.be/Y-vdLl5NREo?t=2151 Script for exporting POI Lat Long from infraworks: https://youtu.be/Y-vdLl5NREo?t=2223  FBX (No basepoints user origin point)  https://youtu.be/Y-vdLl5NREo?t=2328 Transmuting coordinates in Revit to Infraworks for FBX https://youtu.be/Y-vdLl5NREo?t=2627 'Does Infraworks use NWC files'? https://youtu.be/Y-vdLl5NREo?t=2748 From Revit you wouldn't use an NWC,

REvit.Excel.Python node for writing (new) excel files

###Export Excel - intended to replace malfunctioning excel node ### Ron.Allen@AECOM.com import clr import System clr . AddReferenceByName ( 'Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' ) ##AddReferenceGUID("{00020813-0000-0000-C000-000000000046}") ''Excel C:\Program Files\Microsoft Office\Office15\EXCEL.EXE ##Need to Verify interop for version 2015 is 15 and node attachemnt for it. from Microsoft . Office . Interop import * ##Excel ################################Initialize FP and Sheet ID ##Same functionality as the excel node strFileName = IN [ 0 ] ##Filename sheetName = IN [ 1 ] ##Sheet RowOffset = IN [ 2 ] ##RowOffset ColOffset = IN [ 3 ] ##COL OFfset Data = IN [ 4 ] ##Data Overwrite = IN [ 5 ] ##Check for auto-overwtite XLVisible = F