0

I was successful in downloading Geometory Data of Revit Model (following this tutorial).

And I was successful in getting Revit Model Properties (tutorial).

But I can not find key for tying geometory with property.

Anyone know key for tying? or Anyone know how to tie both data ?

Augusto Goncalves
  • 8,493
  • 2
  • 17
  • 44
Shindo_10
  • 21
  • 3

1 Answers1

0

The Revit Element UniqueId property is included in the Forge translated result. In the Forge data, it is stored as the externalId.

An example of accessing the Forge information in the viewer in order to transmit changes back to the Revit BIM is provided by the roomedit3d sample:

https://github.com/jeremytammik/roomedit3d

Look at the Roomedit3dTranslationTool implementation:

https://github.com/jeremytammik/roomedit3d/blob/master/www/js/extensions/Roomedit3dTranslationTool.js

Jeremy Tammik
  • 7,333
  • 2
  • 12
  • 17
  • i added your question and this answer to the roomedit3d readme docs at https://github.com/jeremytammik/roomedit3d#1-autodesk-forge-model-derivative-api--how-to-tie-forge-geometry-in-obj-file-with-revit-bim-property – Jeremy Tammik Sep 14 '16 at 10:34
  • Thank you Jeremy. I understood that UniqueId is converted to externalId. – Shindo_10 Sep 15 '16 at 06:13