Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 7fd7c575020aa78a8e2e309ea8909f43 > files > 400

gdal-1.6.2-6.fc13.i686.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>GDAL: GDAL Data Model</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.2-20100208 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li class="current"><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
</div>
<div class="contents">


<h1><a class="anchor" id="gdal_datamodel">GDAL Data Model </a></h1><p>This document attempts to describe the GDAL data model. That is the types of information that a GDAL data store can contain, and their semantics.</p>
<h2><a class="anchor" id="gdal_datamodel_dataset">
Dataset</a></h2>
<p>A dataset (represented by the <a class="el" href="classGDALDataset.html" title="A set of associated raster bands, usually from one file.">GDALDataset</a> class) is an assembly of related raster bands and some information common to them all. In particular the dataset has a concept of the raster size (in pixels and lines) that applies to all the bands. The dataset is also responsible for the georeferencing transform and coordinate system definition of all bands. The dataset itself can also have associated metadata, a list of name/value pairs in string form.</p>
<p>Note that the GDAL dataset, and raster band data model is loosely based on the OpenGIS Grid Coverages specification.</p>
<h3><a class="anchor" id="gdal_datamodel_dataset_cs">
Coordinate System</a></h3>
<p>Dataset coordinate systems are represented as OpenGIS Well Known Text strings. This can contain:</p>
<ul>
<li>
An overall coordinate system name. </li>
<li>
A geographic coordinate system name. </li>
<li>
A datum identifier. </li>
<li>
An ellipsoid name, semi-major axis, and inverse flattening. </li>
<li>
A prime meridian name and offset from Greenwich. </li>
<li>
A projection method type (ie. Transverse Mercator). </li>
<li>
A list of projection parameters (ie. central_meridian). </li>
<li>
A units name, and conversion factor to meters or radians. </li>
<li>
Names and ordering for the axes. </li>
<li>
Codes for most of the above in terms of predefined coordinate systems from authorities such as EPSG. </li>
</ul>
<p>For more information on OpenGIS WKT coordinate system definitions, and mechanisms to manipulate them, refer to the <a href="ogr/osr_tutorial.html">osr_tutorial</a> document and/or the OGRSpatialReference class documentation.</p>
<p>The coordinate system returned by <a class="el" href="classGDALDataset.html#aa42537e1062ce254d124b29ff3ebe857">GDALDataset::GetProjectionRef()</a> describes the georeferenced coordinates implied by the affine georeferencing transform returned by <a class="el" href="classGDALDataset.html#af9593cc241e7d140f5f3c4798a43a668">GDALDataset::GetGeoTransform()</a>. The coordinate system returned by <a class="el" href="classGDALDataset.html#a35ea63c2f9ea12afd190ca2446d02ddb">GDALDataset::GetGCPProjection()</a> describes the georeferenced coordinates of the GCPs returned by <a class="el" href="classGDALDataset.html#ac91ea1fc26dd19f14d31baec4988d5b6">GDALDataset::GetGCPs()</a>.</p>
<p>Note that a returned coordinate system strings of "" indicates nothing is known about the georeferencing coordinate system.</p>
<h3><a class="anchor" id="gdal_datamodel_dataset_gtm">
Affine GeoTransform</a></h3>
<p>GDAL datasets have two ways of describing the relationship between raster positions (in pixel/line coordinates) and georeferenced coordinates. The first, and most commonly used is the affine transform (the other is GCPs).</p>
<p>The affine transform consists of six coefficients returned by <a class="el" href="classGDALDataset.html#af9593cc241e7d140f5f3c4798a43a668">GDALDataset::GetGeoTransform()</a> which map pixel/line coordinates into georeferenced space using the following relationship:</p>
<pre>
    Xgeo = GT(0) + Xpixel*GT(1) + Yline*GT(2)
    Ygeo = GT(3) + Xpixel*GT(4) + Yline*GT(5)
