Changes between Version 17 and Version 18 of UserDocs/GdalWarp
- Timestamp:
- Aug 30, 2018, 6:52:27 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserDocs/GdalWarp
v17 v18 142 142 }}} 143 143 144 If 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 144 149 == [GeoTIFF output] Use `-co TILED=YES` when possible == 145 150