]> granicus.if.org Git - postgis/commitdiff
fix some typos, cosmetic changes, throw some more geography around
authorRegina Obe <lr@pcorp.us>
Fri, 18 Dec 2009 18:26:32 +0000 (18:26 +0000)
committerRegina Obe <lr@pcorp.us>
Fri, 18 Dec 2009 18:26:32 +0000 (18:26 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@5030 b70326c6-7e19-0410-871a-916f4a2858ee

doc/faq.xml

index 87b4c0c2ce71464785abdb339f9864bf8d10ec74..9797f95adf0192aadade97af170ef101a25a5342 100644 (file)
@@ -29,8 +29,8 @@
                 if all you care about is measuring distances and lengths and you have data from all over the world.
                 Geometry datatype is an older data type that has many functions supporting it and enjoys great support from third party tools.
                 Its best if you are pretty comfortable with spatial reference systems or you are dealing with localized data
-                 where all your data fits in a since spatial reference system (SRID), or you need to do a lot of spatial processing.
-                 Refer to our <link linkend="PostGIS_TypeFunctionMatrix">function type matrix</link> to see what is currently supported and what is not.
+                 where all your data fits in a single <link linkend="spatial_ref_sys">spatial reference system (SRID)</link>, or you need to do a lot of spatial processing.
+                 Refer to <xref linkend="PostGIS_TypeFunctionMatrix" /> to see what is currently supported and what is not.
                 </para>
                 <para>
                        Long Answer: Refer to our more lengthy discussion in the <xref linkend="PostGIS_GeographyVSGeometry" /> and <link linkend="PostGIS_TypeFunctionMatrix">function type matrix</link>.
 
       <answer>
         <para>First, you need to create a table with a column of type
-        "geometry" to hold your GIS data. Connect to your database with
+        "geometry" or "geography" to hold your GIS data. 
+               Storing geography type data is a little different than storing geometry.  Refer
+               to <xref linkend="Geography_Basics" /> for details on storing geography. </para>
+               <para>
+               For geometry: Connect to your database with
         <filename>psql</filename> and try the following SQL:</para>
 
         <programlisting>CREATE TABLE gtest ( ID int4, NAME varchar(20) );
@@ -64,7 +68,7 @@ SELECT AddGeometryColumn('', 'gtest','geom',-1,'LINESTRING',2);</programlisting>
 
         <para>If the geometry column addition fails, you probably have not
         loaded the PostGIS functions and objects into this database. See the
-        <link linkend="PGInstall">installation instructions</link>.</para>
+        <xref linkend="PGInstall" />.</para>
 
         <para>Then, you can insert a geometry into the table using a SQL
         insert statement. The GIS object itself is formatted using the OpenGIS