[GRASS-SVN] r56438 - in grass/trunk/vector: v.external.out v.out.postgis
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon May 27 10:47:41 PDT 2013
Author: martinl
Date: 2013-05-27 10:47:41 -0700 (Mon, 27 May 2013)
New Revision: 56438
Modified:
grass/trunk/vector/v.external.out/v.external.out.html
grass/trunk/vector/v.out.postgis/v.out.postgis.html
Log:
v.out.postgis & v.external.out: update PG creation options
Modified: grass/trunk/vector/v.external.out/v.external.out.html
===================================================================
--- grass/trunk/vector/v.external.out/v.external.out.html 2013-05-27 17:46:52 UTC (rev 56437)
+++ grass/trunk/vector/v.external.out/v.external.out.html 2013-05-27 17:47:41 UTC (rev 56438)
@@ -32,9 +32,9 @@
format (section "Layer Creation Options").
<p>
-Note that built-in <em>GRASS-PostGIS data provider</em> supports a limited
-number of creation <b>options</b> compared to PostgreSQL/PostGIS
-driver from OGR library:
+Note that built-in <em>GRASS-PostGIS data provider</em>
+(<b>format=PostgreSQL</b>) supports different creation <b>options</b>
+compared to PostgreSQL/PostGIS driver from OGR library:
<ul>
<li><tt>SCHEMA=<name></tt> - name of schema where to create
feature tables. If schema doesn't exists, it's automatically created
@@ -45,11 +45,31 @@
be used for storing geometry data in feature table, default: <tt>geom</tt></li>
<li><tt>SPATIAL_INDEX=YES|NO</tt> - enable/disable spatial index on geometry column, default: YES</li>
<li><tt>PRIMARY_KEY=YES|NO</tt> - enable/disable primary key on FID column, default: YES</li>
+ <li><tt>SRID=<value></tt> - spatial reference identifier,
+ default: not defined</li>
<li><tt>TOPOLOGY=YES|NO</tt> - enable/disable
native <a href="http://grasswiki.osgeo.org/wiki/PostGIS_Topology">PostGIS
topology</a>, default: NO</li>
</ul>
+Options relevant only to topological output (<tt>TOPOLOGY=YES</tt>):
+
+<ul>
+ <li><tt>TOPOSCHEMA_NAME=<schema name></tt> - name of PostGIS
+ Topology schema (relevant only for <tt>TOPOLOGY=YES</tt>),
+ default: <tt>topo_<input></tt></li>
+ <li><tt>TOPOGEOM_NAME=<column></tt> - name of column which
+ will be used for storing topogeometry data in feature table,
+ default: <tt>topo</tt></li>
+ <li><tt>TOPO_TOLERANCE=<value></tt> - tolerance for PostGIS
+ Topology schema,
+ see <a href="http://www.postgis.net/docs/manual-2.0/CreateTopology.html">CreateTopology</a>
+ function for defails, default: <tt>0</tt></li>
+ <li><tt>TOPO_GEO_ONLY=YES|NO</tt> - store in PostGIS Topology schema
+ only data relevant to Topo-Geo data model (relevant only
+ for <tt>TOPOLOGY=YES</tt>), default: <tt>NO</tt></li>
+</ul>
+
<p>
Creation <b>options</b> are comma-separated pairs
(<tt>key=value</tt>), the options are case-insensitive.
Modified: grass/trunk/vector/v.out.postgis/v.out.postgis.html
===================================================================
--- grass/trunk/vector/v.out.postgis/v.out.postgis.html 2013-05-27 17:46:52 UTC (rev 56437)
+++ grass/trunk/vector/v.out.postgis/v.out.postgis.html 2013-05-27 17:47:41 UTC (rev 56438)
@@ -24,14 +24,31 @@
index on geometry column, default: <tt>YES</tt></li>
<li><tt>PRIMARY_KEY=YES|NO</tt> - enable/disable adding primary key
on FID column, default: <tt>YES</tt></li>
- <li><tt>TOPOSCHEMA_NAME=<schema name></tt> - name of PostGIS
- Topology schema (relevant only for <b>-l</b> flag),
- default: <tt>topo_<input></tt></li>
<li><tt>SRID=<value></tt> - spatial reference identifier,
default: not defined</li>
</ul>
-Note that <em>options</em> defined
+PostGIS Topology related options (relevant only for <b>-l</b> flag):
+
+<ul>
+ <li><tt>TOPOSCHEMA_NAME=<schema name></tt> - name of PostGIS
+ Topology schema, default: <tt>topo_<input></tt></li>
+ <li><tt>TOPOGEOM_NAME=<column></tt> - name of column which
+ will be used for storing topogeometry data in feature table,
+ default: <tt>topo</tt></li>
+ <li><tt>TOPO_TOLERANCE=<value></tt> - tolerance for PostGIS
+ Topology schema,
+ see <a href="http://www.postgis.net/docs/manual-2.0/CreateTopology.html">CreateTopology</a>
+ function for defails, default: <tt>0</tt></li>
+ <li><tt>TOPO_GEO_ONLY=YES|NO</tt> - store in PostGIS Topology schema
+ only data relevant to Topo-Geo data model,
+ default: <tt>NO</tt></li>
+</ul>
+
+<p>
+Creation <b>options</b> are comma-separated pairs
+(<tt>key=value</tt>), the options are case-insensitive. Note
+that <b>options</b> defined
by <em><a href="v.external.out.html">v.external.out</a></em> are
ignored by <em>v.out.postgis</em>.
More information about the grass-commit
mailing list