]> granicus.if.org Git - postgis/commitdiff
more pieces
authorRegina Obe <lr@pcorp.us>
Fri, 11 Feb 2011 22:40:47 +0000 (22:40 +0000)
committerRegina Obe <lr@pcorp.us>
Fri, 11 Feb 2011 22:40:47 +0000 (22:40 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@6805 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference_raster.xml

index 086466b6a50dba673a287a7e825f5a9576bcb2aa..e70f59c23a7453cee40abee3aa1c311a4d41ab0b 100644 (file)
   <sect1 id="RT_Loading_Rasters"> 
     <title>Loading and Creating Rasters</title>
     <para>For most use cases, you will create PostGIS rasters by loading existing raster files using the packaged <varname>raster2pgsql</varname> raster loader.</para>
+    
+    <sect2 id="raster2pgsql_usage">
+        <title>Using the raster2pgsql Raster Loader</title>
+        <para>
+            The <varname>raster2pgsql.py</varname> is a raster loader python script that utilizes Python, PyGDAL, and NumPy to convert any GDAL supported raster format into sql suitable for loading into a PostGIS raster table.
+            It is capable of loading folders of raster files as well as creating overviews of rasters.
+        </para>  
+    </sect2>
+    
     <sect2 id="Raster_Creation">
        <para>For the examples in this reference we will be using a raster table of dummy rasters - Formed with the following code </para>
 <programlisting>CREATE TABLE dummy_rast(rid integer, rast raster);