Changes between Version 17 and Version 18 of UserDocs/GdalWarp


Ignore:
Timestamp:
Aug 30, 2018, 6:52:27 PM (6 years ago)
Author:
lpinner
Comment:

Added piping /vsistdout/ to /vsistdin/ to demonstrate using gdalwarp with compression without temp files

Legend:

Unmodified
Added
Removed
Modified
  • UserDocs/GdalWarp

    v17 v18  
    142142}}}
    143143
     144If using GDAL 2+ (ticket #6061) you can combine this into a single operation by writing the VRT to [https://www.gdal.org/gdal_virtual_file_systems.html#gdal_virtual_file_systems_vsistdout /vsistdout/] and piping that to `gdal_translate` and specifying [https://www.gdal.org/gdal_virtual_file_systems.html#gdal_virtual_file_systems_vsistdin /vsistdin/] as the input.  For example:
     145{{{
     146    gdalwarp -q -t_srs EPSG:32611 -of vrt input_file.tif /vsistdout/ | gdal_translate -co compress=lzw  /vsistdin/ output_file.tif
     147}}}
     148
    144149== [GeoTIFF output] Use `-co TILED=YES` when possible ==
    145150