</pre><p>In case of north up images, the GT(2) and GT(4) coefficients are zero, and the GT(1) is pixel width, and GT(5) is pixel height. The (GT(0),GT(3)) position is the top left corner of the top left pixel of the raster.</p>
<p>Note that the pixel/line coordinates in the above are from (0.0,0.0) at the top left corner of the top left pixel to (width_in_pixels,height_in_pixels) at the bottom right corner of the bottom right pixel. The pixel/line location of the center of the top left pixel would therefore be (0.5,0.5).</p>
<h3><a class="anchor" id="gdal_datamodel_dataset_gcp">
GCPs</a></h3>
<p>A dataset can have a set of control points relating one or more positions on the raster to georeferenced coordinates. All GCPs share a georeferencing coordinate system (returned by <a class="el" href="classGDALDataset.html#a35ea63c2f9ea12afd190ca2446d02ddb">GDALDataset::GetGCPProjection()</a>). Each GCP (represented as the <a class="el" href="structGDAL__GCP.html">GDAL_GCP</a> class) contains the following:</p>
<pre>
typedef struct
{
    char	*pszId; 
    char	*pszInfo;
    double 	dfGCPPixel;
    double	dfGCPLine;
    double	dfGCPX;
    double	dfGCPY;
    double	dfGCPZ;
} <a class="el" href="structGDAL__GCP.html">GDAL_GCP</a>;
</pre><p>The pszId string is intended to be a unique (and often, but not always numerical) identifier for the GCP within the set of GCPs on this dataset. The pszInfo is usually an empty string, but can contain any user defined text associated with the GCP. Potentially this can also contain machine parsable information on GCP status though that isn't done at this time.</p>
<p>The (Pixel,Line) position is the GCP location on the raster. The (X,Y,Z) position is the associated georeferenced location with the Z often being zero.</p>
<p>The GDAL data model does not imply a transformation mechanism that must be generated from the GCPs ... this is left to the application. However 1st to 5th order polynomials are common.</p>
<p>Normally a dataset will contain either an affine geotransform, GCPs or neither. It is uncommon to have both, and it is undefined which is authoritative.</p>
<h3><a class="anchor" id="gdal_datamodel_dataset_metadata">
Metadata</a></h3>
<p>GDAL metadata is auxiliary format and application specific textual data kept as a list of name/value pairs. The names are required to be well behaved tokens (no spaces, or odd characters). The values can be of any length, and contain anything except an embedded null (ASCII zero).</p>
<p>The metadata handling system is not well tuned to handling very large bodies of metadata. Handling of more than 100K of metadata for a dataset is likely to lead to performance degradation.</p>
<p>Some formats will support generic (user defined) metadata, while other format drivers will map specific format fields to metadata names. For instance the TIFF driver returns a few information tags as metadata including the date/time field which is returned as:</p>
<pre>
TIFFTAG_DATETIME=1999:05:11 11:29:56
</pre><p>Metadata is split into named groups called domains, with the default domain having no name (NULL or ""). Some specific domains exist for special purposes. Note that currently there is no way to enumerate all the domains available for a given object, but applications can "test" for any domains they know how to interprete.</p>
<p>The following metadata items have well defined semantics in the default domain:</p>
<ul>
<li>
AREA_OR_POINT: May be either "Area" (the default) or "Point". Indicates whether a pixel value should be assumed to represent a sampling over the region of the pixel or a point sample at the center of the pixel. This is not intended to influence interpretation of georeferencing which remains area oriented. </li>
<li>
NODATA_VALUES: The value is a list of space separated pixel values matching the number of bands in the dataset that can be collectively used to identify pixels that are nodata in the dataset. With this style of nodata a pixel is considered nodata in all bands if and only if all bands match the corresponding value in the NODATA_VALUES tuple. This metadata is not widely honoured by GDAL drivers, algorithms or utilities at this time. </li>
<li>
MATRIX_REPRESENTATION: This value, used for Polarimetric SAR datasets, contains the matrix representation that this data is provided in. The following are acceptable values: <ul>
<li>
SCATTERING </li>
<li>
SYMMETRIZED_SCATTERING </li>
<li>
COVARIANCE </li>
<li>
SYMMETRIZED_COVARIANCE </li>
<li>
COHERENCY </li>
<li>
SYMMETRIZED_COHERENCY </li>
<li>
KENNAUGH </li>
<li>
SYMMETRIZED_KENNAUGH </li>
</ul>
</li>
<li>
POLARMETRIC_INTERP: This metadata item is defined for Raster Bands for polarimetric SAR data. This indicates which entry in the specified matrix representation of the data this band represents. For a dataset provided as a scattering matrix, for example, acceptable values for this metadata item are HH, HV, VH, VV. When the dataset is a covariance matrix, for example, this metadata item will be one of Covariance_11, Covariance_22, Covariance_33, Covariance_12, Covariance_13, Covariance_23 (since the matrix itself is a hermitian matrix, that is all the data that is required to describe the matrix). </li>
</ul>
<h4><a class="anchor" id="gdal_datamodel_subdatasets">
SUBDATASETS Domain</a></h4>
<p>The SUBDATASETS domain holds a list of child datasets. Normally this is used to provide pointers to a list of images stored within a single multi image file (such as HDF or NITF). For instance, an NITF with four images might have the following subdataset list.</p>
<pre>
  SUBDATASET_1_NAME=NITF_IM:0:multi_1b.ntf
  SUBDATASET_1_DESC=Image 1 of multi_1b.ntf
  SUBDATASET_2_NAME=NITF_IM:1:multi_1b.ntf
  SUBDATASET_2_DESC=Image 2 of multi_1b.ntf
  SUBDATASET_3_NAME=NITF_IM:2:multi_1b.ntf
  SUBDATASET_3_DESC=Image 3 of multi_1b.ntf
  SUBDATASET_4_NAME=NITF_IM:3:multi_1b.ntf
  SUBDATASET_4_DESC=Image 4 of multi_1b.ntf
  SUBDATASET_5_NAME=NITF_IM:4:multi_1b.ntf
  SUBDATASET_5_DESC=Image 5 of multi_1b.ntf
