<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Thanks Even,<br>
<br>
I think that's the second time you explain me that (sorry, an easy
thing to forget), but the docs could be a bit clearer about this. For
example<br>
<br>
<span class="Apple-style-span"
 style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span
 class="Apple-style-span"
 style="font-family: 'Lucida Grande',Verdana,Geneva,Arial,sans-serif; font-size: 12px;"><dt><b>--formats</b></dt>
<dd>List all raster formats supported by this GDAL build (read-only and
read-write) and exit. The format support is indicated as follows: 'ro'
is read-only driver; 'rw' is read or write (ie. supports CreateCopy);
'rw+' is read, write and update (ie. supports Create).</dd>
</span></span><br>
<br>
so I though the + was for updating<br>
<br>
<br>
A second point is that the command I used shows a bug in gdalwarp. In
that the "lixo.grd" is a grid extracted from one the etopo_something
(actually a regrid version created by me) saning [-180 180] [0 90] and
the bug is that at dateline there is a stripe of nodata.<br>
Since the grid is too big to post in a ticket, can you please try to
reproduce this?<br>
<br>
Joaquim<br>
<br>
<blockquote cite="mid:201009272102.55960.even.rouault@mines-paris.org"
 type="cite">
  <pre wrap="">Joaquim,

The valid formats for the output of gdalwarp are formats that support the 
Create() method, not just the CreateCopy() method. This is indicated by (rw+) 
: the + indicates that Create() is supported.

The difference between Create() and CreateCopy() is mainly that Create() allows 
writing of pixel data in random order, which is needed by gdalwarp.

You can try in 2 steps :
1) gdalwarp -of VRT lixo.grd [other_options] temp.vrt
2) gdal_translate -of netCDF temp.vrt proj.grd

Best regards,

Even

  </pre>
  <blockquote type="cite">
    <pre wrap="">Hi

While running this command

gdalwarp -s_srs +proj=latlong -t_srs "+proj=ortho +lon_0=-42 +lat_0=40
+ellps=WGS84" -of netCDF lixo.grd proj.grd

I get

Output driver `netCDF' not recognised or does not support direct output
file creation.  The following format drivers are configured
(a format list where netCDF is not listed)

but if I ask gdalwarp the list of formats, netCDF is listed there as
(rw). Furthermore

gdalwarp --format netCDF
Format Details:
   Short Name: netCDF
   Long Name: Network Common Data Format
   Extension: nc
   Help Topic: frmt_netcdf.html
   Supports: CreateCopy() - Create dataset by copying another.

??

Joaquim Luis

_______________________________________________
gdal-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a>
<a class="moz-txt-link-freetext" href="http://lists.osgeo.org/mailman/listinfo/gdal-dev">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a>
    </pre>
  </blockquote>
  <pre wrap="">

  </pre>
</blockquote>
<br>
</body>
</html>