I have set my model in WSG84 early on in my workflow to export the orthophoto mosaic properly, however after the orthophoto export, I'd like to export the 3D model in its local coordinate system (it needs to be in its local coord system to upload properly to web-based browsers). Currently I am doing this with:
chunk.exportModel(model_path, texture_format='tif', format='obj', projection=chunk.projection)
however the model doesn't upload properly, so I suspect that "chunk.projection" is still returning the global (WGS84-based) coordinate system. How can you return the chunk local coordinate system to use for the projection input in the chunk.exportModel function?
Thanks