Questions tagged [autodesk-model-derivative]

The Model Derivative API enables users to represent and share their designs in different formats, as well as to extract valuable metadata. Offers translation of design into different formats (such as STL and OBJ), also prepares for web viewing, extract properties, geometry parts and thumbnails.

The Model Derivative API enables users to represent and share their designs in different formats, as well as to extract valuable metadata. (Its translation functionality was previously bundled as part of the “View and Data API”.)

The API offers the following features:

  • Quickly translate the design into different formats, such as STL and OBJ.
  • Translate designs into SVF format for extracting data and for rendering files in the Viewer.
  • Extract object heirarchy trees, properties, and geometries of selected parts of a design.
  • Create different-sized thumbnails from design files.

632 questions
0
votes
1 answer

Autodesk Forge Viewer : Using translated urn from one application in another application?

I have an Angular Application, and I was trying to integrate Autodesk Forge Viewer into my Application, for that first I created a Sample Application following the URL (https://learnforge.autodesk.io/#/tutorials/viewmodels) and I was able to view…
0
votes
1 answer

Custom thumbnail

I wonder if there is a way to customize thumbnail generation for the source model, and we can even impact on rendering quality? For now, right after successful translation to 'SVF', we use Get Thumbnail API. Here is a sample of thumbnail we get when…
0
votes
2 answers

Conversion from IFC to SVF

To convert from IFC file to SVF output for Autodesk viewer, derivative webhooks (https://forge.autodesk.com/en/docs/webhooks/v1/developers_guide/overview/) can be used. Is there another way to do the same thing like using "autodesk design…
0
votes
1 answer

Autodesk Forge API to get "Selection Sets" from SVH2

Intratech's "Smart3D DBX to NWC" software exports NWC from S3D with embeded "Selection Sets". In Navisworks, it works fine. However I couldn't find a way to retrieve "Selection Sets" from SVH2 with Forge API. Am I missing something ?
0
votes
2 answers

Forge Model Derivatives: GET metadata always returns 202

I'm trying to get the Derivative Tree Json view of a large file in nwd format, but it always responds with the status code 202: {"result":"success"} My objective is to get the dbids of the first level of the tree with its name. If this works, it…
anfleta
  • 13
  • 2
0
votes
2 answers

Error while translating file - Unrecoverable exit code from extractor: -1073741829

I am trying to translate a file ifc to svf. I'm making the upload in multi parts and seems to be correct. This is the code Im using to translate public async convertFileToSvfFormat(forgeApiAccessToken: string, urn: string): Promise { const…
nacho
  • 531
  • 9
  • 26
0
votes
0 answers

Layers containing TIN surfaces missing from layer manager after translation from DWG to SVF

When translating a DWG to SVF, the layers containing TIN surfaces are missing from the layer manager. However the TIN object itself is present in the model and the object properties show the object's layer name. What can I do to fix this?
0
votes
1 answer

Autodesk forge translate file from private s3 bucket

Is there away to translate an item from a private S3 bucket on was. I have a web app where the client uploads different types of files to AWS s3 bucket. I would like to use the forge model derivative API to translate the model and extract the data…
0
votes
1 answer

Is it possible to get urns of models which are translated as references via zip translation?

When I upload and translate a zip-file with one rootFile and some models which act as references to Autodesk-Forge, I could only find one model-urn afterwards. Are all models uploaded separately under the hood and do you have the possibilty to get…
0
votes
3 answers

Is there a way to get the Revit Version from either the Project or Item in the Forge APIs without downloading the .rvt file?

Prior discussion of this topic I have found an similar question here that is quite old. Hoping for an update. I have found a possible development in the right direction, but as far as I can tell, this doesn't work in my case because I am not using…
0
votes
1 answer

Autodesk Model Derivative API does not retrive all Revit data

Following this question I am dealing with the same. I am trying to to retrive the type and type parameters, instances and instance parameters of all elements in a 3D view using Model Derivative API, but the data coming from…
0
votes
1 answer

Can't upload a file to Autodesk Forge OSS bucket

I have created an OSS bucket and I'm trying to upload a file to it, but getting an error every time. Here is my bucket: { "dictionary": { "bucketKey": "-removed my client id-------------test1", "bucketOwner": "-removed my client…
0
votes
1 answer

extensions problem with multi model not working

TransformationTool extension does not work when loading multiple models. It may also be due to the codes I wrote due to the version change. Viewer.js viewer = new Autodesk.Viewing.Private.GuiViewer3D(myViewerDiv, { extensions: [ …
0
votes
1 answer

Different properties from same IFC model

I uploaded an IFC model to a BIM360 project and then I used the model derivative API to extract properties. I uploaded the same model to a Forge bucket (connected to a Forge trial account), then I traslated the model to SVF2. The properties…
seva
  • 1
  • 1
0
votes
0 answers

How to retrieve 2D view from linked issue in BIM360

I have issues attached to 2D views of Revit 2022 document and I want to retrieve metadata properties for those views, however I can't figure out how to retrieve the view GUID. Here is my workflow: From issue Id I retrieve the issue payload using GET…