Reputation: 106
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:
Here is a screenshot of a translated file in the Forge Viewer:
Note the missing sheet piles.
The sheet piles are located in a completely different location:
To check what’s going on, we also uploaded the file to Autodesk Docs.
Here the model looks fine:
Any ideas what is going on?
Thanks
Wolfgang
Upvotes: 0
Views: 118
Reputation: 7070
Renaming the file and translating it to svf2 helped resolve this issue.
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