0

I have 3 revit models on BIM360 and I want to view them in a Forge Viewer. To do this, I aggregated the 3 models with the information provided at this link Revit shared coordinates to Forge viewer, and everything is OK. I want to know if is possibile to get refPoint information in the model's SQLLite db (https://forge.autodesk.com/blog/accessing-design-metadata-without-viewer) Is it possible?

TIA Alder

1 Answers1

0

Unfortunately, the refPoint data is extracted into AEC Model Data only. It's a JSON file. You can get see it in the model manifest via calling GET :urn/manifest and download it by using GET {urn}/manifest/{derivativeurn}

{
    "urn": "urn:adsk.viewing:fs.file:dXJuOmFkc2sud2lwcH....x/output/Resource/AECModelData.json",
    "role": "Autodesk.AEC.ModelData",
    "mime": "application/json",
    "guid": "a4aac952-a3f4-031c-4113-b2d9ac2d0de6",
    "type": "resource",
    "status": "success"
},

ref: https://forge.autodesk.com/blog/consume-aec-data-which-are-model-derivative-api

Eason Kang
  • 6,155
  • 1
  • 7
  • 24