Please let me know what the options - particularly sourceType - should be when creating an asset based on an OBJ file. I am able to upload the OBJ file and its corresponding MTL file using powershell, but cesium cannot convert it to 3D Tiles because the sourceType isn’t right.
This is the JSON I’ve tried so far in the create asset api call:
{
“name”: “test via api”,
“description”: “via api”,
“attribution”: “via api”,
“type”: “3DTILES”,
“options”: {
“sourceType”: “CITYGML”,
“clampToTerrain”: true,
“baseTerrainId”: 1
}
}
Is there a list of api sourceTypes somewhere?
Thanks