I'm exporting my DEM and Ortho using:
blockw, blockh = 4096, 4096
chunk.exportOrthophoto('ortho.tif', blockw=blockw, blockh=blockh, color_correction=False, blending='mosaic', write_kml=True, write_world=True, projection=chunk.projection)
chunk.exportDem('dem.tif', blockw=blockw, blockh=blockh, write_kml=True, write_world=True, projection=chunk.projection)
I get many ortho-x-x.tif images each 4096x4096 but only a single dem.tif which is 4096x4096 and the DEM uses only the top left of this image?