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
1
vote
1 answer

Translate revit model to svf from bucket id

Im trying to translate a revit model to svf using this endpoint https://developer.api.autodesk.com/modelderivative/v2/designdata/job According to the docs this endpoint needs at lest these two attributes to work: urn formats First I got the…
Javier Cárdenas
  • 3,935
  • 4
  • 25
  • 35
1
vote
1 answer

translate file (model) located on BIM 360

I am planning to translate my objects located on bim 360 a couple of times per monther in order to retrieve the newest metadata of it because I am storing it on my local MYSQL and comper the project how far is going based on the time of the…
user11641191
1
vote
2 answers

autodesk translate to svf failed

I was following the steps from this tutorial to convert a file to svf format in order to be able to view it using the autodesk viewer. https://forge.autodesk.com/en/docs/model-derivative/v2/tutorials/prep-file4viewer/ I was trying to convert a dwg…
1
vote
1 answer

Programmatically Recomputing Precise Part Volume From Third-Party Files Using Forge APIs

I'm looking for best practices and performance-guided recommendations for recomputing a model's volume when it's missing from the source file. This is in the context of a web application I am working to build that enables: Uploading 3D models in a…
1
vote
0 answers

Obtaining room info from forge api

I need to get room information from the Revit model via Forge. I have tried to use generateMasterViews parameter as in this…
1
vote
2 answers

ADSK Forge Viewer displays my 3D DWG as only 2D

I am create a web app and using the Forge viewer to display my models, but when I upload and translate a 3D DWG model to svf for viewing I am only seeing 2D. It is a 3D DWG model, but the viewer is only displaying it as a 2D model instead. Is there…
1
vote
1 answer

How to implement 'Autodesk.AEC.LevelsExtension' and 'Autodesk.AEC.Minimap3DExtension'

I have tried to implement 'Autodesk.AEC.LevelsExtension'. and 'Autodesk.AEC.Minimap3DExtension' but it doesn't work for me. I have implemented what you recommend in the post…
1
vote
1 answer

Autodesk Forge Model Derivative API: TranslationWorker-InternalFailure

I am attempting to translate an .rvt file to svf using the following call using the model derivative forge api. I am uploading a single rvt file and the file is not corrupt POST /modelderivative/v2/designdata/job HTTP/1.1 Host:…
InsaneKarma
  • 75
  • 1
  • 8
1
vote
1 answer

Model Derivative API - Conversion from dwg to obj

I have been trying to convert a dwg file into an obj file using the model derivative API following the viewer tutorial. It works fine with the input files and output formats provided in the tutorial; however, when using a dwg file as input and…
1
vote
1 answer

Forge Viewer - after creating a new markup in viewer, can I select a dropdown value based on event "EVENT_MARKUP_SELECTED"?

function onDocumentLoadSuccess(viewerDocument) { var defaultModel = viewerDocument.getRoot().getDefaultGeometry(); viewer.loadDocumentNode(viewerDocument, defaultModel) .then(function () { …
1
vote
1 answer

How to use Autodesk.Viewing.MarkupsCore extension in a viewer so that I can draw on it?

Can you guide me or show some simple example in which I can use extension Autodesk.Viewing.MarkupsCore in a viewer example, so that i can draw markups on it for adding RFI/Submittal info
1
vote
2 answers

How to properly translate and display .sldasm files in Forge?

With the code below we can translate and display .dwg, .sldprt, .3ds, .pdf. Uploading and translating a .sldasm file seems to succeed, but when trying to load it in the viewer we get this message: "Model is empty, there is no geometry to show". This…
1
vote
1 answer

Phase Views in manifest after RVT model translation, how to detect or suppress?

We have a Revit model where we have configured a single 3D View in Publish Settings. We published that model to BIM 360 and are using Forge to extract the list of 3D Views. We notice that after the model is translated, the only views available in…
1
vote
1 answer

Is there any way to set limit on Autodesk Forge Credit consumption?

I want to make sure that my app do not accidentally consume more credits than I can afford. How can I set such limits of weekly or monthly consumption?
1
vote
1 answer

Model Derivative Translation of Revit Models stored in BIM360 Docs

I'm working on an app to translate Revit models which have already been published to the cloud into IFC format using the data-management and model-derivative APIs, and have run into two key issues for the model-derivative API. 1. Model-Derivative…