Exploring iModel Data QA (Jump Start) #98
-
Captured Q&A from the iModel.js Jump Start event on July 15th 2020, “Exploring iModel Data”. In this session, Roop Saini spoke about how to read data from an iModel. He introduced two essential tools for data discovery 1) iModel Console that allows developers to construct ECSQL queries, and 2) iModel Schema Explorer for exploring and understanding how data is structured within an iModel. 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: What is the difference between iModel.js and Autodesk Forge? Q: How do you access the iModel schema editor?
That will show you all the schemas from the iModel you opened. Q: Is it possible to add physical elements to an existing reality mesh? For example, if a given DOT has a 3D drone generated model of a bridge, is there currently a way to add/draw elements on the model and make an iModel? Q: Why is it so important to establish the relationship between instances? Q: Do I need to have Bentley account to access to iModels? Q: What is a model? Is it the system that we are designing or a model file as per desktop context? Q: Does this imply that the 2D drawings have been generated from the 3D models? Q: The BIS schemas seems like a relational database, is it possible to connect the iModel with a general-purpose database browser, like DBeaver? Q: Why does the Desktop Starter display weird fonts (decorated with punctuation)? Is it an Electron setting? Q: When you have an iModel with a master file and references, how can you return the model tree with an ECSQL query? For example, from the master file find all references. SELECT p.userlabel parentLabel, p.codevalue parent_Code, s.userlabel label, s.codevalue code You can also use our presentation rules system to get back a tree hierarchy that is easy to display in the tree we provide with iModel.js or in your own tree. Q: Where exactly are the relationships and the data of the model stored in your example? Q: Are these schemas created from the drawings when you generate the iModel as explained yesterday? Q: Will there be any discussion about raster overlays (from remote sensing)? Q: Are we speaking about the Digital Twin as the 3D model or a combination of different type of models such as Advanced Simulators and AI and as an optional part of the 3D model? What do you think about this DT approach? Q: When I change the corridor solution in OpenRoads, does the element ID in the iModel change? Q: In the list of supported Bentley Design Applications I don’t see any Oil & Gas specific brands like SACS or MOSES. Are there any plans to expand this list of applications? Q: In a scenario with a 3D model (PDMS) and 2D model (DWG), is the bridge the tool used to map the entities and bring them into iModel.js? Q: How are you working with IoT hub from Microsoft? We have another one specifically on IOT coming up in a few weeks: https://channel9.msdn.com/Shows/Internet-of-Things-Show/Deep-Dive-Integrating-3D-Models-and-IoT-data-with-iTwin-and-Azure-Digital-Twins?term=bentley&lang-en=true Here is a blog post on the subject as well: https://medium.com/imodeljs/road-to-iot-15a6ce1c43e1 Q: Is the data in an iModel divided into separate files? If I would need to transfer an iModel project to another company in order to visualize it, what should I transfer? |
Beta Was this translation helpful? Give feedback.
Q: What is the difference between iModel.js and Autodesk Forge?
A: In quick summary, Forge is not open, does not scale as well, and does not have a concept of change. Of course, this is a big topic. Please contact us for more information.
Q: How do you access the iModel schema editor?
A: The easiest way to get to the schema editor is:
Start at imodelconsole.bentley.com
Open an iModel by selecting a project, iModel, changeset.
Click on the 'gear' icon in the upper right corner and choose 'Schema Explorer'
That will show you all the schemas from the iModel you opened.
You can also go directly to imodelschemaeditor.bentley.com which will show a generic set of schemas.
Q: Is it possi…