Changes between Version 2 and Version 3 of FAQRaster


Ignore:
Timestamp:
Aug 1, 2007, 11:22:12 AM (17 years ago)
Author:
maphew
Comment:

added improving gdalwarp performance

Legend:

Unmodified
Added
Removed
Modified
  • FAQRaster

    v2 v3  
    1111To 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).
    1212
     13== How to improve `gdalwarp` perfomance? ==
     14
     15Briefly: use the warp memory and config cachemax settings. For example `gdalwarp --config GDAL_CACHEMAX 500 -wm 500`  uses 500MB of RAM for read/write caching, and 500MB of RAM for working buffers during the warp.
     16
     17For more details see [wiki:UserDocs/GdalWarp] ``Will increasing RAM increase the speed of gdalwarp?``
     18
    1319== How to convert a raster to a layer of polygons? ==
    1420