<font face="courier new,monospace">Bill,<br><br>It may be necessary to create an intermediate file that supports creation (I think the (rw+) flag on gdalinfo --formats shows which formats support create, AAIGrid supports CreateCopy() but not Create()).  Use gdalwarp to make a vrt file, then translate the file to AAIGrid:<br>

<br></font><span style="font-family: courier new,monospace;">/usr/local/gdal/bin/gdalwarp -of VRT -s_srs EPSG:4326 -t_srs</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
&#39;+proj=lcc +lat_1=33n +lat_2=45n +lon_0=97w&#39; mcd12_sep2109.asc</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
lambert_mcd12_sep2109.vrt</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">then:</span><br style="font-family: courier new,monospace;">

<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">/usr/local/gdal/bin/gdal_translate -of AAIGrid -s_srs EPSG:4326 -t_srs</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">
&#39;+proj=lcc +lat_1=33n +lat_2=45n +lon_0=97w&#39; lambert_mcd12_sep2109.vrt</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
lambert_mcd12_sep2109.asc</span><br style="font-family: courier new,monospace;" clear="all"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">hope that helps,</span><br style="font-family: courier new,monospace;">

<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">regards,</span><br><br>-Kyle<br>
<br><br><div class="gmail_quote">On Tue, Mar 2, 2010 at 8:57 AM, Bill Hudspeth <span dir="ltr">&lt;<a href="mailto:wbhk@unm.edu">wbhk@unm.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Hello,<br>
<br>
Thanks for responding. When I use gdalinfo --formats, I see that AAIGrid<br>
is included in the list of acceptable formats. However, when I use<br>
<br>
/usr/local/gdal/bin/gdalwarp -of AAIGrid -s_srs EPSG:4326 -t_srs<br>
&#39;+proj=lcc +lat_1=33n +lat_2=45n +lon_0=97w&#39; mcd12_sep2109.asc<br>
lambert_mcd12_sep2109.asc<br>
<br>
I get,<br>
<br>
Output driver `AAIGrid&#39; not recognised or does not support<br>
direct output file creation.  The following format drivers are<br>
configured<br>
and support direct output:<br>
  VRT: Virtual Raster<br>
  GTiff: GeoTIFF<br>
  NITF: National Imagery Transmission Format<br>
  HFA: Erdas Imagine Images (.img)<br>
  ELAS: ELAS<br>
  MEM: In Memory Raster<br>
  BMP: MS Windows Device Independent Bitmap<br>
  PCIDSK: PCIDSK Database File<br>
  ILWIS: ILWIS Raster Map<br>
  HDF4Image: HDF4 Dataset<br>
  PNM: Portable Pixmap Format (netpbm)<br>
  ENVI: ENVI .hdr Labelled<br>
  EHdr: ESRI .hdr Labelled<br>
  PAux: PCI .aux Labelled<br>
  MFF: Atlantis MFF Raster<br>
  MFF2: Atlantis MFF2 (HKV) Raster<br>
  BT: VTP .bt (Binary Terrain) 1.3 Format<br>
  IDA: Image Data and Analysis<br>
  RMF: Raster Matrix Format<br>
<br>
<br>
????<br>
<div><div></div><div class="h5"><br>
<br>
<br>
<br>
<br>
On Tue, 2010-03-02 at 08:50 +0100, Markus Neteler wrote:<br>
&gt; On Mon, Mar 1, 2010 at 7:12 PM, Bill Hudspeth &lt;<a href="mailto:wbhk@unm.edu">wbhk@unm.edu</a>&gt; wrote:<br>
&gt; ...<br>
&gt; &gt; When I try to re-project the exported AAIGrid to another projection, I<br>
&gt; &gt; use:<br>
&gt; &gt;<br>
&gt; &gt; gdalwarp -s_srs EPSG:4326 -t_srs &#39;+proj=lcc +lat__1=33n +lat_2=45n<br>
&gt; &gt; +lon_0=97w&#39; MODIS_output_latlong.asc MODIS_output_lambert.asc<br>
&gt;<br>
&gt; Note that without -of format] you generate a GeoTIFF file...<br>
&gt;<br>
&gt; &gt; While the resultant projection information looks correct,<br>
&gt; &gt;<br>
&gt; &gt; Driver: GTiff/GeoTIFF<br>
&gt;    ^^^^^^^^^^^^^^^^^^^^^^^<br>
&gt;<br>
&gt; &gt; The resultant text file has only the following on the top line:<br>
&gt;<br>
&gt; ... it is binary, not a text file. check<br>
&gt;<br>
&gt;  gdalwarp --formats<br>
&gt;<br>
&gt; for the available formats.<br>
&gt;<br>
&gt; Markus<br>
<br>
<br>
_______________________________________________<br>
gdal-dev mailing list<br>
<a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
</div></div></blockquote></div><br>