Hi:<br>I have some hdf5 data and I want to change the subdataset to geotiff, and I use gdalinfo to get the subdataset name and then I use &quot;gdal_translate subdatasetname result.tif&quot;.<br>However&nbsp; I found that the crs of the generated tif is not recognized by the arcgis,then I want to know why so I create a new tif by arcgis(here it is named arcgis.tif,and the coordinate system is wgs84). Then I use gdalinfo command to get the metadata of the arcgis.tif and compare it with the tif generated by gdal(here I call it gdal.tif). Then I found that the Coordinate are the same as the following:<br>
--------------------------<br>Coordinate System is:<br>GEOGCS[&quot;WGS 84&quot;,<br>&nbsp;&nbsp;&nbsp; DATUM[&quot;WGS_1984&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPHEROID[&quot;WGS 84&quot;,6378137,298.2572235630016,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;7030&quot;]],<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;6326&quot;]],<br>&nbsp;&nbsp;&nbsp; PRIMEM[&quot;Greenwich&quot;,0],<br>&nbsp;&nbsp;&nbsp; UNIT[&quot;degree&quot;,0.0174532925199433],<br>&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;4326&quot;]]<br>------------------------------<br>
the difference is the <b>Corner Coordinates</b>:<br>the arcgis.tif is :<br>-------------------<br>Corner Coordinates:<br>Upper Left&nbsp; ( 103.8438587,&nbsp; 28.6769083) (103d50&#39;37.89&quot;E, 28d40&#39;36.87&quot;N)<br>Lower Left&nbsp; ( 103.8438587,&nbsp; 28.6668077) (103d50&#39;37.89&quot;E, 28d40&#39;0.51&quot;N)<br>
Upper Right ( 103.8546032,&nbsp; 28.6769083) (103d51&#39;16.57&quot;E, 28d40&#39;36.87&quot;N)<br>Lower Right ( 103.8546032,&nbsp; 28.6668077) (103d51&#39;16.57&quot;E, 28d40&#39;0.51&quot;N)<br>Center&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ( 103.8492310,&nbsp; 28.6718580) (103d50&#39;57.23&quot;E, 28d40&#39;18.69&quot;N)<br>
------------------<br>the gdal.tif is :<br>----------------<br>Corner Coordinates:<br>Upper Left&nbsp; (&nbsp;&nbsp;&nbsp; 0.0,&nbsp;&nbsp;&nbsp; 0.0)<br>Lower Left&nbsp; (&nbsp;&nbsp;&nbsp; 0.0,&nbsp; 720.0)<br>Upper Right ( 1440.0,&nbsp;&nbsp;&nbsp; 0.0)<br>Lower Right ( 1440.0,&nbsp; 720.0)<br>Center&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&nbsp; 720.0,&nbsp; 360.0)<br>
------------------------<br>It seems that the bbox is defined by different manner , the arcgis.tif is by <span id="result_box" class="short_text"><span style="background-color: rgb(255, 255, 255);" title="¶È·ÖÃë">Degrees minutes and seconds and the gdal.tif is by grid of some other?<br>
<br>I wonder how to solve this problem?<br></span></span>