Changes between Version 1 and Version 2 of UserDocs/GdalMerge


Ignore:
Timestamp:
Jan 10, 2008, 3:28:00 PM (16 years ago)
Author:
maphew
Comment:

added how to merge many files without naming each one.

Legend:

Unmodified
Added
Removed
Modified
  • UserDocs/GdalMerge

    v1 v2  
    66
    77gdal_merge.py uses nearest neighbour resampling.  If you want control over the resampling used, you should use gdalwarp instead.
     8
     9== {Win} Are there other ways of getting a list of images into gdal_merge without putting them all on the command line? ==
     10
     11Method 1, use `--optfile`
     12The text file is a directory list created in Windows by typing `dir /b /s *.tif > 31_input_list.txt`
     13{{{
     14python gdal_merge.py -n 0 -o mosaic_31.tif -of GTiff -co "TFW=YES" -v --optfile 31_input_list.txt
     15}}}
     16
     17Method 2, use a batch file wrapper, see attached.
     18
     19