.TH "gdal_utilities" 1 "16 Sep 2004" "Doxygen" \" -*- nroff -*- .ad l .nh .SH NAME gdal_utilities \- GDAL Utilities .PP .PP The following utility programs are distributed with GDAL. .PP .PD 0 .IP "\(bu" 2 \fCgdalinfo\fP - report information about a file. .IP "\(bu" 2 \fCgdal_translate\fP - Copy a raster file, with control of output format. .IP "\(bu" 2 \fCgdaladdo\fP - Add overviews to a file. .IP "\(bu" 2 \fCgdalwarp\fP - Warp an image into a new coordinate system. .IP "\(bu" 2 \fCgdaltindex\fP - Build a MapServer raster tileindex. .IP "\(bu" 2 \fCgdal_contour\fP - Contours from DEM. .IP "\(bu" 2 \fCrgb2pct.py\fP - Convert a 24bit RGB image to 8bit paletted. .IP "\(bu" 2 \fCpct2rgb.py\fP - Convert an 8bit palatted image to 24bit RGB. .IP "\(bu" 2 \fCgdal_merge.py\fP - Build a quick mosaic from a set of images. .IP "\(bu" 2 \fCgdal-config\fP - Get options required to build software using GDAL. .PP .PP .SS "Creating New Files" .PP Access an existing file to read it is generally quite simple. Just indicate the name of the file or dataset on the commandline. However, creating a file is more complicated. It may be necessary to indicate the the format to create, various creation options affecting how it will be created and perhaps a coordinate system to be assigned. Many of these options are handled similarly by different GDAL utilities, and are introduced here. .PP .IP "\fB\fB-of\fP \fIformat\fP\fP" 1c Select the format to create the new file as. The formats are assigned short names such as GTiff (for GeoTIFF) or HFA (for Erdas Imagine). The list of all format codes can be listed with the \fB--formats\fP switch. Only formats list as '(rw)' (read-write) can be written. .PP Many utilities default to creating GeoTIFF files if a format is not specified. File extentions are not used to guess output format, nor are extentions generally added by GDAL if not indicated in the filename by the user. .PP .IP "\fB\fB-co\fP \fINAME=VALUE\fP\fP" 1c Many formats have one or more optional creation options that can be used to control particulars about the file created. For instance, the GeoTIFF driver supports creation options to control compression, and whether the file should be tiled. .PP The creation options available vary by format driver, and some simple formats have no creation options at all. A list of options supported for a format can be listed with the '--format ' commandline option but the web page for the format is the defininative source of information on driver creation options. .PP .PP .IP "\fB\fB-a_srs\fP \fISRS\fP\fP" 1c Several utilities, (gdal_translate and gdalwarp) include the ability to specify coordinate systems with commandline options like \fB-a_srs\fP (assign SRS to output), \fB-s_srs\fP (source SRS) and \fB-t_srs\fP (target SRS). .PP These utilities allow the coordinate system (SRS = spatial reference system) to be assigned in a variety of formats. .PP .PP .PD 0 .IP "\(bu" 2 \fBNAD27\fP/\fBNAD83\fP/\fBWGS84\fP/\fBWGS72\fP: These common geographic (lat/long) coordinate systems can be used directly by these names. .PP .IP "\(bu" 2 \fBEPSG:\fP\fIn\fP: Coordinate systems (projected or geographic) can be selected based on their EPSG codes, for instance EPSG:27700 is the British National Grid. A list of EPSG coordinate systems can be found in the GDAL data files gcs.csv and pcs.csv. .PP .IP "\(bu" 2 \fIPROJ.4 Definitions\fP: A PROJ.4 definition string can be used as a coordinate system. For instance '+proj=utm +zone=11 +datum=WGS84'. Take care to keep the proj.4 string together as a single argument to the command (usually by double quoting). .PP .PP .IP "\(bu" 2 \fIOpenGIS Well Known Text\fP: The Open GIS Consortium has defined a textual format for describing coordinate systems as part of the Simple Features specifications. This format is the internal working format for coordinate systems used in GDAL. The name of a file containing a WKT coordinate system definition may be used a coordinate system argument, or the entire coordinate system itself may be used as a commandline option (though escaping all the quotes in WKT is quite challenging). .PP .PP .IP "\(bu" 2 \fIESRI Well Known Text\fP: ESRI uses a slight variation on OGC WKT format in their ArcGIS product (ArcGIS .prj files), and these may be used in a similar manner to WKT files, but the filename should be prefixed with \fBESRI::\fP. For example \fB'ESRI::NAD 1927 StatePlane Wyoming West FIPS 4904.prj'\fP. .PP .PP .PP .PP .SS "General Command Line Switches" .PP All GDAL command line utility programs support the following 'general' options. .PP .IP "\fB\fB--version\fP\fP" 1c Report the version of GDAL and exit. .PP .IP "\fB\fB--formats\fP\fP" 1c List all raster formats supported by this GDAL build (readonly and read-write) and exit. .PP .IP "\fB\fB--format\fP \fIformat\fP\fP" 1c List detailed information about a single format driver. The \fIformat\fP should be the short name reported in the \fB--formats\fP list, such as GTiff. .PP .IP "\fB\fB--optfile\fP \fIfile\fP\fP" 1c Read the named file and substitute the contents into the commandline options list. Lines beginning with # will be ignored. Multi-word arguments may be kept together with double quotes. .PP .IP "\fB\fB--config\fP \fIkey value\fP\fP" 1c Sets the named configuration keyword to the given value, as opposed to setting them as environment variables. Some common configuration keywords are GDAL_CACHEMAX (memory used internally for caching in megabytes) and GDAL_DATA (path of the GDAL 'data' directory). Individual drivers may be influenced by other configuration options. .PP .IP "\fB\fB--debug\fP \fIvalue\fP\fP" 1c Control what debugging messages are emitted. A value of \fION\fP will enable all debug messages. A value of \fIOFF\fP will disable all debug messages. Another value will select only debug messages containing that string in the debug prefix code. .PP .IP "\fB\fB--help-general\fP\fP" 1c Gives a brief usage message for the generic GDAL commandline options and exit. .PP .PP