<div dir="ltr"><div>GeoTIFF does not store any WKT inside. GDAL is converting the definition of the CRS into the proper GeoTIFF tags.</div><div>With "tiffinfo" you can see them, for instance:</div><div><br></div><div>TIFF Directory at offset 0x8 (8)<br>  Image Width: 306 Image Length: 175<br>  Bits/Sample: 32<br>  Sample Format: IEEE floating point<br>  Compression Scheme: None<br>  Photometric Interpretation: min-is-black<br>  Samples/Pixel: 1<br>  Rows/Strip: 6<br>  Planar Configuration: single image plane<br>  Tag 33550: 0.025000,0.016667,0.000000<br>  Tag 33922: 0.000000,0.000000,0.000000,11.687500,51.208333,0.000000<br>  Tag 34735: 1,1,0,7,1024,0,1,2,1025,0,1,1,2048,0,1,4258,2049,34737,7,0,2054,0,1,9102,2057,34736,1,1,2059,34736,1,0<br>  Tag 34736: 298.257222,6378137.000000<br>  Tag 34737: ETRS89|</div><div><br></div><div>Any other software has to "interpret" those tiff tags. Usually using libgeotiff (that uses PROJ), but they can do anything else.<br></div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Fri, 20 Dec 2024 at 14:46, Kirk Waters - NOAA Federal via gdal-dev <<a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Is there a way to tell GDAL to list the full set of projection parameters in a GeoTiff? As much as I like the idea that you should just need the EPSG code, I've run across too many software packages that either don't know the code or have an incorrect interpretation of the code. I've tried supplying the WKT (from projinfo) as the -a_srs argument, but that still only puts the EPSG code in the georeferencing keys.</div><div><br></div><div>I did find that if I strip the authority code from the WKT, it will put all the parameters in and perhaps that's the best solution. It seems a shame to lose the authority code though. </div><div><br></div><div>Here's a few bash commands to illustrate.</div><div><br></div><div>wkt=`projinfo -o WKT2:2019 EPSG:6570 --single-line | sed 1d`<br><br>gdal_create -of GTiff -ot UInt16 -burn 0 -outsize 50 50 -a_srs "$wkt" wkt.tif<br><br>gdal_create -of GTiff -ot UInt16 -burn 0 -outsize 50 50 -a_srs EPSG:6570 epsg.tif<br><br>#strip the authority code<br>wkt_noauth=`echo $wkt | perl -p -e 's/],ID\["EPSG",6570]/]/;'`<br><br>gdal_create -of GTiff -ot UInt16 -burn 0 -outsize 50 50 -a_srs "$wkt_noauth" wkt_noauth.tif<br></div><div><br></div><div>Thanks for any suggestions.</div><div><br></div><div><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><font face="arial, helvetica, sans-serif">Kirk Waters, PhD </font></div><div><font face="arial, helvetica, sans-serif">NOAA Office for Coastal Management<br></font></div><div><font face="arial, helvetica, sans-serif">Applied Sciences Program      </font></div><div><div><font face="arial, helvetica, sans-serif"><a href="http://coast.noaa.gov/digitalcoast" target="_blank">coast.noaa.gov/digitalcoast</a></font></div></div><div><br></div><div><br></div></div></div></div></div>
_______________________________________________<br>
gdal-dev mailing list<br>
<a href="mailto:gdal-dev@lists.osgeo.org" target="_blank">gdal-dev@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/gdal-dev" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
</blockquote></div>