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

How to create a bounding box around an object using three min js

Create a bounding box around 3d objects and rotate them according to object
0
votes
0 answers

Search method doesn't work with Autodesk Navisworks file in Autodesk forge Viewer API

Search method always return empty objects with Navisworks file but it works with Revit file. Here is the sample code which works with revit file but doesn't work with navisworks file. viewer.search('Levels', function(dbIds){ console.log(dbIds); },…
0
votes
1 answer

Properties.db Schema or Data Dictionary details

We have a need to use the sql lite database "properties.db" that can be downloaded with conversion to forge format. I tried to find documentation on how the tables link and the various field types and how they translate but so far haven't found…
0
votes
1 answer

Autodesk model derivative translation job results in `TranslationWorker-InternalFailure` response?

I'm attempting to translate a .zip file into a .svf manifest using Autodesk's Model Derivative API. I am able to successfully create a bucket, place the zip into the bucket using chunked uploading, and begin a translation job using the respective…
0
votes
1 answer

POST references response

I'm having some difficulties to get a "urn" response from a "POST references" request. I receive only a: {"result": "success"} As specified in the API Documentation, the Body Structure (200/201) has to return a "result" ("success") and a "urn" (urn…
MatLa
  • 70
  • 3
0
votes
1 answer

Define IFC Mvd on posting translation job

On translation of RVT file to SVF, I also want to post a job to translate and download an IFC file. Opening that IFC file after translation, it seems to use CV1 - Coordination View 1, which is a very old Model View Definition (hardly in use anymore…
0
votes
2 answers

Setting Up References Between AutoCAD Files

I've followed the advice listed in the article https://forge.autodesk.com/blog/setting-up-references-between-files to publish a Revit 2018 model and its linked references to Forge. This works and I can successfully view the entire model with the…
JGeerWM
  • 810
  • 10
  • 16
0
votes
0 answers

IFC to SVF conversion fails

Sorry, this is similar to, but I can't comment on that: Translate nwd to svf - Internal Failure -1073741829 I have a large number of .IFC files exported from Tekla Structures that I'm trying to upload to Forge and process like instructed in "Prepare…
0
votes
1 answer

Persist capture screenshots of model views

I need to capture model view screenshots and use them later. When I capture the screenshot, save and render without refreshing page. it works but when I refresh the page, it renders with broken screenshot image. What I am doing - Capture…
sushilprj
  • 2,203
  • 1
  • 14
  • 19
0
votes
0 answers

Exract model object data from .dgn file with Forge Model Derivative API

We've had good luck importing, converting, and extracting meta data from .rvt files using the following steps: Uploading files in chunks to an OSS bucket using resumable endpoint PUT buckets/:bucketKey/objects/:objectName/resumable Kicking off…
Ben
  • 21
  • 2
0
votes
1 answer

Autodesk viewer - Lack of data with local svf file

I have the following problem with the Autodesk API - viewer. When I read a file with an urn, I can get data such as refPointTransform. But when I load a local svf file, I can't. Here is a photo with an urn: As you can see, there is…
Wandrille
  • 6,267
  • 3
  • 20
  • 43
0
votes
2 answers

Extract vector images from Revit file

I was wondering if it's possible to extract Vector images from 2d views of revit files from forge api. I've used the following endpoint to achieve thumbnail of the views, but the thumbnails are very small (400 x…
0
votes
1 answer

Autodesk / update Geometry

I have successfully uploaded a geometry to Autodesk Forge via the model derivative API. What I'm trying to do is overwrite the existing geometry with different data and have the new geometry displayed when reloading the viewer. I have deleted the…
0
votes
2 answers

Autodesk Forge API createBucket not working

I'm trying to build an application by using the autodesk-forge-api's. To start with I created an App inside my Autodesk configuration to receive an "ClientID" and a "Client Secret" which are required to make API calls. Somehow, when I try to use the…
0
votes
1 answer

DerivativesApi.GetModelviewProperties for subset of properties

The model viewer has the ability to get properties by passing a filter: viewer.model.getBulkProperties(dbIds, ['externalId', 'Category'], function) where we can limit the results to just the two properties 'externalId' and 'Category'. It would be a…
JGeerWM
  • 810
  • 10
  • 16