'Exporting clashes matrix and results out of BIM 360 Model Coordination to Excel

How can I export the clashes out of BIM 360 Model Coordination to Excel like we export Clash Report in Navisworks?



Solution 1:[1]

With Model Coordination API, you can extract the raw clash data. This tutorial tells more: https://forge.autodesk.com/en/docs/bim360/v1/tutorials/model-coordination/mc-tutorial-clash/ As to export to Excel you will need to use API of Excel to write the sheet yourself. They have library server side or client side. In some of our Forge samples, we demo the usage of Excel with other Forge API (such as Model Derivative). The logic could be similar when exporting clash data.

server side lib: https://github.com/Autodesk-Forge/forge-bim360.asset.exchange.excel client side lib: https://github.com/Autodesk-Forge/viewer-javascript-extract.spreadsheet

In addition, we also have one sample that exports clash data to PDF. https://github.com/Autodesk-Forge/forge-bim360-clashpdfexport

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Xiaodong Liang