Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

This repository demonstrates advanced viewing of clash raw data by Model Coordination API and demos exporting a PDF reports on the clashes the user is interested in.

License

Notifications You must be signed in to change notification settings

Autodesk-Forge/forge-bim360-clashpdfexport

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEPRECATED

This repository has been deprecated and migrated tohttps://github.com/autodesk-platform-services/aps-clash-data-export-pdf

BIM 360 Model Coordination - PDF Clash Export

node npm

oAuth2 Data-Management Viewer BIM-360

BIM 360 Model Set BIM 360 Clash

License Level

Description

This repository demonstrates advanced viewing of clash raw data by Model Coordination API and demos exporting a PDF report on the clashes the user is interested in.

Thumbnail

thumbnail

Live version

Live version: bim360-clash-pdf-exporter.herokuapp.com

To use this sample with your BIM 360 you need to "Enable Custom Integrations". At the app top-right, click Config to get detailed steps.

Recording: this video on how to play the demo.

Demonstrations

To work with the sample, firstly upload some source models to BIM 360 folder, then create model set in Model Coordination module with this folder. Please refer to BIM 360 Model Coordination documentation for details. Check Model Coordination Sample Files for testing RVT files, it includes two versions of models set.

  1. After logging in, on top left of the navigation panel, select one hub, then select one project.
  2. After selecting one project, the active modelsets in this activeproject will be listed.
  3. Click one modelset, all documents in the modelset will be grouped in the dropdown list of Clash Breakdown by Element . All the documents of this modelset will also be loaded in the Forge viewer
  4. After all documents are loaded in the Forge Viewer, select one document from dropdown list, the clashes by document elements will be listed. Select one clash or group of clashes, the corresponding clashes will be highlighted in the Forge viewer.
  5. Tick some clashes, click Export PDF. After a while, a report will be generated. It contains an overview of the modelset and information of each clash, including a screenshot. Note: do not touch Forge Viewer while exporting is running because the code will take snapshot of each clash.

Watch this video to learn how to use this demo.

Technology Architecture

The sample first downloads the model set data and clash data of the selected project.

Workflow

The relationship of the data are clash mapping, please refer to the other sample Clash View Basic

Based on the relationship, the code analyzes the data to build the mapping among the clash document, version URN and viewable guid etc. The mapping is saved to docsMap.json

Document Map

The method getBreakdownData iterates each clash instances. For one element (lvid) of one clash, the method dumps all clashes that this element (lvid) is involved, and groups them in the document.

Document Map

Setup

Prerequisites

  1. BIM 360 Account: must be an Account Admin to add the app custom integration, or invited by an admin of a BIM 360 Account. Learn about provisioning.
  2. Forge Account: Learn how to create a Forge Account, activate subscription and create an app at this tutorial. Get Forge client id, Forge client secret and Forge callback url and input them to config.js
  3. Create some modelsets of Model Coordination in BIM 360.
  4. Node.js: basic knowledge with Node.js.
  5. JavaScript basic knowledge with jQuery and Bootstrap

Running locally

Clone this project or download it. It's recommended to install GitHub desktop. To clone it via command line, use the following (Terminal on MacOSX/Linux, Git Shell on Windows):

git clone https://github.com/autodesk-forge/forge-bim360-clashpdfexport

Open the project folder in Visual Studio Code. Install the required packages, set the environment variables with your client ID & secret and finally start it. Via command line, navigate to the folder where this repository was cloned and use the following:

Mac OSX/Linux (Terminal)

npm install
export FORGE_CLIENT_ID=<<YOUR CLIENT ID FROM DEVELOPER PORTAL>>
export FORGE_CLIENT_SECRET=<<YOUR CLIENT SECRET>>
export FORGE_CALLBACK_URL=<<YOUR CALLBACK URL>>
npm start

Windows (use Node.js command line from Start menu)

npm install
set FORGE_CLIENT_ID=<<YOUR CLIENT ID FROM DEVELOPER PORTAL>>
set FORGE_CLIENT_SECRET=<<YOUR CLIENT SECRET>>
set FORGE_CALLBACK_URL=<<YOUR CALLBACK URL>>
npm start

Open the browser: http:https://localhost:3000.

Deployment

To deploy this application to Heroku, the Callback URL for Forge must use your .herokuapp.com address. After clicking on the button below, at the Heroku Create New App page, set your Client ID, Secret and Callback URL for Forge.

Deploy

Watch this video on how deploy samples to Heroku.

Further Reading

Tutorials

Blogs:

Tips & Tricks

  • Since the clash data might be large, don't pull the file locally and then process it. Decompressing and streaming the results on the fly would also be recommended, as showned in this sample utility.js
  • To make a simple demo, this sample does not use database to manage the clash data.
  • On client (browser) side, it may be more efficient to manage the data by IndexDB if the app requires to perform various analysis in different browser sessions.
  • Do not touch Forge Viewer while exporting PDF is running because the code will take snapshot of each clash.

Troubleshooting

  • Cannot see my BIM 360 projects: Make sure to provision the Forge App Client ID within the BIM 360 Account, learn more here. This requires the Account Admin permission.

  • The code of highlighting objects within Forge Viewer requires the corresponding documents of one clash instance have been loaded. If not, the highlighting will not work, try again when the loading is completed

License

This sample is licensed under the terms of the MIT License. Please see the LICENSE file for full details.

Written by

Xiaodong Liang @coldwood, Forge Partner Development

About

This repository demonstrates advanced viewing of clash raw data by Model Coordination API and demos exporting a PDF reports on the clashes the user is interested in.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published