When I export geoTIFF image from
Tools -- > Projection -->Rasterize
there is no CRS i.e.(EPSG:32634) assigned to it
I have to take it to QGIS and assign proper CRS
Can CC add CRS field in exporting window
assign CRS during geoTIFF exporting
assign CRS during geoTIFF exporting
Last edited by DA523 on Sat Jul 29, 2023 7:04 am, edited 1 time in total.
Re: Assing CRS during geoTIFF exporting
You mean manually?
I guess that would be possible, it's just that CC doesn't manage at all CRSes, so it would be a first (and we need to discover how this works with GDAL).
I guess that would be possible, it's just that CC doesn't manage at all CRSes, so it would be a first (and we need to discover how this works with GDAL).
Daniel, CloudCompare admin
Re: Assing CRS during geoTIFF exporting
This command worked for me outside of CC to set (CRS) SRC EPSG:32632 to exported CC raster tiff
python3.exe C:\2\2\utils\gdal_edit.py c:\2\x.tif -a_srs EPSG:32632
gdal_edit.py uses osgeo
as you can see here
import sys
from osgeo import gdal
from osgeo import osr
https://gdal.org/programs/gdal_edit.html
python3.exe C:\2\2\utils\gdal_edit.py c:\2\x.tif -a_srs EPSG:32632
gdal_edit.py uses osgeo
as you can see here
import sys
from osgeo import gdal
from osgeo import osr
https://gdal.org/programs/gdal_edit.html