Changes between Version 1 and Version 2 of FAQRaster


Ignore:
Timestamp:
Apr 22, 2007, 10:46:41 AM (17 years ago)
Author:
Mateusz Łoskot
Comment:

Fixed headings

Legend:

Unmodified
Added
Removed
Modified
  • FAQRaster

    v1 v2  
    33[[PageOutline(2,,inline)]]
    44
    5 == Raster Support ==
    6 
    7 === Why won't gdalwarp or gdal_merge write to most formats? ===
     5== Why won't gdalwarp or gdal_merge write to most formats? ==
    86
    97GDAL supports many raster formats for reading, but significantly less formats for writing. Of the ones supported for writing most are only supported in create copy mode. Essentially this means they have to be written sequentially from a provided input copy of the image to be written. Programs like gdal_merge.py or gdalwarp that write chunks of imagery non-sequentially cannot easily write to these sequential write formats. Generally speaking formats that are compressed, such as PNG, JPEG and GIF are sequential write. Also some formats require information such as the coordinate system and color table to be known at creation time and so these are also sequential write formats.
     
    1311To determine which formats support which capabilities, use the ''--formats'' switch with pretty much any GDAL utility. Each driver will include either '''r''' (read-only), '''rw''' (read or sequential write) or '''rw+''' (read, sequential write or random write).
    1412
    15 === How to convert a raster to a layer of polygons? ===
     13== How to convert a raster to a layer of polygons? ==
    1614
    1715''TBD''