I am trying to use a bit of code from Matt Perry to sample an ArcInfo binary grid.&nbsp; I am on Windows with FWTools <a href="http://2.1.0.">2.1.0.</a> &nbsp; I can&#39;t seem to be able to open the file.&nbsp; <br><br>I am assuming that I am not properly pointing to the file or not correctly indicating what the format is.&nbsp; I believe that the path is properly written with the escaped slashes.&nbsp; <br>
<br>Any help is appreciated.&nbsp; <br><br>David.&nbsp; <br><br>If I hit the file with gdalinfo, the results look good.<br><br>V:\elevation\national_elevation_dataset\ned30&gt;gdalinfo mn_ned<br>Driver: AIG/Arc/Info Binary Grid<br>
Files: mn_ned<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned.aux<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned.rrd<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\dblbnd.adf<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\hdr.adf<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\log<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\metadata.xml<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\prj.adf<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\sta.adf<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\vat.adf<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\w001001.adf<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mn_ned\w001001x.adf<br>Size is 19063, 21868<br>Coordinate System is:<br>PROJCS[&quot;UTM Zone 15, Northern Hemisphere&quot;,<br>&nbsp;&nbsp;&nbsp; GEOGCS[&quot;NAD83&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DATUM[&quot;North_American_Datum_1983&quot;,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPHEROID[&quot;GRS 1980&quot;,6378137,298.257222101,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;7019&quot;]],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TOWGS84[0,0,0,0,0,0,0],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;6269&quot;]],<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PRIMEM[&quot;Greenwich&quot;,0,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;8901&quot;]],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UNIT[&quot;degree&quot;,0.0174532925199433,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;9108&quot;]],<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AXIS[&quot;Lat&quot;,NORTH],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AXIS[&quot;Long&quot;,EAST],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;4269&quot;]],<br>&nbsp;&nbsp;&nbsp; PROJECTION[&quot;Transverse_Mercator&quot;],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;latitude_of_origin&quot;,0],<br>
&nbsp;&nbsp;&nbsp; PARAMETER[&quot;central_meridian&quot;,-93],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;scale_factor&quot;,0.9996],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;false_easting&quot;,500000],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;false_northing&quot;,0],<br>&nbsp;&nbsp;&nbsp; UNIT[&quot;METERS&quot;,1]]<br>
Origin = (189768.816500588900000,5472357.859197510400000)<br>Pixel Size = (30.000000000000000,-30.000000000000000)<br>Corner Coordinates:<br>Upper Left&nbsp; (&nbsp; 189768.817, 5472357.859) ( 97d16&#39;11.64&quot;W, 49d19&#39;29.92&quot;N)<br>
Lower Left&nbsp; (&nbsp; 189768.817, 4816317.859) ( 96d49&#39;59.35&quot;W, 43d26&#39;7.78&quot;N)<br>Upper Right (&nbsp; 761658.817, 5472357.859) ( 89d23&#39;49.61&quot;W, 49d20&#39;51.83&quot;N)<br>Lower Right (&nbsp; 761658.817, 4816317.859) ( 89d45&#39;57.50&quot;W, 43d27&#39;14.51&quot;N)<br>
Center&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (&nbsp; 475713.817, 5144337.859) ( 93d18&#39;58.43&quot;W, 46d27&#39;7.83&quot;N)<br>Band 1 Block=256x4 Type=Int16, ColorInterp=Undefined<br>&nbsp; Min=180.000 Max=700.000<br>&nbsp; NoData Value=-32768<br>&nbsp; Overviews: 4764x5465, 2381x2731, 1189x1364, 593x681, 295x339, 146x168, 72x83,<br>
35x40<br>&nbsp; Metadata:<br>&nbsp;&nbsp;&nbsp; LAYER_TYPE=athematic<br><br>________________________<br><br>When I try to open the same file using gdal python, I get the error: <br><br>Here is the code snippet:<br><br>&nbsp;&nbsp;&nbsp; ds = gdal.Open(datasource)<br>
&nbsp;&nbsp;&nbsp; if ds == None:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print&quot;can&#39;t open it&quot;<br>&nbsp;&nbsp;&nbsp; band = ds.GetRasterBand(bandnum)<br><br>&gt;python getElevOs.py 567760 4898451 &#39;v:\\elevation\\national_elevation_dataset\\ned30\\mn_ned&#39;<br>
ERROR 4: `&#39;v:\\elevation\\national_elevation_dataset\\ned30\\mn_ned&#39;&#39; does not exist in the file system,<br>and is not recognised as a supported dataset name.<br><br>can&#39;t open it<br>Traceback (most recent call last):<br>
&nbsp; File &quot;getElevOs.py&quot;, line 39, in ?<br>&nbsp;&nbsp;&nbsp; rasterval = getRasterValue( float(sys.argv[1]), float(sys.argv[2]), sys.argv<br>[3])<br>&nbsp; File &quot;getElevOs.py&quot;, line 17, in getRasterValue<br>&nbsp;&nbsp;&nbsp; band = ds.GetRasterBand(bandnum)<br>
AttributeError: &#39;NoneType&#39; object has no attribute &#39;GetRasterBand&#39;<br><br>