Even,<br><br>Thank you for explaining about tags in GeoTiff, I did not realize that have priority over the world file. Your solution of using PROFILE=BASELINE works, however it also truncates some useful tags, such as the coordinate system. I could put the coordinate system back with -a_srs, but is there a way to selectively delete certain tags froma GeoTiff (I suppose while re-creating it, not in-place)? <br>
<br>Or, is there a way to at least see the tags? Looked briefly at &quot;tiffinfo&quot; and noticed output &quot;Tag 33922: 0.000000,0.000000,0.000000,5051999.800000,5052000.000000,0.000000&quot; which looks to me like it&#39;s citing the origin coordinates. However, did not investigate further so far...<br>
<br>Best regards,<br>Aleksey<br><br><div class="gmail_quote">On Thu, Oct 22, 2009 at 2:02 PM, Even Rouault <span dir="ltr">&lt;<a href="mailto:even.rouault@mines-paris.org">even.rouault@mines-paris.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Selon Aleksey Naumov &lt;<a href="mailto:anaumov@gmail.com">anaumov@gmail.com</a>&gt;:<br>
<br>
GDAL GeoTIFF driver always use the GeoTIFF tag when it is found. Worldfiles are<br>
only used when no GeoTIFF tag exists.<br>
<br>
One way of achieving what you want to do is to produce a clone of your original<br>
GeoTIFF without the geotiff tag by using the PROFILE=BASELINE creation option.<br>
<br>
For example :<br>
gdal_translate 1km177310505102008GROUPEALTA.tif<br>
1km177310505102008GROUPEALTA_nogeotifftag.tif -co PROFILE=BASELINE<br>
<br>
and then rename your worldfile to 1km177310505102008GROUPEALTA_nogeotifftag.wld<br>
<div><div></div><div class="h5"><br>
&gt; HI all,<br>
&gt;<br>
&gt; I am trying to understand how coordinate information is stored in a GeoTiff<br>
&gt; file, specifically the origin (UL corner) of the image. I have a few images<br>
&gt; which clearly have wrong origins, so they do not display correctly. Both<br>
&gt; ArcGIS and GDAL report incorrect origins.<br>
&gt;<br>
&gt; Initially I thought that the world files for the images were at fault,<br>
&gt; however, they look totally fine. Here is an example -- notice really large<br>
&gt; X-coord of origin as reported by gdalinfo:<br>
&gt; &gt; gdalinfo 1km177310505102008GROUPEALTA.tif<br>
&gt; Driver: GTiff/GeoTIFF<br>
&gt; Files: 1km177310505102008GROUPEALTA.tif<br>
&gt;        1km177310505102008GROUPEALTA.tfw<br>
&gt; Size is 5000, 5000<br>
&gt; Coordinate System is:<br>
&gt; PROJCS[&quot;UTM Zone 17N&quot;,<br>
&gt;     GEOGCS[&quot;NAD83_CSRS_1&quot;,<br>
&gt;         DATUM[&quot;NAD83_CSRS_1&quot;,<br>
&gt;             SPHEROID[&quot;GRS 1980&quot;,6378137,298.2572220960423]],<br>
&gt;         PRIMEM[&quot;Greenwich&quot;,0],<br>
&gt;         UNIT[&quot;degree&quot;,0.0174532925199433]],<br>
&gt;     PROJECTION[&quot;Transverse_Mercator&quot;],<br>
&gt;     PARAMETER[&quot;latitude_of_origin&quot;,0],<br>
&gt;     PARAMETER[&quot;central_meridian&quot;,-81],<br>
&gt;     PARAMETER[&quot;scale_factor&quot;,0.9996],<br>
&gt;     PARAMETER[&quot;false_easting&quot;,500000],<br>
&gt;     PARAMETER[&quot;false_northing&quot;,0],<br>
&gt;     UNIT[&quot;metre&quot;,1,<br>
&gt;         AUTHORITY[&quot;EPSG&quot;,&quot;9001&quot;]]]<br>
&gt; Origin = (5051999.800000000700000,5052000.000000000000000)<br>
&gt; Pixel Size = (0.200000000000000,-0.200000000000000)<br>
&gt; Metadata:<br>
&gt;   TIFFTAG_SOFTWARE=Adobe Photoshop CS2 Windows<br>
&gt;   TIFFTAG_DATETIME=2008:12:30 16:08:24<br>
&gt;   TIFFTAG_XRESOLUTION=72<br>
&gt;   TIFFTAG_YRESOLUTION=72<br>
&gt;   TIFFTAG_RESOLUTIONUNIT=2 (pixels/inch)<br>
&gt;   AREA_OR_POINT=Area<br>
&gt; Image Structure Metadata:<br>
&gt;   INTERLEAVE=PIXEL<br>
&gt; Corner Coordinates:<br>
&gt; Upper Left  ( 5051999.800, 5052000.000) ( 34d52&#39;42.64&quot;W, 34d45&#39;16.48&quot;N)<br>
&gt; Lower Left  ( 5051999.800, 5051000.000) ( 34d52&#39;48.38&quot;W, 34d44&#39;52.51&quot;N)<br>
&gt; Upper Right ( 5052999.800, 5052000.000) ( 34d52&#39;28.05&quot;W, 34d45&#39;5.78&quot;N)<br>
&gt; Lower Right ( 5052999.800, 5051000.000) ( 34d52&#39;33.77&quot;W, 34d44&#39;41.81&quot;N)<br>
&gt; Center      ( 5052499.800, 5051500.000) ( 34d52&#39;38.21&quot;W, 34d44&#39;59.14&quot;N)<br>
&gt; Band 1 Block=5000x1 Type=Byte, ColorInterp=Red<br>
&gt; Band 2 Block=5000x1 Type=Byte, ColorInterp=Green<br>
&gt; Band 3 Block=5000x1 Type=Byte, ColorInterp=Blue<br>
&gt;<br>
&gt; The world file looks fine to me, and it has correct origin info (X-coord):<br>
&gt; &gt; type 1km177310505102008GROUPEALTA.tfw<br>
&gt; 0.200000<br>
&gt; 0.000000<br>
&gt; 0.000000<br>
&gt; -0.200000<br>
&gt; 731000.100000<br>
&gt; 5051999.900000<br>
&gt;<br>
&gt; Even if I rename the TFW file, gdalinfo still reports the same incorrect<br>
&gt; origin, so it must be stored in a GeoTiff tag, I guess? If so, how do I<br>
&gt; override and correct this info on an image? Also, does a world file not have<br>
&gt; a higher priority than a built-in tag value?<br>
&gt;<br>
&gt; Thank you,<br>
&gt; Aleksey<br>
&gt;<br>
<br>
<br>
</div></div></blockquote></div><br>