Changes between Version 3 and Version 4 of img2md


Ignore:
Timestamp:
Oct 19, 2010, 12:03:56 PM (14 years ago)
Author:
dburken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • img2md

    v3 v4  
    1 = img2md =
     1= ossim-img2md =
    22Application to output metadata given metadata type, source image, output file. Additional keywords can be passed to writer via the "-t" option which takes a keyword list.
    33
     4== Usage ==
     5{{{
     6ossim-img2md [options] <metadata_writer> <input_file> <output_file>
     7}}}
     8
     9== Options ==
     10{{{
     11  --disable-elev    Will disable the elevation
     12  --disable-notify  Takes an argument. Arguments are ALL, WARN, NOTICE, INFO,
     13                    FATAL, DEBUG.  If you want multiple disables then just do
     14                    multiple --disable-notify on the command line.  All argument
     15                    are case insensitive.  Default is all are enabled.
     16  --disable-plugin  Will disable the plugin loader
     17  --ossim-logfile   takes a logfile as an argument.  All output messages are
     18                    redirected to the specified log file.  By default there is
     19                    no log file and all messages are enabled.
     20  -K                specify individual keywords to add to the preferences
     21                    keyword list: name=value
     22  -P                specify a preference file to load
     23  -T                specify the classes to trace, ex: ossimInit|ossimImage.*
     24                    will trace ossimInit and all ossimImage classes
     25  -V or --version   Display version information.
     26  -h or --help      Shows help
     27  -t or --template  Template to pass to meta data writer.
     28}}}
    429
    530== Examples ==
    631 * Create world file from a GeoTIFF:
    732{{{
    8 img2md tiff_world_file foo.tif foo2.tfw
     33ossim-img2md tiff_world_file foo.tif foo2.tfw
    934}}}
    1035 * Create a text file
    1136{{{
    12 img2md ossim_readme foo.tif foo_readme.txt
     37ossim-img2md ossim_readme foo.tif foo_readme.txt
    1338}}}