Helmut,

From the doc, the ACE tiles are just raw files. So this is the perfect use case for using VRT descriptions for raw files : http://www.gdal.org/gdal_vrttut.html#gdal_vrttut_vrt

For example, for the 30N000E.ACE file, you can create a 30N000E.VRT description file

<VRTDataset rasterXSize="1800" rasterYSize="1800">
<SRS>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,AUTHORITY[&quot;EPSG&quot;,&quot;8901&quot;]],UNIT[&quot;degree&quot;,0.01745329251994328,AUTHORITY[&quot;EPSG&quot;,&quot;9122&quot;]],AUTHORITY[&quot;EPSG&quot;,&quot;4326&quot;]]</SRS> <GeoTransform>0, 0.0083333333333333332, 0.0, 45, 0.0, -0.0083333333333333332</GeoTransform>
 <VRTRasterBand dataType="Int16" band="1" subClass="VRTRawRasterBand">
   <SourceFilename relativetoVRT="1">30N000E.ACE</SourceFilename>
   <NoDataValue>-500.0</NoDataValue>
   <ImageOffset>0</ImageOffset>
   <PixelOffset>2</PixelOffset>
   <LineOffset>3600</LineOffset>
   <ByteOrder>LSB</ByteOrder>
 </VRTRasterBand>
</VRTDataset>

This VRT file can then be used as a regular GDAL dataset.

After having created all the VRT for each tile, you can generate a global VRT file which is the mosaic of all tiles

I've created a section on my page http://even.rouault.free.fr/ with the source code to generate all the .VRT files for each tile. There's also a .ZIP with all the VRTs and the global VRT already generated.

Best regards,

Even


Helmut Kudrnovsky a écrit :
hi,

has anyone information if gdal is able to read "ACE - Altimeter Corrected 
Elevations"-DEM-data from ESA?

overview ace2-data
http://www.cse.dmu.ac.uk/EAPRS/products_ace_overview.html

3 SECOND DATASET - Data_Format_and_Source_3S
http://tethys.eaprs.cse.dmu.ac.uk/ACE2/docs/Data_Format_and_Source_3S.doc

best regards
Helmut
______________________________________________________
GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT!
Jetzt freischalten unter http://movieflat.web.de

------------------------------------------------------------------------

_______________________________________________
gdal-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/gdal-dev


_______________________________________________
gdal-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/gdal-dev

Reply via email to