导出冲突矩阵并以BIM 360模型协调为优先
如何将Clashes从BIM 360模型协调中导出到Excel中,就像我们在NavisWorks中导出冲突报告一样?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将Clashes从BIM 360模型协调中导出到Excel中,就像我们在NavisWorks中导出冲突报告一样?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用模型协调API,您可以提取原始的冲突数据。本教程告诉更多:
至于导出到Excel,您需要使用Excel的API自己写纸。他们具有库服务器端或客户端。
在某些伪造样品中,我们将Excel的用法与其他Forge API(例如模型导数)进行了演示。导出冲突数据时,逻辑可能相似。
服务器端lib: https://github.com/autodesk-forge/ forge-bim360.asset.exchange.excel
client side lib: https://github.com/Autodesk-Forge/viewer- JavaScript-extract.spreadsheet
此外,我们还有一个样本将冲突数据导出到PDF。
https://github.com/autodesk.com/autodesk-forge/forge-bim-bim360-clashpdfexport
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
如果您只想在模型之间进行冲突的原始计数,而没有任何有关冲突本身的信息(例如BIM 360显示的矩阵),则可以在Chrome中使用“ Inspect”工具。打开工具后,导航到“网络”选项卡,然后打开显示Clash Matrix的页面。它将为您提供一个项目列表和视觉范围,以显示它们下载时。在视觉上方,应该有一个盒子里有一个带有“滤镜”一词的盒子。键入“矩阵”。
应该出现两个文件。单击一个更大的文件。显示器应打开,为您提供矩阵的原始数据。您可以选择所有内容,并将其复制并粘贴到所需的位置。
If you want just the raw count of clashes between models without any information about the clash itself (like the matrix from BIM 360 shows), you can use the "Inspect" tool in Chrome. After opening the tool, navigate to the "Network" tab and then open up the page that shows the clash matrix. It will give you a list of items and a visual that shows when they downloaded. Above the visual, there should be a box with the word "Filter" in it. Type "matrix".
Two files should appear. Click on the one that is a bigger file. A display should open giving you the raw data of the matrix. You can select it all and copy and paste it where you want it.