1
Python and Java API / Duplicate DEM
« on: November 08, 2019, 01:08:34 PM »
Hello,
How to duplicate DEM using python api? I want to make this section of metashape instruction automatically:
I've tried appending existing elevation model to the list of chunk elevations models, but it hasn't worked.
How to duplicate DEM using python api? I want to make this section of metashape instruction automatically:
Quote
In case you want to save current DEM instance and edit its copy, right-click on
DEM and choose "Duplicate" option.
I've tried appending existing elevation model to the list of chunk elevations models, but it hasn't worked.
Code: [Select]
dem=chunk.elevation
chunk.elevations.append(dem)