Reputation: 1038
I am testing out running an SVF2 translation of linked .rvt files. For both a source file packaged as a zip and a source file that contains references, the object hierarchy of my translation is not grouped per linked model. Instead all of the objects in all of the models are in one top-level objects
array.
{
"data": {
"type": "objects",
"objects": [
{
"objectid": 1,
"objects": [
// All objects from the linked models are in here
]
"name": "Model"
}
]
}
}
Is it possible for the translation to split the objects apart by model? On my end I would like to filter the objects on a per-model basis if possible. The only workaround I can think of is to run a separate translation for each model, but that will incur additional costs. Something like this is what I'm hoping to see in the hierarchy:
{
"data": {
"type": "objects",
"objects": [
{
"objectid": 1,
"objects": [
// Objects from model 1
]
"name": "Model 1"
},
{
"objectid": 2,
"objects": [
// Objects from linked model 2
]
"name": "Model 2"
},
{
"objectid": 3,
"objects": [
// Objects from linked model 3
]
"name": "Model 3"
},
]
}
}
Upvotes: 1
Views: 52
Reputation: 9934
That's a very good point. Unfortunately, I'm afraid it is not possible to configure the Model Derivative service translation to restructure the hierarchy like this. We will need to submit a feature request with the engineering team to see if this could be supported.
Upvotes: 1