I am using gdal_grid to create a grid from a point shapefile.  gdalinfo reports inverted y-axis coordinates for the output raster.  The command I am running is:<br><br>gdal_grid -ot Float32 -outsize 800 600 -l sites -zfield elev sites.shp /tmp/sites.tif<br>

<br>I am using gdal 1.8.0.  the output of gdalinfo for sites.tif is:<br><pre style="font-family:courier new,monospace">Driver: GTiff/GeoTIFF
Files: /tmp/sites.tif
Size is 800, 600
Coordinate System is:
GEOGCS[&quot;WGS 84&quot;,
    DATUM[&quot;WGS_1984&quot;,
        SPHEROID[&quot;WGS 84&quot;,6378137,298.257223563,
            AUTHORITY[&quot;EPSG&quot;,&quot;7030&quot;]],
        AUTHORITY[&quot;EPSG&quot;,&quot;6326&quot;]],
    PRIMEM[&quot;Greenwich&quot;,0],
    UNIT[&quot;degree&quot;,0.0174532925199433],
    AUTHORITY[&quot;EPSG&quot;,&quot;4326&quot;]]
Origin = (-123.860031127930000,38.011638641357401)
Pixel Size = (0.033339290618897,0.026156539916992)
Metadata:
  AREA_OR_POINT=Area
Image Structure Metadata:
  INTERLEAVE=BAND
Corner Coordinates:
Upper Left  (-123.8600311,  38.0116386) (123d51&#39;36.11&quot;W, 38d 0&#39;41.90&quot;N)
Lower Left  (-123.8600311,  53.7055626) (123d51&#39;36.11&quot;W, 53d42&#39;20.03&quot;N)
Upper Right ( -97.1885986,  38.0116386) ( 97d11&#39;18.96&quot;W, 38d 0&#39;41.90&quot;N)
Lower Right ( -97.1885986,  53.7055626) ( 97d11&#39;18.96&quot;W, 53d42&#39;20.03&quot;N)
Center      (-110.5243149,  45.8586006) (110d31&#39;27.53&quot;W, 45d51&#39;30.96&quot;N)
Band 1 Block=800x2 Type=Float32, ColorInterp=Gray</pre>Is there any way to invert the y-axis back?  Thanks for the help.<br>