<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" data-smartmail="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>