EVOLUTION-MANAGER
Edit File: gdalinfo.html
<!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"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.5"/> <title>My Project: gdalinfo</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">My Project </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main Page</span></a></li> <li class="current"><a href="pages.html"><span>Related Pages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">gdalinfo </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>lists information about a raster dataset</p> <h1><a class="anchor" id="gdalinfo_synopsis"></a> SYNOPSIS</h1> <pre class="fragment">gdalinfo [--help-general] [-mm] [-stats] [-hist] [-nogcp] [-nomd] [-norat] [-noct] [-nofl] [-checksum] [-proj4] [-listmdd] [-mdd domain|`all`]* [-sd subdataset] datasetname </pre><h1><a class="anchor" id="gdalinfo_description"></a> DESCRIPTION</h1> <p>The gdalinfo program lists various information about a GDAL supported raster dataset. </p> <dl> <dt><b>-mm</b></dt> <dd>Force computation of the actual min/max values for each band in the dataset. </dd> <dt><b>-stats</b></dt> <dd>Read and display image statistics. Force computation if no statistics are stored in an image. </dd> <dt><b>-approx_stats</b></dt> <dd>Read and display image statistics. Force computation if no statistics are stored in an image. However, they may be computed based on overviews or a subset of all tiles. Useful if you are in a hurry and don't want precise stats. </dd> <dt><b>-hist</b></dt> <dd>Report histogram information for all bands. </dd> <dt><b>-nogcp</b></dt> <dd>Suppress ground control points list printing. It may be useful for datasets with huge amount of GCPs, such as L1B AVHRR or HDF4 MODIS which contain thousands of them. </dd> <dt><b>-nomd</b></dt> <dd>Suppress metadata printing. Some datasets may contain a lot of metadata strings. </dd> <dt><b>-nrat</b></dt> <dd>Suppress printing of raster attribute table. </dd> <dt><b>-noct</b></dt> <dd>Suppress printing of color table. </dd> <dt><b>-checksum</b></dt> <dd>Force computation of the checksum for each band in the dataset. </dd> <dt><b>-listmdd</b></dt> <dd>(GDAL >= 1.11) List all metadata domains available for the dataset. </dd> <dt><b>-mdd domain</b></dt> <dd>Report metadata for the specified domain. Starting with GDAL 1.11, "all" can be used to report metadata in all domains </dd> <dt><b>-nofl</b></dt> <dd>(GDAL >= 1.9.0) Only display the first file of the file list. </dd> <dt><b>-sd</b> <em>subdataset</em></dt> <dd>(GDAL >= 1.9.0) If the input dataset contains several subdatasets read and display a subdataset with specified number (starting from 1). This is an alternative of giving the full subdataset name. </dd> <dt><b>-proj4</b></dt> <dd>(GDAL >= 1.9.0) Report a PROJ.4 string corresponding to the file's coordinate system. </dd> </dl> <p>The gdalinfo will report all of the following (if known):</p> <ul> <li> The format driver used to access the file. </li> <li> Raster size (in pixels and lines). </li> <li> The coordinate system for the file (in OGC WKT). </li> <li> The geotransform associated with the file (rotational coefficients are currently not reported). </li> <li> Corner coordinates in georeferenced, and if possible lat/long based on the full geotransform (but not GCPs). </li> <li> Ground control points. </li> <li> File wide (including subdatasets) metadata. </li> <li> Band data types. </li> <li> Band color interpretations. </li> <li> Band block size. </li> <li> Band descriptions. </li> <li> Band min/max values (internally known and possibly computed). </li> <li> Band checksum (if computation asked). </li> <li> Band NODATA value. </li> <li> Band overview resolutions available. </li> <li> Band unit type (i.e.. "meters" or "feet" for elevation bands). </li> <li> Band pseudo-color tables. </li> </ul> <h1><a class="anchor" id="gdalinfo_example"></a> EXAMPLE</h1> <pre class="fragment">gdalinfo ~/openev/utm.tif Driver: GTiff/GeoTIFF Size is 512, 512 Coordinate System is: PROJCS["NAD27 / UTM zone 11N", GEOGCS["NAD27", DATUM["North_American_Datum_1927", SPHEROID["Clarke 1866",6378206.4,294.978698213901]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433]], PROJECTION["Transverse_Mercator"], PARAMETER["latitude_of_origin",0], PARAMETER["central_meridian",-117], PARAMETER["scale_factor",0.9996], PARAMETER["false_easting",500000], PARAMETER["false_northing",0], UNIT["metre",1]] Origin = (440720.000000,3751320.000000) Pixel Size = (60.000000,-60.000000) Corner Coordinates: Upper Left ( 440720.000, 3751320.000) (117d38'28.21"W, 33d54'8.47"N) Lower Left ( 440720.000, 3720600.000) (117d38'20.79"W, 33d37'31.04"N) Upper Right ( 471440.000, 3751320.000) (117d18'32.07"W, 33d54'13.08"N) Lower Right ( 471440.000, 3720600.000) (117d18'28.50"W, 33d37'35.61"N) Center ( 456080.000, 3735960.000) (117d28'27.39"W, 33d45'52.46"N) Band 1 Block=512x16 Type=Byte, ColorInterp=Gray </pre> </div></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by  <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.5 </small></address> </body> </html>