Problem reading ESRI Grid format
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Durga Lal Shrestha
il 14 Ago 2014
Modificato: Brendan
il 23 Gen 2015
I am trying to read ESRI Grid format w001001.adf file using arcgridread function from mapping toolbox. But I got the error message:
filename = 'd:\Mapping Toolbox\DEM_DATA\e148s36dem1_0\w001001.adf';
>> [Z,R] = arcgridread( filename );
Error using arcgridread>readHeader (line 81)
Unexpected tag '
Error in arcgridread (line 35)
hdr = readHeader(fid, isURL);
The folder where I am reading w001001.adf file has following files
- metadata.xml
- dblbnd.adf
- sta.adf
- w001001.adf
- w001001x.adf
- hdr.adf
- log
- prj.adf
Thank you.
0 Commenti
Risposta accettata
Rob Comer
il 14 Ago 2014
There are two different ESRI (Arc) Grid formats: the proprietary binary format, which is what you have, and the publicly documented exchange format (Arc Grid ASCII), which is what the arcgridread function supports. There are several options that may work for you: (1) retrieve your dataset in a different format, such as GeoTIFF (GeoTIFF is publicly documented and is supported by the geotiffread function), (2) ask your data provider to use a different (non-proprietary) format to supply your data, (3) use ESRI software to convert the dataset to GeoTIFF, or (4) use the GDAL library (www.gdal.org) to convert the dataset. (To be best of my knowledge, GDAL has an ESRI Grid "driver" that is based on a reverse engineering of the format.)
2 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!