Hi!
I recently used the docker container (repo: digipa/orthorectify, image ID: 69df7060dd29) to post-process input images of an ODM project. However, the generated orthorectified .tif files have incorrect coordinates. Below is the output of gdalinfo for one of the .tif files:

The 6th entry of the GeoTransform array should represent the spacing in the y direction, but it appears to be a y-coordinate value instead (WGS84/UTM zone 30N).
Could this issue be related to the orthorectify tool, or might it originate from the ODM outputs used?
Here is the command line i used:
docker run -it --rm \
-v $output_dir:/dataset \
-v $(pwd)/images:/dataset/images \
digipa/orthorectify /dataset \
--interpolation bilinear \
--no-alpha true \
--verbose
Hi!

I recently used the docker container (repo: digipa/orthorectify, image ID: 69df7060dd29) to post-process input images of an ODM project. However, the generated orthorectified .tif files have incorrect coordinates. Below is the output of
gdalinfofor one of the .tif files:The 6th entry of the GeoTransform array should represent the spacing in the y direction, but it appears to be a y-coordinate value instead (WGS84/UTM zone 30N).
Could this issue be related to the orthorectify tool, or might it originate from the ODM outputs used?
Here is the command line i used: