WoWeh
WoWeh

Reputation: 106

Translated Navisworks file - CAD elements are displaced

Good Day,

we experience a strange issue with a file from a customer, where some CAD elements are in a wrong place in the translated SVF2.

Here is a screenshot of the original Navisworks file:
Screenshot Navisworks

Here is a screenshot of a translated file in the Forge Viewer:
Screenshot Forge Viewer
Note the missing sheet piles.

The sheet piles are located in a completely different location:
Screenshot Displaced Elements

To check what’s going on, we also uploaded the file to Autodesk Docs.
Here the model looks fine:
Screenshot BIM360

Any ideas what is going on?

Thanks

Wolfgang

Upvotes: 0

Views: 118

Answers (1)

Eason Kang
Eason Kang

Reputation: 7070

Renaming the file and translating it to svf2 helped resolve this issue.

  1. Rename the file
  2. Upload it to OSS
  3. Request an SVF2 translation like the below
curl --location --request POST 'https://developer.api.autodesk.com/modelderivative/v2/designdata/job' \
--header 'Content-Type: application/json' \
--data-raw '{
   "input": {
     "urn": ""
   },
   "output": {
     "formats": [
       {
         "type": "svf2",
         "views": [
           "3d"
         ]
       }
     ]
   }
 }'

Upvotes: 0

Related Questions