Changes between Version 4 and Version 5 of UserDocs/GdalMerge


Ignore:
Timestamp:
Jul 8, 2008, 5:05:49 PM (16 years ago)
Author:
springmeyer
Comment:

Added example of creating --optfile list on unix systems

Legend:

Unmodified
Added
Removed
Modified
  • UserDocs/GdalMerge

    v4 v5  
    88
    99Method 1, use `--optfile`
    10 The text file is a directory list created in Windows by typing `dir /b /s *.tif > 31_input_list.txt`
     10The text file is a simple directory listing of each file to merge.
     11
     12It can be created in Windows by typing:
    1113{{{
    12 python gdal_merge.py -n 0 -v -o mosaic_31.tif --optfile 31_input_list.txt
     14 `dir /b /s *.tif > tiff_list.txtt`
     15}}}
     16or on unix by typing:
     17{{{
     18ls -1 *.tif > tiff_list.txt
     19}}}
     20
     21Then you summon gdal_merge like:
     22{{{
     23python gdal_merge.py -n 0 -v -o mosaic_31.tif --optfile tiff_list.txt
    1324}}}
    1425