]> granicus.if.org Git - postgis/commitdiff
fix some typos
authorRegina Obe <lr@pcorp.us>
Sat, 19 Jul 2014 20:52:02 +0000 (20:52 +0000)
committerRegina Obe <lr@pcorp.us>
Sat, 19 Jul 2014 20:52:02 +0000 (20:52 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@12808 b70326c6-7e19-0410-871a-916f4a2858ee

doc/extras_address_standardizer.xml
doc/installation.xml

index 8e47838496dd3314d270a6a721dd7bfc20f3eb51..43aa9824410b381418e58bcf32b1ed52e3746a3e 100644 (file)
@@ -2,8 +2,8 @@
 <chapter id="Address_Standardizer">\r
        <title>Address Standardizer</title>\r
        <para>This is a fork of the <ulink url="http://www.pagcgeo.org/docs/html/pagc-11.html">PAGC standardizer</ulink> (original code for this portion was  <ulink url="http://sourceforge.net/p/pagc/code/360/tree/branches/sew-refactor/postgresql">PAGC PostgreSQL Address Standardizer</ulink>). </para>\r
-       <para>The address standardizer is a single line address parser. That takes an input address and normalizes it based on a set of rules stored in a table and helper lex and gaz tables.</para>\r
-       <para>The code is built into a single postgresql extension library called <code>address_standardizer</code> which can be installed with <code>CREATE EXTENSION address_standardizer</code>.</para>\r
+       <para>The address standardizer is a single line address parser that takes an input address and normalizes it based on a set of rules stored in a table and helper lex and gaz tables.</para>\r
+       <para>The code is built into a single postgresql extension library called <code>address_standardizer</code> which can be installed with <code>CREATE EXTENSION address_standardizer;</code>.</para>\r
         <para>The code for this extension can be found in the PostGIS <filename>extras/adress_standardizer</filename> and is currently self-contained.</para>\r
         <para>For installation instructions refer to: <xref linkend="installing_pagc_address_standardizer" />.</para>\r
   <sect1 id="Address_Standardizer_Basics"><title>How the Parser Works</title>\r
@@ -323,10 +323,12 @@ into includes in the future for easier maintenance.</para></listitem>
                <refsection>\r
                        <title>Examples</title>\r
        \r
-                       <programlisting>SELECT num, street, city, zip, zipplus FROM parse_address('1 Devonshire Place, Boston, MA 02109-1234');</programlisting>\r
                      <screen> num |      street      |  city  |  zip  | zipplus\r
+                       <programlisting>SELECT num, street, city, zip, zipplus FROM parse_address('1 Devonshire Place, Boston, MA 02109-1234');\r
+ num |      street      |  city  |  zip  | zipplus\r
 -----+------------------+--------+-------+---------\r
- 1   | Devonshire Place | Boston | 02109 | 1234</screen>\r
+ 1   | Devonshire Place | Boston | 02109 | 1234                        \r
+</programlisting>\r
+\r
                </refsection>\r
        \r
                <!-- Optionally add a "See Also" section -->\r
index 80706812c4ba0a50cecfa7a701e82331136d2653..53354b148523a8fec455662b1863a38e439d49c4 100644 (file)
@@ -1208,7 +1208,7 @@ Run tests: 90</programlisting>
        <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="installing_pagc_address_standardizer"><title>Installing and Using ddress standardizer</title>
+  <sect1 id="installing_pagc_address_standardizer"><title>Installing and Using the address standardizer</title>
                <para>The <code>address_standardizer</code> extension used to be a separate package that required separate download. From PostGIS 2.2 on, it is now bundled in.
                For more information about the address_standardize, what it does, and how to configure it for your needs, refer to <xref linkend="Address_Standardizer" />.</para>
                <para>This standardizer can be use in conjunction with the PostGIS packaged tiger geocoder extension as a replacement for the <xref linkend="Normalize_Address" /> discussed.