From: Regina Obe Date: Fri, 2 Oct 2009 19:21:35 +0000 (+0000) Subject: put create table examples in program listing tag X-Git-Tag: 1.5.0b1~428 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=871a9972b3be241509e4a749032cbd9ea2587cb7;p=postgis put create table examples in program listing tag git-svn-id: http://svn.osgeo.org/postgis/trunk@4582 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/using_postgis_dataman.xml b/doc/using_postgis_dataman.xml index 7d225013d..cdfbad482 100644 --- a/doc/using_postgis_dataman.xml +++ b/doc/using_postgis_dataman.xml @@ -198,9 +198,9 @@ geometry POINT: Creating a table with 2d point geometry: - CREATE TABLE testgeog(gid serial PRIMARY KEY, the_geog geography(POINT,4326) ); + CREATE TABLE testgeog(gid serial PRIMARY KEY, the_geog geography(POINT,4326) ); Creating a table with z coordinate point - CREATE TABLE testgeog(gid serial PRIMARY KEY, the_geog geography(POINTZ,4326) ); + CREATE TABLE testgeog(gid serial PRIMARY KEY, the_geog geography(POINTZ,4326) ); LINESTRING