Problem reading ESRI Grid format
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Durga Lal Shrestha
le 14 Août 2014
Modifié(e) : Brendan
le 23 Jan 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 commentaires
Réponse acceptée
Rob Comer
le 14 Août 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 commentaires
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!