</pre><p>The value of the _NAME is the string that can be passed to <a class="el" href="gdal_8h.html#ae97be045eb4701183ad332ffce29745b">GDALOpen()</a> to access the file. The _DESC value is intended to be a more user friendly string that can be displayed to the user in a selector.</p>
<h4><a class="anchor" id="gdal_datamodel_image_structure">
IMAGE_STRUCTURE Domain</a></h4>
<p>Metadata in the default domain is intended to be related to the image, and not particularly related to the way the image is stored on disk. That is, it is suitable for copying with the dataset when it is copied to a new format. Some information of interest is closely tied to a particular file format and storage mechanism. In order to prevent this getting copied along with datasets it is placed in a special domain called IMAGE_STRUCTURE that should not normally be copied to new formats.</p>
<p>Currently the following items are defined by <a href="http://trac.osgeo.org/gdal/rfc14_imagestructure">RFC 14</a> as having specific semantics in the IMAGE_STRUCTURE domain.</p>
<ul>
<li>
COMPRESSION: The compression type used for this dataset or band. There is no fixed catalog of compression type names, but where a given format includes a COMPRESSION creation option, the same list of values should be used here as there. </li>
<li>
NBITS: The actual number of bits used for this band, or the bands of this dataset. Normally only present when the number of bits is non-standard for the datatype, such as when a 1 bit TIFF is represented through GDAL as GDT_Byte. </li>
<li>
INTERLEAVE: This only applies on datasets, and the value should be one of PIXEL, LINE or BAND. It can be used as a data access hint. </li>
<li>
PIXELTYPE: This may appear on a GDT_Byte band (or the corresponding dataset) and have the value SIGNEDBYTE to indicate the unsigned byte values between 128 and 255 should be interpreted as being values between -128 and -1 for applications that recognise the SIGNEDBYTE type. </li>
</ul>
<h4><a class="anchor" id="gdal_datamodel_rpc">
RPC Domain</a></h4>
<p>The RPC metadata domain holds metadata describing the Rational Polynomial Coefficient geometry model for the image if present. This geometry model can be used to transform between pixel/line and georeferenced locations. The items defining the model are:</p>
<ul>
<li>
ERR_BIAS: Error - Bias. The RMS bias error in meters per horizontal axis of all points in the image (-1.0 if unknown) </li>
<li>
ERR_RAND: Error - Random. RMS random error in meters per horizontal axis of each point in the image (-1.0 if unknown) </li>
<li>
LINE_OFF: Line Offset </li>
<li>
SAMP_OFF: Sample Offset </li>
<li>
LAT_OFF: Geodetic Latitude Offset </li>
<li>
LONG_OFF: Geodetic Longitude Offset </li>
<li>
HEIGHT_OFF: Geodetic Height Offset </li>
<li>
LINE_SCALE: Line Scale </li>
<li>
SAMP_SCALE: Sample Scale </li>
<li>
LAT_SCALE: Geodetic Latitude Scale </li>
<li>
LONG_SCALE: Geodetic Longitude Scale </li>
<li>
HEIGHT_SCALE: Geodetic Height Scale </li>
<li>
LINE_NUM_COEFF (1-20): Line Numerator Coefficients. Twenty coefficients for the polynomial in the Numerator of the rn equation. (space separated) </li>
<li>
LINE_DEN_COEFF (1-20): Line Denominator Coefficients. Twenty coefficients for the polynomial in the Denominator of the rn equation. (space separated) </li>
<li>
SAMP_NUM_COEFF (1-20): Sample Numerator Coefficients. Twenty coefficients for the polynomial in the Numerator of the cn equation. (space separated) </li>
<li>
SAMP_DEN_COEFF (1-20): Sample Denominator Coefficients. Twenty coefficients for the polynomial in the Denominator of the cn equation. (space separated) </li>
</ul>
<p>These fields are directly derived from the document prospective GeoTIFF RPC document (<a href="http://geotiff.maptools.org/rpc_prop.html">http://geotiff.maptools.org/rpc_prop.html</a>) which in turn is closely modelled on the NITF RPC00B definition.</p>
<h4><a class="anchor" id="gdal_datamodel_xml">
xml: Domains</a></h4>
<p>Any domain name prefixed with "xml:" is not normal name/value metadata. It is a single XML document stored in one big string.</p>
<h2><a class="anchor" id="gdal_datamodel_rasterband">
Raster Band</a></h2>
<p>A raster band is represented in GDAL with the <a class="el" href="classGDALRasterBand.html" title="A single raster band (or channel).">GDALRasterBand</a> class. It represents a single raster band/channel/layer. It does not necessarily represent a whole image. For instance, a 24bit RGB image would normally be represented as a dataset with three bands, one for red, one for green and one for blue.</p>
<p>A raster band has the following properties:</p>
<ul>
<li>
<p class="startli">A width and height in pixels and lines. This is the same as that defined for the dataset, if this is a full resolution band.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">A datatype (GDALDataType). One of Byte, UInt16, Int16, UInt32, Int32, Float32, Float64, and the complex types CInt16, CInt32, CFloat32, and CFloat64.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">A block size. This is a preferred (efficient) access chunk size. For tiled images this will be one tile. For scanline oriented images this will normally be one scanline.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">A list of name/value pair metadata in the same format as the dataset, but of information that is potentially specific to this band.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">An optional description string.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">An optional single nodata pixel value (see also NODATA_VALUES metadata on the dataset for multi-band style nodata values).</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">An optional nodata mask band marking pixels as nodata or in some cases transparency as discussed in <a href="http://trac.osgeo.org/gdal/wiki/rfc15_nodatabitmask">RFC 15: Band Masks</a>.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">An optional list of category names (effectively class names in a thematic image).</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">An optional minimum and maximum value.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">An optional offset and scale for transforming raster values into meaning full values (ie translate height to meters)</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">An optional raster unit name. For instance, this might indicate linear units for elevation data.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">A color interpretation for the band. This is one of:</p>
<ul>
<li>
GCI_Undefined: the default, nothing is known. </li>
<li>
GCI_GrayIndex: this is an independent grayscale image </li>
<li>
GCI_PaletteIndex: this raster acts as an index into a color table </li>
<li>
GCI_RedBand: this raster is the red portion of an RGB or RGBA image </li>
<li>
GCI_GreenBand: this raster is the green portion of an RGB or RGBA image </li>
<li>
GCI_BlueBand: this raster is the blue portion of an RGB or RGBA image </li>
<li>
GCI_AlphaBand: this raster is the alpha portion of an RGBA image </li>
<li>
GCI_HueBand: this raster is the hue of an HLS image </li>
<li>
GCI_SaturationBand: this raster is the saturation of an HLS image </li>
<li>
GCI_LightnessBand: this raster is the hue of an HLS image </li>
<li>
GCI_CyanBand: this band is the cyan portion of a CMY or CMYK image </li>
<li>
GCI_MagentaBand: this band is the magenta portion of a CMY or CMYK image </li>
<li>
GCI_YellowBand: this band is the yellow portion of a CMY or CMYK image </li>
<li>
GCI_BlackBand: this band is the black portion of a CMYK image. </li>
</ul>
<p class="endli"></p>
</li>
<li>
<p class="startli">A color table, described in more detail later.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">Knowledge of reduced resolution overviews (pyramids) if available.</p>
<p class="endli"></p>
</li>
</ul>
<h2><a class="anchor" id="gdal_datamodel_rasterband_ct">
Color Table</a></h2>
<p>A color table consists of zero or more color entries described in C by the following structure:</p>
<pre>
typedef struct
{
    /- gray, red, cyan or hue -/
    short      c1;</pre><pre>    /- green, magenta, or lightness -/    
    short      c2;</pre><pre>    /- blue, yellow, or saturation -/
    short      c3;</pre><pre>    /- alpha or blackband -/
    short      c4;      
} <a class="el" href="structGDALColorEntry.html">GDALColorEntry</a>;
</pre><p>The color table also has a palette interpretation value (GDALPaletteInterp) which is one of the following values, and indicates how the c1/c2/c3/c4 values of a color entry should be interpreted.</p>
<ul>
<li>
GPI_Gray: Use c1 as grayscale value. </li>
<li>
GPI_RGB: Use c1 as red, c2 as green, c3 as blue and c4 as alpha. </li>
<li>
GPI_CMYK: Use c1 as cyan, c2 as magenta, c3 as yellow and c4 as black. </li>
<li>
GPI_HLS: Use c1 as hue, c2 as lightness, and c3 as saturation. </li>
</ul>
<p>To associate a color with a raster pixel, the pixel value is used as a subscript into the color table. That means that the colors are always applied starting at zero and ascending. There is no provision for indicating a prescaling mechanism before looking up in the color table.</p>
<h2><a class="anchor" id="gdal_datamodel_rasterband_overviews">
Overviews</a></h2>
<p>A band may have zero or more overviews. Each overview is represented as a "free standing" <a class="el" href="classGDALRasterBand.html" title="A single raster band (or channel).">GDALRasterBand</a>. The size (in pixels and lines) of the overview will be different than the underlying raster, but the geographic region covered by overviews is the same as the full resolution band.</p>
<p>The overviews are used to display reduced resolution overviews more quickly than could be done by reading all the full resolution data and downsampling.</p>
<p>Bands also have a HasArbitraryOverviews property which is TRUE if the raster can be read at any resolution efficiently but with no distinct overview levels. This applies to some FFT encoded images, or images pulled through gateways (like OGDI) where downsampling can be done efficiently at the remote point. </p>
</div>
<hr>

Generated for GDAL by 
<a href="http://www.doxygen.org/index.html"><img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.6.2-20100208.
</body>
</html>