Getting Started with iModel.js QA (Jump Start) #100
-
Captured Q&A from the iModel.js Jump Start event on July 14th 2020, “Getting Started with iModel.js”. In this session, Roop Saini spoke about how to quickly get started with iModel.js. Topics included how to start your own iModel.js project, how to get your design data on the iModelHub and how to create snapshot iModels. Please don't reply to this discussion. If you have follow-up questions or comments please start a new discussion. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Q: Can NodeJS 14 also be used? Q: Can we see 1d and 2d data for the same drawing? Q: Are the dgn files usually provided by the client? Q: APIs are available for uploading DGNs? You don't have to use the interface? Q: Can we sync files from ProjectWise into an iModel? Q: From which version of ProjectWise, is this integration supported? Q: Why does the user interface have such a strange font? It looks like the iModel desktop starter is littered with curious accented characters. Q: What is the purpose for the synchronization? Q: What is the Geo bridge? Here is a more generic description of how bridges play a role in the synchronization process: https://communities.bentley.com/products/digital-twin-cloud-services/itwin-services/w/imodel-bridges-wiki Q: Are there any bridges for PCF (SmartPlant, CADWORX etc.) Q: What does your platform provide that competitors does not? Q: How is the user's data secured?
Q: If we are in Bentley Connect using a particular project context and an iModel is already provisioned to it. Then how can we move this iModel into iModel viewer? Q: Is it possible to open and combine two (or more) iModels? Q: What is the difference between a saved version and a snapshot? Q: Can we make a 3D view out of 2D design files? Q: Can we extract parameters and quantities to our own database? Q: How can an iModel relate to 4D, 5D, and so on? Q: Is it possible to have a drawing/iModel containing data from 2 different apps allowing multiple bridges (e.g. a DWG with Revit and OBD content) Q: Can we aggregate the data imported and viewed in an iModel? It would be helpful to demo import and aggregation. Q: Is it possible to run an iModelHub totally inside an intranet, so the data will be secure during their lifetime? Q: Aside from Infrastructure, what other industries could iModel support? Q: Can iTwin Synchronizer run in scheduled mode to pull changes in set intervals? Or is this always a conscious decision to sync? Q: Is there any limit of number of files that can be synchronized? Q: Does synch handle conflict resolution? Q: Is it possible to control what gets merged? e.g. Approve workflow (similar to Pull Requests). Q: What is the pricing structure? Do we pay for file storage, pull requests, specific functionality? Q: What is the iTwin Partner Program? Q: What about the ISO 15926 with iModel.js? Does iModel.js conform to the iso standard? Q: What is the difference between iModel.js and Cesium.js? It comes with unique rendering features - e.g., edge display (that Cesium does not support), custom line styles from MicroStation, hyper-modeling, sections, etc. The overall goal is to support an infrastructure digital twin - synchronization provides for a way to preserve the timeline of changes. It comes with an ecosystem of bridges that allow aligning the data in the iModel. Q: For working with iTwin / iModel services, is it mandatory to synchronize files on iModelHub? Or can you build an equivalent environment independently? As I understand it, iModelHub is a cloud service controlled by Bentley. Is this current? |
Beta Was this translation helpful? Give feedback.
Q: Can NodeJS 14 also be used?
A: We officially only support LTS versions, including Node 10 and 12, however we will be looking to support Node 14 soon and don't anticipate any issues. If you do try it, and run into issues, please let us know via our Github issues, https://github.com/imodeljs/imodeljs/issues.
Q: Can we see 1d and 2d data for the same drawing?
A: Yes, you can see 2d and 1d (property data) at the same time in our Design Review application. Since all data is stored in the iModel it is easy to write an application that shows 1d, 2d and 3d all at once. In a session tomorrow we will show an example of showing all three together in one application.
Q: Are the dgn files usually p…