]> granicus.if.org Git - postgis/commitdiff
Topology is enable by default since PostGIS-2.0 (2012)
authorSandro Santilli <strk@kbt.io>
Sun, 12 Mar 2017 11:12:36 +0000 (11:12 +0000)
committerSandro Santilli <strk@kbt.io>
Sun, 12 Mar 2017 11:12:36 +0000 (11:12 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@15333 b70326c6-7e19-0410-871a-916f4a2858ee

doc/extras_topology.xml
doc/installation.xml

index 52fc73fc5d876c0053ebf4cdbc846360da5c361d..1f37f3abec4099be04ed347960257dcb562e428e 100644 (file)
@@ -10,7 +10,7 @@
        <para>Details of this project can be found at <ulink url="http://trac.osgeo.org/postgis/wiki/UsersWikiPostgisTopology">PostGIS Topology Wiki</ulink></para>
        <para>All functions and tables associated with this module are installed in a schema called <varname>topology</varname>.</para>
        <para>Functions that are defined in SQL/MM standard are prefixed with ST_ and functions specific to PostGIS are not prefixed.</para>
-       <para>To build PostGIS 2.0 with topology support, compile with the --with-topology option as described in <xref linkend="postgis_installation"/>.  Some functions depend on GEOS 3.3+ so you should compile with GEOS 3.3+ to fully utilize the topology support.</para>
+       <para>Topolgy support is build by default starting with PostGIS 2.0, and can be disabled specifying --without-topology configure option at build time as described in <xref linkend="postgis_installation"/></para>
 
        <sect1 id="Topology_Types">
         <sect1info>
index 9758d8c6c6e90fae045e00b5e7859974674ee3d9..3c73bbcef871624988bd2f22203b956dfad7652a 100644 (file)
@@ -526,10 +526,10 @@ tar -xvzf postgis-&last_release_version;.tar.gz</programlisting>
                  </listitem>
                </varlistentry>
                <varlistentry>
-                 <term><command>--with-topology</command></term>
+                 <term><command>--without-topology</command></term>
                  <listitem>
                        <para>
-                         Compile with topology support.  This will build the topology.sql file.  There is no corresponding library
+                         Disable topology support. There is no corresponding library
                          as all logic needed for topology is in postgis-&last_release_version; library.
                        </para>
                  </listitem>
@@ -1403,7 +1403,7 @@ All 2 tests passed.
 
        <para>You can later run <filename>uninstall_legacy.sql</filename> to get rid of the deprecated functions after you are done with restoring and cleanup.</para>
   </sect1>
-  
+
     <sect1 id="create_new_db">
        <title>Create a spatially-enabled database without using extensions</title>
 
@@ -1582,12 +1582,12 @@ the folder where the loader extracts the downloaded tiger data.</para></listitem
                        <listitem><para>Then run the  <xref linkend="Loader_Generate_Nation_Script" />  SQL function make sure to use the name of your custom profile and copy the script to a .sh or .bat file.  So for example to build  the nation load:</para>
                                        <programlisting>psql -c "SELECT Loader_Generate_Nation_Script('debbie')" -d geocoder -tA > /gisdata/nation_script_load.sh</programlisting>
                        </listitem>
-                       
+
                        <listitem><para>Run the generated nation load commandline scripts.</para>
                                <programlisting>cd /gisdata
 sh nation_script_load.sh</programlisting>
       </listitem>
-      
+
       <listitem><para>After you are done running the nation script, you should have three tables in your <code>tiger_data</code> schema and they should be filled with data. Confirm you do by doing the following queries from psql or pgAdmin</para>
                                <programlisting>SELECT count(*) FROM tiger_data.county_all;</programlisting>
 <screen> count
@@ -1602,9 +1602,9 @@ sh nation_script_load.sh</programlisting>
 (1 row)
 </screen>
       </listitem>
-                       
+
                        <listitem><para>For each state you want to load data for, generate a state script <xref linkend="Loader_Generate_Script" />.  DO NOT Generate the state script until you have already loaded the nation data, because the state script utilizes county list loaded by nation script.</para></listitem>
-                       
+
                        <listitem><programlisting>psql -c "SELECT Loader_Generate_Script(ARRAY['MA'], 'debbie')" -d geocoder -tA > /gisdata/ma_load.sh</programlisting></listitem>
 
                        <listitem><para>Run the generated commandline scripts.</para>