Changes between Version 105 and Version 106 of WKTRaster/SpecificationWorking01


Ignore:
Timestamp:
Jan 19, 2010, 1:41:47 AM (14 years ago)
Author:
jorgearevalo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking01

    v105 v106  
    3636'''USAGE:'''
    3737
    38 '''gdal2wktraster.py''' [<options>]
     38'''gdal2wktraster.py''' -r <RASTERFILE> -t [<SCHEMA>].<TABLE> [<OPTIONS>]
     39
     40'''-r''' <RASTERFILE>  Specifies input raster file. Multiple -r options can be specified for a number of input files or wildcards can be used (? and *).[[BR]]
     41'''-t''' [<SCHEMA>].<TABLE>  Name of destination table in with or without target schema specified.
    3942
    4043'''OPTIONS:'''
    4144
    42 
    43 ''' Source and Destination options: MANDATORY PARAMETERS, ALWAYS REQUIRED '''
    44 
    45 '''-r''' <RASTERFILE>  Specifies input raster file. Multiple -r options can be specified for a number of input files or wildcards can be used (? and *).
    46 
    47 '''-t''' [<SCHEMA>].<TABLE>  Name of destination table in with or without target schema specified.
    48 
    49 
    5045''' Raster processing: Optional parameters used to manipulate input raster dataset '''
    5146
    52 '''-s''' <srid>  Set the SRID field of output raster. Default is -1.
    53 
    54 '''-b''' <nbband>  Specify the number of band to be extracted from input raster file.
    55 
    56 '''-k''' <BLOCK_SIZE>  Specify the size of the block of  the input raster, assuming regular blocking mode. Must be specified as WIDTHxHEIGHT.
    57 
    58 '''-R''' Register the raster as a filesystem (out-db) raster. Absolute path to the raster and georeferencing informations are stored instead of the raster actual data. This storage system is only allowed in SVN trunk version right now.
    59 
     47'''-s''' <SRID>  Set the SRID field of output raster. Default is -1.[[BR]]
     48'''-b''' <NBBAND>  Specify the number of band to be extracted from input raster file.[[BR]]
     49'''-k''' <BLOCK_SIZE>  Specify the size of the block of  the input raster, assuming regular blocking mode. Must be specified as WIDTHxHEIGHT.[[BR]]
     50'''-R''' Register the raster as a filesystem (out-db) raster. Absolute path to the raster and georeferencing informations are stored instead of the raster actual data. This storage system is only allowed in SVN trunk version right now.[[BR]]
    6051'''-l''' <OVERVIEW_LEVEL> Create overview tables named as o_<LEVEL>_<RASTER_TABLE> and populate it with GDAL-provided overviews. Regular blocking only.
    6152
     
    6354''' Database processing: Optional parameters used to manipulate database objects '''
    6455
    65 '''-c'''  Creates a new table and populates it with raster input file(s), this is the default if you do not specify any options.
    66 
    67 '''-d'''  Drops the table, then recreates it and populates it with current raster file(s) data.
    68 
    69 '''-f''' <COLUMN>  Name of target column for raster data. Default column name is ''rast''.
    70 
    71 '''-F'''  Add a "filename" column containing the original name of the loaded raster file.
    72 
    73 '''-I'''  Create a GiST index on the raster column.
    74 
    75 '''-M'''  Issue VACUUM command against all generated tables.
    76 
     56'''-c'''  Creates a new table and populates it with raster input file(s), this is the default if you do not specify any options.[[BR]]
     57'''-d'''  Drops the table, then recreates it and populates it with current raster file(s) data.[[BR]]
     58'''-f''' <COLUMN>  Name of target column for raster data. Default column name is ''rast''.[[BR]]
     59'''-F'''  Add a "filename" column containing the original name of the loaded raster file.[[BR]]
     60'''-I'''  Create a GiST index on the raster column.[[BR]]
     61'''-M'''  Issue VACUUM command against all generated tables.[[BR]]
    7762'''-V'''  Create RASTER_OVERVIEWS table used to store overviews metadata.
    7863
     
    8065''' Miscellanous: Other optional parameters '''
    8166
    82 '''-e''' <ENDIAN>  Control endianness of generated binary output of raster; specify 0 for XDR (big-endian) and 1 for NDR (little-endian). Only NDR output is supported right now.
    83 
    84 '''-w''' <VERSION>  Specify version of WKT Raster protocol. Default is 0; only this value is supported right now.
    85 
    86 '''-o''' <file> Output file for generated SQL commands. If not specified, ''stdout'' is assumed.
    87 
    88 '''-v''' Switch on excessively verbose mode, useful for debugging.
    89 
     67'''-e''' <ENDIAN>  Control endianness of generated binary output of raster; specify 0 for XDR (big-endian) and 1 for NDR (little-endian). Only NDR output is supported right now.[[BR]]
     68'''-w''' <VERSION>  Specify version of WKT Raster protocol. Default is 0; only this value is supported right now.[[BR]]
     69'''-o''' <FILE> Output file for generated SQL commands. If not specified, ''stdout'' is assumed.[[BR]]
     70'''-v''' Switch on excessively verbose mode, useful for debugging.[[BR]]
    9071'''-h''' Display this help screen.
    9172