]> granicus.if.org Git - postgis/commitdiff
Add missing new translation italian/brazilian files
authorSandro Santilli <strk@keybit.net>
Wed, 15 Oct 2014 15:50:01 +0000 (15:50 +0000)
committerSandro Santilli <strk@keybit.net>
Wed, 15 Oct 2014 15:50:01 +0000 (15:50 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@13078 b70326c6-7e19-0410-871a-916f4a2858ee

doc/po/it_IT/extras_address_standardizer.xml.po [new file with mode: 0644]
doc/po/it_IT/reference_guc.xml.po [new file with mode: 0644]
doc/po/pt_BR/extras_address_standardizer.xml.po [new file with mode: 0644]
doc/po/pt_BR/reference_guc.xml.po [new file with mode: 0644]

diff --git a/doc/po/it_IT/extras_address_standardizer.xml.po b/doc/po/it_IT/extras_address_standardizer.xml.po
new file mode 100644 (file)
index 0000000..a777161
--- /dev/null
@@ -0,0 +1,851 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
+"POT-Creation-Date: 2014-10-10 23:07+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Tag: title
+#: extras_address_standardizer.xml:3
+#, no-c-format
+msgid "Address Standardizer"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:4
+#, no-c-format
+msgid ""
+"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>)."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:5
+#, no-c-format
+msgid ""
+"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."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:6
+#, no-c-format
+msgid ""
+"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>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:7
+#, no-c-format
+msgid ""
+"The code for this extension can be found in the PostGIS <filename>extensions/"
+"address_standardizer</filename> and is currently self-contained."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:8
+#, no-c-format
+msgid ""
+"For installation instructions refer to: <xref linkend="
+"\"installing_pagc_address_standardizer\"/>."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:9
+#, no-c-format
+msgid "How the Parser Works"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:10
+#, no-c-format
+msgid ""
+"The parser works from right to left looking first at the macro elements for "
+"postcode, state/province, city, and then looks micro elements to determine "
+"if we are dealing with a house number street or intersection or landmark. It "
+"currently does not look for a country code or name, but that could be "
+"introduced in the future."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:17
+#, no-c-format
+msgid "Country code"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:18
+#, no-c-format
+msgid ""
+"Assumed to be US or CA based on: postcode as US or Canada state/province as "
+"US or Canada else US"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:21
+#, no-c-format
+msgid "Postcode/zipcode"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:22
+#, no-c-format
+msgid ""
+"These are recognized using Perl compatible regular expressions. These regexs "
+"are currently in the parseaddress-api.c and are relatively simple to make "
+"changes to if needed."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:27
+#, no-c-format
+msgid "State/province"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:28
+#, no-c-format
+msgid ""
+"These are recognized using Perl compatible regular expressions. These regexs "
+"are currently in the parseaddress-api.c but could get moved into includes in "
+"the future for easier maintenance."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:37
+#, no-c-format
+msgid ""
+"This section lists the PostgreSQL data types installed by Address "
+"Standardizer extension. Note we describe the casting behavior of these which "
+"is very important especially when designing your own functions."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:42
+#, no-c-format
+msgid "Address Standardizer Types"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:45
+#, no-c-format
+msgid "stdaddr"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:46
+#, no-c-format
+msgid ""
+"A composite type that consists of the elements of an address. This is the "
+"return type for <varname>standardize_address</varname> function."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:49 extras_address_standardizer.xml:152
+#: extras_address_standardizer.xml:214 extras_address_standardizer.xml:256
+#: extras_address_standardizer.xml:314 extras_address_standardizer.xml:373
+#, no-c-format
+msgid "Description"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:50
+#, no-c-format
+msgid ""
+"A composite type that consists of elements of an address. This is the return "
+"type for <xref linkend=\"standardize_address\"/> function. Some descriptions "
+"for elements are borrowed from <ulink url=\"http://www.pagcgeo.org/docs/html/"
+"pagc-12.html#ss12.1\">PAGC Postal Attributes</ulink>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:51
+#, no-c-format
+msgid ""
+"The token numbers denote the reference number in the <varname>rules</"
+"varname> table."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:52 extras_address_standardizer.xml:321
+#: extras_address_standardizer.xml:379
+#, no-c-format
+msgid "&address_standardizer_required;"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:55
+#, no-c-format
+msgid "building"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:57
+#, no-c-format
+msgid ""
+"is text (token number <code>0</code>): Refers to building number or name. "
+"Unparsed building identifiers and types. Generally blank for most addresses."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:60
+#, no-c-format
+msgid "house_num"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:62
+#, no-c-format
+msgid ""
+"is a text (token number <code>1</code>): This is the street number on a "
+"street. Example <emphasis>75</emphasis> in <code>75 State Street</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:65
+#, no-c-format
+msgid "predir"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:66
+#, no-c-format
+msgid ""
+"is text (token number <code>2</code>): STREET NAME PRE-DIRECTIONAL such as "
+"North, South, East, West etc."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:68
+#, no-c-format
+msgid "qual"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:70
+#, no-c-format
+msgid ""
+"is text (token number <code>3</code>): STREET NAME PRE-MODIFIER Example "
+"<emphasis>OLD</emphasis> in <code>3715 OLD HIGHWAY 99</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:73
+#, no-c-format
+msgid "pretype"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:75
+#, no-c-format
+msgid "is text (token number <code>4</code>): STREET PREFIX TYPE"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:78
+#, no-c-format
+msgid "name"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:80
+#, no-c-format
+msgid "is text (token number <code>5</code>): STREET NAME"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:83
+#, no-c-format
+msgid "suftype"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:85
+#, no-c-format
+msgid ""
+"is text (token number <code>6</code>): STREET POST TYPE e.g. St, Ave, Cir. A "
+"street type following the root street name. Example <emphasis>STREET</"
+"emphasis> in <code>75 State Street</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:88
+#, no-c-format
+msgid "sufdir"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:90
+#, no-c-format
+msgid ""
+"is text (token number <code>7</code>): STREET POST-DIRECTIONAL A directional "
+"modifier that follows the street name.. Example <emphasis>WEST</emphasis> in "
+"<code>3715 TENTH AVENUE WEST</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:93
+#, no-c-format
+msgid "ruralroute"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:95
+#, no-c-format
+msgid ""
+"is text (token number <code>8</code>): RURAL ROUTE . Example <emphasis>8</"
+"emphasis> in <code>RR 7</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:98
+#, no-c-format
+msgid "extra"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:100
+#, no-c-format
+msgid "is text: Extra information like Floor number."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:103
+#, no-c-format
+msgid "city"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:105
+#, no-c-format
+msgid "is text (token number <code>10</code>): Example Boston."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:108
+#, no-c-format
+msgid "state"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:110
+#, no-c-format
+msgid ""
+"is text (token number <code>11</code>): Example <code>MASSACHUSETTS</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:113
+#, no-c-format
+msgid "country"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:115
+#, no-c-format
+msgid "is text (token number <code>12</code>): Example <code>USA</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:118
+#, no-c-format
+msgid "postcode"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:120
+#, no-c-format
+msgid ""
+"is text POSTAL CODE (ZIP CODE) (token number <code>13</code>): Example "
+"<code>02109</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:123
+#, no-c-format
+msgid "<term>box</term>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:125
+#, no-c-format
+msgid ""
+"is text POSTAL BOX NUMBER (token number <code>14 and 15</code>): Example "
+"<code>02109</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:128
+#, no-c-format
+msgid "unit"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:130
+#, no-c-format
+msgid ""
+"is text Apartment number or Suite Number (token number <code>17</code>): "
+"Example <emphasis>3B</emphasis> in <code>APT 3B</code>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:141
+#, no-c-format
+msgid ""
+"This section lists the PostgreSQL table formats used by the "
+"address_standardizer for normalizing addresses. Note that these tables do "
+"not need to be named the same as what is referenced here. You can have "
+"different lex, gaz, rules tables for each country for example or for your "
+"custom geocoder. The names of these tables get passed into the address "
+"standardizer functions."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:145
+#, no-c-format
+msgid "Address Standardizer Tables"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:148
+#, no-c-format
+msgid "rules table"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:149
+#, no-c-format
+msgid ""
+"The rules table contains a set of rules that maps address input sequence "
+"tokens to standardized output sequence"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:153
+#, no-c-format
+msgid ""
+"A rules table must have at least the following columns, though you are "
+"allowed to add more for your own uses."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:157 extras_address_standardizer.xml:220
+#: extras_address_standardizer.xml:262
+#, no-c-format
+msgid "<term>id</term>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:159 extras_address_standardizer.xml:222
+#: extras_address_standardizer.xml:264
+#, no-c-format
+msgid "Primary key of table"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:162
+#, no-c-format
+msgid "rule"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:164
+#, no-c-format
+msgid ""
+"text field denoting the rule. Details at <ulink url=\"http://www.pagcgeo.org/"
+"docs/html/pagc-12.html#--r-rec--\">PAGC Address Standardizer Rule records</"
+"ulink>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:165
+#, no-c-format
+msgid ""
+"A rule consists of a set of non-negative integers representing input tokens, "
+"terminated by a -1, followed by an equal number of non-negative integers "
+"representing postal attributes, terminated by a -1, followed by an integer "
+"representing a rule type, followed by an integer representing the rank of "
+"the rule. The rules are ranked from 0 (lowest) to 17 (highest)."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:166
+#, no-c-format
+msgid ""
+"So for example the rule <code>2 0 2 22 3 -1 5 5 6 7 3 -1 2 6</code> maps to "
+"sequence of tokens <emphasis>TYPE NUMBER TYPE DIRECT QUALIF</emphasis> to "
+"the output sequence <emphasis>STREET STREET SUFTYP SUFDIR QUALIF</emphasis>. "
+"The rule is an ARC_C rule of rank 6."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:171
+#, no-c-format
+msgid "Each rule has a rule type which is denoted by one of following:"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:174
+#, no-c-format
+msgid "MACRO_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:176
+#, no-c-format
+msgid "(token number = \"0\"). The class of rules for parsing MACRO clauses."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:180
+#, no-c-format
+msgid "MICRO_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:182
+#, no-c-format
+msgid ""
+"(token number = \"1\"). The class of rules for parsing full MICRO clauses "
+"(ie ARC_C plus CIVIC_C). These rules are not used in the build phase."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:186
+#, no-c-format
+msgid "ARC_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:188
+#, no-c-format
+msgid ""
+"(token number = \"2\"). The class of rules for parsing MICRO clauses, "
+"excluding the HOUSE attribute."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:192
+#, no-c-format
+msgid "CIVIC_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:194
+#, no-c-format
+msgid ""
+"(token number = \"3\"). The class of rules for parsing the HOUSE attribute."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:198
+#, no-c-format
+msgid "EXTRA_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:200
+#, no-c-format
+msgid ""
+"(token number = \"4\"). The class of rules for parsing EXTRA attributes - "
+"attributes excluded from geocoding. These rules are not used in the build "
+"phase."
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:210
+#, no-c-format
+msgid "lex table"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:211
+#, no-c-format
+msgid ""
+"A lex table is used to classify alphanumeric input and associate that input "
+"with (a) input tokens ( See Input Tokens) and (b) standardized "
+"representations."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:215
+#, no-c-format
+msgid ""
+"A lex (short for lexicon) table is used to classify alphanumeric input and "
+"associate that input with <ulink url=\"http://www.pagcgeo.org/docs/html/"
+"pagc-12.html#--i-tok--\">(a) input tokens</ulink> and (b) standardized "
+"representations. Things you will find in these tables are <code>ONE</code> "
+"mapped to stdworkd: <code>1</code>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:217
+#, no-c-format
+msgid "A lex has at least the following columns in the table. You may add"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:225 extras_address_standardizer.xml:267
+#, no-c-format
+msgid "<term>seq</term>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:227 extras_address_standardizer.xml:269
+#, no-c-format
+msgid "integer: definition number?"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:231 extras_address_standardizer.xml:272
+#, no-c-format
+msgid "word"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:233 extras_address_standardizer.xml:274
+#, no-c-format
+msgid "text: the input word"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:236 extras_address_standardizer.xml:277
+#, no-c-format
+msgid "stdword"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:238 extras_address_standardizer.xml:279
+#, no-c-format
+msgid "text: the standardized replacement word"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:241 extras_address_standardizer.xml:282
+#, no-c-format
+msgid "token"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:243 extras_address_standardizer.xml:284
+#, no-c-format
+msgid ""
+"integer: the kind of word it is. Only if it is used in this context will it "
+"be replaced. Refer to <ulink url=\"http://www.pagcgeo.org/docs/html/pagc-12."
+"html#--i-tok--\">PAGC Tokens</ulink>."
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:252
+#, no-c-format
+msgid "gaz table"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:253
+#, no-c-format
+msgid ""
+"A gaz table is used to standardize place names and associate that input with "
+"(a) input tokens ( See Input Tokens) and (b) standardized representations."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:257
+#, no-c-format
+msgid ""
+"A gaz (short for gazeteer) table is used to classify place names and "
+"associate that input with <ulink url=\"http://www.pagcgeo.org/docs/html/"
+"pagc-12.html#--i-tok--\">(a) input tokens</ulink> and (b) standardized "
+"representations. For example if you are in US, you may load these with State "
+"Names and associated abbreviations."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:259
+#, no-c-format
+msgid ""
+"A gaz table has at least the following columns in the table. You may add "
+"more columns if you wish for your own purposes."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:295
+#, no-c-format
+msgid "Address Standardizer Functions"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:298
+#, no-c-format
+msgid "parse_address"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:300
+#, no-c-format
+msgid "Takes a 1 line address and breaks into parts"
+msgstr ""
+
+#. Tag: funcprototype
+#: extras_address_standardizer.xml:305
+#, no-c-format
+msgid ""
+"<funcdef>record <function>parse_address</function></funcdef> "
+"<paramdef><type>text </type> <parameter>address</parameter></paramdef>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:316
+#, no-c-format
+msgid ""
+"Returns takes as input an address, and returns a record output consisting of "
+"fields <emphasis>num</emphasis>, <emphasis>street</emphasis>, "
+"<emphasis>street2</emphasis>, <emphasis>address1</emphasis>, <emphasis>city</"
+"emphasis>, <emphasis>state</emphasis>, <emphasis>zip</emphasis>, "
+"<emphasis>zipplus</emphasis>, <emphasis>country</emphasis>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:320 extras_address_standardizer.xml:378
+#, no-c-format
+msgid "Availability: 2.2.0"
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:326 extras_address_standardizer.xml:384
+#, no-c-format
+msgid "Examples"
+msgstr ""
+
+#. Tag: programlisting
+#: extras_address_standardizer.xml:328
+#, no-c-format
+msgid ""
+"SELECT num, street, city, zip, zipplus FROM parse_address('1 Devonshire "
+"Place, Boston, MA 02109-1234');\n"
+" num |      street      |  city  |  zip  | zipplus\n"
+"-----+------------------+--------+-------+---------\n"
+" 1   | Devonshire Place | Boston | 02109 | 1234"
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:338 extras_address_standardizer.xml:417
+#, no-c-format
+msgid "See Also"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:346
+#, no-c-format
+msgid "standardize_address"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:348
+#, no-c-format
+msgid ""
+"Returns an stdaddr form of an input address utilizing lex, gaz, and rule "
+"tables."
+msgstr ""
+
+#. Tag: funcsynopsis
+#: extras_address_standardizer.xml:352
+#, no-c-format
+msgid ""
+"<funcprototype> <funcdef>stdaddr <function>standardize_address</function></"
+"funcdef> <paramdef><type>text </type> <parameter>lextab</parameter></"
+"paramdef> <paramdef><type>text </type> <parameter>gaztab</parameter></"
+"paramdef> <paramdef><type>text </type> <parameter>rultab</parameter></"
+"paramdef> <paramdef><type>text </type> <parameter>address</parameter></"
+"paramdef> </funcprototype> <funcprototype> <funcdef>stdaddr "
+"<function>standardize_address</function></funcdef> <paramdef><type>text </"
+"type> <parameter>lextab</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>gaztab</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>rultab</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>micro</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>macro</parameter></paramdef> </funcprototype>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:375
+#, no-c-format
+msgid ""
+"Returns an <xref linkend=\"stdaddr\"/> form of an input address utilizing "
+"<xref linkend=\"lextab\"/> table name, <xref linkend=\"gaztab\"/>, and <xref "
+"linkend=\"rulestab\"/> table names and an address."
+msgstr ""
+
+#. Tag: programlisting
+#: extras_address_standardizer.xml:386
+#, no-c-format
+msgid ""
+"SELECT *  FROM standardize_address('tiger.pagc_lex', \n"
+"                           'tiger.pagc_gaz', 'tiger.pagc_rules', 'One "
+"Devonshire Place, PH 301, Boston, MA 02109-1234');"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:389
+#, no-c-format
+msgid ""
+"Make easier to read we'll dump output using hstore extension CREATE "
+"EXTENSION hstore; you need to install"
+msgstr ""
+
+#. Tag: programlisting
+#: extras_address_standardizer.xml:390
+#, no-c-format
+msgid ""
+"SELECT (each(hstore(p))).*  \n"
+" FROM standardize_address('tiger.pagc_lex', 'tiger.pagc_gaz', \n"
+"   'tiger.pagc_rules', 'One Devonshire Place, PH 301, Boston, MA "
+"02109-1234') As p;"
+msgstr ""
+
+#. Tag: screen
+#: extras_address_standardizer.xml:393
+#, no-c-format
+msgid ""
+"key     |      value\n"
+"------------+-----------------\n"
+" box        |\n"
+" city       | BOSTON\n"
+" name       | DEVONSHIRE\n"
+" qual       |\n"
+" unit       | # PENTHOUSE 301\n"
+" extra      |\n"
+" state      | MA\n"
+" predir     |\n"
+" sufdir     |\n"
+" country    | USA\n"
+" pretype    |\n"
+" suftype    | PL\n"
+" building   |\n"
+" postcode   | 02109\n"
+" house_num  | 1\n"
+" ruralroute |\n"
+"(16 rows)"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:419
+#, no-c-format
+msgid ""
+", <xref linkend=\"rulestab\"/>, <xref linkend=\"lextab\"/>, <xref linkend="
+"\"gaztab\"/>,"
+msgstr ""
diff --git a/doc/po/it_IT/reference_guc.xml.po b/doc/po/it_IT/reference_guc.xml.po
new file mode 100644 (file)
index 0000000..1c099db
--- /dev/null
@@ -0,0 +1,406 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
+"POT-Creation-Date: 2014-10-10 23:07+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Tag: para
+#: reference_guc.xml:5
+#, no-c-format
+msgid ""
+"This section lists custom PostGIS Grand Unified Custom Variables(GUC). These "
+"can be set globally, by database, by session or by transaction. Best set at "
+"global or database level."
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:8
+#, no-c-format
+msgid "PostGIS Grand Unified Custom Variables (GUCs)"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:12
+#, no-c-format
+msgid "postgis.backend"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:13
+#, no-c-format
+msgid ""
+"The backend to service a function where GEOS and SFCGAL overlap. Options: "
+"geos or sfcgal. Defaults to geos."
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:17 reference_guc.xml:45 reference_guc.xml:99
+#: reference_guc.xml:191
+#, no-c-format
+msgid "Description"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:18
+#, no-c-format
+msgid ""
+"This GUC is only relevant if you compiled PostGIS with sfcgal support. By "
+"default <varname>geos</varname> backend is used for functions where both "
+"GEOS and SFCGAL have the same named function. This variable allows you to "
+"override and make sfcgal the backend to service the request."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:19
+#, no-c-format
+msgid "Availability: 2.1.0"
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:23 reference_guc.xml:69 reference_guc.xml:150
+#: reference_guc.xml:217
+#, no-c-format
+msgid "Examples"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:24
+#, no-c-format
+msgid "Sets backend just for life of connection"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:25
+#, no-c-format
+msgid "set postgis.backend = sfcgal;"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:27
+#, no-c-format
+msgid "Sets backend for new connections to database"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:28
+#, no-c-format
+msgid "ALTER DATABASE mygisdb SET postgis.backend = sfcgal;"
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:31 reference_guc.xml:83 reference_guc.xml:170
+#: reference_guc.xml:229
+#, no-c-format
+msgid "See Also"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:38
+#, no-c-format
+msgid "postgis.gdal_datapath"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:39
+#, no-c-format
+msgid ""
+"A configuration option to assign the value of GDAL's GDAL_DATA option. If "
+"not set, the environmentally set GDAL_DATA variable is used."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:46
+#, no-c-format
+msgid ""
+"A PostgreSQL GUC variable for setting the value of GDAL's GDAL_DATA option. "
+"The <varname>postgis.gdal_datapath</varname> value should be the complete "
+"physical path to GDAL's data files."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:49
+#, no-c-format
+msgid ""
+"This configuration option is of most use for Windows platforms where GDAL's "
+"data files path is not hard-coded. This option should also be set when "
+"GDAL's data files are not located in GDAL's expected path."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:54
+#, no-c-format
+msgid ""
+"This option can be set in PostgreSQL's configuration file postgresql.conf. "
+"It can also be set by connection or transaction."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:58 reference_guc.xml:145 reference_guc.xml:212
+#, no-c-format
+msgid "Availability: 2.2.0"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:61
+#, no-c-format
+msgid ""
+"Additional information about GDAL_DATA is available at GDAL's <ulink url="
+"\"http://trac.osgeo.org/gdal/wiki/ConfigOptions\">Configuration Options</"
+"ulink>."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:70
+#, no-c-format
+msgid "Set and reset <varname>postgis.gdal_datapath</varname>"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:72
+#, no-c-format
+msgid ""
+"SET postgis.gdal_datapath TO '/usr/local/share/gdal.hidden';\n"
+"SET postgis.gdal_datapath TO default;"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:77
+#, no-c-format
+msgid "Setting on windows for a particular database"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:78
+#, no-c-format
+msgid ""
+"ALTER DATABASE gisdb\n"
+"SET postgis.gdal_datapath = 'C:/Program Files/PostgreSQL/9.3/gdal-data';"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:84
+#, no-c-format
+msgid "<para>,</para>"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:92
+#, no-c-format
+msgid "postgis.gdal_enabled_drivers"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:93
+#, no-c-format
+msgid ""
+"A configuration option to set the enabled GDAL drivers in the PostGIS "
+"environment. Affects the GDAL configuration variable GDAL_SKIP."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:100
+#, no-c-format
+msgid ""
+"A configuration option to set the enabled GDAL drivers in the PostGIS "
+"environment. Affects the GDAL configuration variable GDAL_SKIP. This option "
+"can be set in PostgreSQL's configuration file: postgresql.conf. It can also "
+"be set by connection or transaction."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:104
+#, no-c-format
+msgid ""
+"The initial value of <varname>postgis.gdal_enabled_drivers</varname> may "
+"also be set by passing the environment variable "
+"<varname>POSTGIS_GDAL_ENABLED_DRIVERS</varname> with the list of enabled "
+"drivers to the process starting PostgreSQL."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:108
+#, no-c-format
+msgid ""
+"Enabled GDAL specified drivers can be specified by the driver's short-name "
+"or code. Driver short-names or codes can be found at <ulink url=\"http://www."
+"gdal.org/formats_list.html\">GDAL Raster Formats</ulink>. Multiple drivers "
+"can be specified by putting a space between each driver."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:113
+#, no-c-format
+msgid ""
+"There are three special codes available for <varname>postgis."
+"gdal_enabled_drivers</varname>. The codes are case-sensitive."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:118
+#, no-c-format
+msgid ""
+"<varname>DISABLE_ALL</varname> disables all GDAL drivers. If present, "
+"<varname>DISABLE_ALL</varname> overrides all other values in "
+"<varname>postgis.gdal_enabled_drivers</varname>."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:121
+#, no-c-format
+msgid "<varname>ENABLE_ALL</varname> enables all GDAL drivers."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:124
+#, no-c-format
+msgid ""
+"<varname>VSICURL</varname> enables GDAL's <varname>/vsicurl/</varname> "
+"virtual file system."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:128
+#, no-c-format
+msgid ""
+"When <varname>postgis.gdal_enabled_drivers</varname> is set to DISABLE_ALL, "
+"attempts to use out-db rasters, ST_FromGDALRaster(), ST_AsGDALRaster(), "
+"ST_AsTIFF(), ST_AsJPEG() and ST_AsPNG() will result in error messages."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:134
+#, no-c-format
+msgid ""
+"In the standard PostGIS installation, <varname>postgis.gdal_enabled_drivers</"
+"varname> is set to DISABLE_ALL."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:140
+#, no-c-format
+msgid ""
+"Additional information about GDAL_SKIP is available at GDAL's <ulink url="
+"\"http://trac.osgeo.org/gdal/wiki/ConfigOptions\">Configuration Options</"
+"ulink>."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:151
+#, no-c-format
+msgid "Set and reset <varname>postgis.gdal_enabled_drivers</varname>"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:153
+#, no-c-format
+msgid ""
+"SET postgis.gdal_enabled_drivers TO 'GTiff PNG JPEG';\n"
+"SET postgis.gdal_enabled_drivers = default;"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:158
+#, no-c-format
+msgid "Enable all GDAL Drivers"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:159
+#, no-c-format
+msgid "SET postgis.gdal_enabled_drivers = 'ENABLE_ALL';"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:163
+#, no-c-format
+msgid "Disable all GDAL Drivers"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:164
+#, no-c-format
+msgid "SET postgis.gdal_enabled_drivers = 'DISABLE_ALL';"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:171
+#, no-c-format
+msgid ""
+", <xref linkend=\"RT_ST_AsGDALRaster\"/>, <xref linkend=\"RT_ST_AsTIFF\"/>, "
+"<xref linkend=\"RT_ST_AsPNG\"/>, <xref linkend=\"RT_ST_AsJPEG\"/>,"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:184
+#, no-c-format
+msgid "postgis.enable_outdb_rasters"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:185
+#, no-c-format
+msgid "A boolean configuration option to enable access to out-db raster bands."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:192
+#, no-c-format
+msgid ""
+"A boolean configuration option to enable access to out-db raster bands. This "
+"option can be set in PostgreSQL's configuration file: postgresql.conf. It "
+"can also be set by connection or transaction."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:196
+#, no-c-format
+msgid ""
+"The initial value of <varname>postgis.enable_outdb_rasters</varname> may "
+"also be set by passing the environment variable "
+"<varname>POSTGIS_ENABLE_OUTDB_RASTERS</varname> with a non-zero value to the "
+"process starting PostgreSQL."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:201
+#, no-c-format
+msgid ""
+"Even if <varname>postgis.enable_outdb_rasters</varname> is True, the GUC "
+"<varname>postgis.enable_outdb_rasters</varname> determines the accessible "
+"raster formats."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:207
+#, no-c-format
+msgid ""
+"In the standard PostGIS installation, <varname>postgis.enable_outdb_rasters</"
+"varname> is set to False."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:218
+#, no-c-format
+msgid "Set and reset <varname>postgis.enable_outdb_rasters</varname>"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:220
+#, no-c-format
+msgid ""
+"SET postgis.enable_outdb_rasters TO True;\n"
+"SET postgis.enable_outdb_rasters = default;\n"
+"SET postgis.enable_outdb_rasters = True;\n"
+"SET postgis.enable_outdb_rasters = False;"
+msgstr ""
diff --git a/doc/po/pt_BR/extras_address_standardizer.xml.po b/doc/po/pt_BR/extras_address_standardizer.xml.po
new file mode 100644 (file)
index 0000000..a777161
--- /dev/null
@@ -0,0 +1,851 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
+"POT-Creation-Date: 2014-10-10 23:07+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Tag: title
+#: extras_address_standardizer.xml:3
+#, no-c-format
+msgid "Address Standardizer"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:4
+#, no-c-format
+msgid ""
+"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>)."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:5
+#, no-c-format
+msgid ""
+"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."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:6
+#, no-c-format
+msgid ""
+"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>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:7
+#, no-c-format
+msgid ""
+"The code for this extension can be found in the PostGIS <filename>extensions/"
+"address_standardizer</filename> and is currently self-contained."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:8
+#, no-c-format
+msgid ""
+"For installation instructions refer to: <xref linkend="
+"\"installing_pagc_address_standardizer\"/>."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:9
+#, no-c-format
+msgid "How the Parser Works"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:10
+#, no-c-format
+msgid ""
+"The parser works from right to left looking first at the macro elements for "
+"postcode, state/province, city, and then looks micro elements to determine "
+"if we are dealing with a house number street or intersection or landmark. It "
+"currently does not look for a country code or name, but that could be "
+"introduced in the future."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:17
+#, no-c-format
+msgid "Country code"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:18
+#, no-c-format
+msgid ""
+"Assumed to be US or CA based on: postcode as US or Canada state/province as "
+"US or Canada else US"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:21
+#, no-c-format
+msgid "Postcode/zipcode"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:22
+#, no-c-format
+msgid ""
+"These are recognized using Perl compatible regular expressions. These regexs "
+"are currently in the parseaddress-api.c and are relatively simple to make "
+"changes to if needed."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:27
+#, no-c-format
+msgid "State/province"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:28
+#, no-c-format
+msgid ""
+"These are recognized using Perl compatible regular expressions. These regexs "
+"are currently in the parseaddress-api.c but could get moved into includes in "
+"the future for easier maintenance."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:37
+#, no-c-format
+msgid ""
+"This section lists the PostgreSQL data types installed by Address "
+"Standardizer extension. Note we describe the casting behavior of these which "
+"is very important especially when designing your own functions."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:42
+#, no-c-format
+msgid "Address Standardizer Types"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:45
+#, no-c-format
+msgid "stdaddr"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:46
+#, no-c-format
+msgid ""
+"A composite type that consists of the elements of an address. This is the "
+"return type for <varname>standardize_address</varname> function."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:49 extras_address_standardizer.xml:152
+#: extras_address_standardizer.xml:214 extras_address_standardizer.xml:256
+#: extras_address_standardizer.xml:314 extras_address_standardizer.xml:373
+#, no-c-format
+msgid "Description"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:50
+#, no-c-format
+msgid ""
+"A composite type that consists of elements of an address. This is the return "
+"type for <xref linkend=\"standardize_address\"/> function. Some descriptions "
+"for elements are borrowed from <ulink url=\"http://www.pagcgeo.org/docs/html/"
+"pagc-12.html#ss12.1\">PAGC Postal Attributes</ulink>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:51
+#, no-c-format
+msgid ""
+"The token numbers denote the reference number in the <varname>rules</"
+"varname> table."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:52 extras_address_standardizer.xml:321
+#: extras_address_standardizer.xml:379
+#, no-c-format
+msgid "&address_standardizer_required;"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:55
+#, no-c-format
+msgid "building"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:57
+#, no-c-format
+msgid ""
+"is text (token number <code>0</code>): Refers to building number or name. "
+"Unparsed building identifiers and types. Generally blank for most addresses."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:60
+#, no-c-format
+msgid "house_num"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:62
+#, no-c-format
+msgid ""
+"is a text (token number <code>1</code>): This is the street number on a "
+"street. Example <emphasis>75</emphasis> in <code>75 State Street</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:65
+#, no-c-format
+msgid "predir"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:66
+#, no-c-format
+msgid ""
+"is text (token number <code>2</code>): STREET NAME PRE-DIRECTIONAL such as "
+"North, South, East, West etc."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:68
+#, no-c-format
+msgid "qual"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:70
+#, no-c-format
+msgid ""
+"is text (token number <code>3</code>): STREET NAME PRE-MODIFIER Example "
+"<emphasis>OLD</emphasis> in <code>3715 OLD HIGHWAY 99</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:73
+#, no-c-format
+msgid "pretype"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:75
+#, no-c-format
+msgid "is text (token number <code>4</code>): STREET PREFIX TYPE"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:78
+#, no-c-format
+msgid "name"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:80
+#, no-c-format
+msgid "is text (token number <code>5</code>): STREET NAME"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:83
+#, no-c-format
+msgid "suftype"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:85
+#, no-c-format
+msgid ""
+"is text (token number <code>6</code>): STREET POST TYPE e.g. St, Ave, Cir. A "
+"street type following the root street name. Example <emphasis>STREET</"
+"emphasis> in <code>75 State Street</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:88
+#, no-c-format
+msgid "sufdir"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:90
+#, no-c-format
+msgid ""
+"is text (token number <code>7</code>): STREET POST-DIRECTIONAL A directional "
+"modifier that follows the street name.. Example <emphasis>WEST</emphasis> in "
+"<code>3715 TENTH AVENUE WEST</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:93
+#, no-c-format
+msgid "ruralroute"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:95
+#, no-c-format
+msgid ""
+"is text (token number <code>8</code>): RURAL ROUTE . Example <emphasis>8</"
+"emphasis> in <code>RR 7</code>."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:98
+#, no-c-format
+msgid "extra"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:100
+#, no-c-format
+msgid "is text: Extra information like Floor number."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:103
+#, no-c-format
+msgid "city"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:105
+#, no-c-format
+msgid "is text (token number <code>10</code>): Example Boston."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:108
+#, no-c-format
+msgid "state"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:110
+#, no-c-format
+msgid ""
+"is text (token number <code>11</code>): Example <code>MASSACHUSETTS</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:113
+#, no-c-format
+msgid "country"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:115
+#, no-c-format
+msgid "is text (token number <code>12</code>): Example <code>USA</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:118
+#, no-c-format
+msgid "postcode"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:120
+#, no-c-format
+msgid ""
+"is text POSTAL CODE (ZIP CODE) (token number <code>13</code>): Example "
+"<code>02109</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:123
+#, no-c-format
+msgid "<term>box</term>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:125
+#, no-c-format
+msgid ""
+"is text POSTAL BOX NUMBER (token number <code>14 and 15</code>): Example "
+"<code>02109</code>"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:128
+#, no-c-format
+msgid "unit"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:130
+#, no-c-format
+msgid ""
+"is text Apartment number or Suite Number (token number <code>17</code>): "
+"Example <emphasis>3B</emphasis> in <code>APT 3B</code>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:141
+#, no-c-format
+msgid ""
+"This section lists the PostgreSQL table formats used by the "
+"address_standardizer for normalizing addresses. Note that these tables do "
+"not need to be named the same as what is referenced here. You can have "
+"different lex, gaz, rules tables for each country for example or for your "
+"custom geocoder. The names of these tables get passed into the address "
+"standardizer functions."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:145
+#, no-c-format
+msgid "Address Standardizer Tables"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:148
+#, no-c-format
+msgid "rules table"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:149
+#, no-c-format
+msgid ""
+"The rules table contains a set of rules that maps address input sequence "
+"tokens to standardized output sequence"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:153
+#, no-c-format
+msgid ""
+"A rules table must have at least the following columns, though you are "
+"allowed to add more for your own uses."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:157 extras_address_standardizer.xml:220
+#: extras_address_standardizer.xml:262
+#, no-c-format
+msgid "<term>id</term>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:159 extras_address_standardizer.xml:222
+#: extras_address_standardizer.xml:264
+#, no-c-format
+msgid "Primary key of table"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:162
+#, no-c-format
+msgid "rule"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:164
+#, no-c-format
+msgid ""
+"text field denoting the rule. Details at <ulink url=\"http://www.pagcgeo.org/"
+"docs/html/pagc-12.html#--r-rec--\">PAGC Address Standardizer Rule records</"
+"ulink>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:165
+#, no-c-format
+msgid ""
+"A rule consists of a set of non-negative integers representing input tokens, "
+"terminated by a -1, followed by an equal number of non-negative integers "
+"representing postal attributes, terminated by a -1, followed by an integer "
+"representing a rule type, followed by an integer representing the rank of "
+"the rule. The rules are ranked from 0 (lowest) to 17 (highest)."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:166
+#, no-c-format
+msgid ""
+"So for example the rule <code>2 0 2 22 3 -1 5 5 6 7 3 -1 2 6</code> maps to "
+"sequence of tokens <emphasis>TYPE NUMBER TYPE DIRECT QUALIF</emphasis> to "
+"the output sequence <emphasis>STREET STREET SUFTYP SUFDIR QUALIF</emphasis>. "
+"The rule is an ARC_C rule of rank 6."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:171
+#, no-c-format
+msgid "Each rule has a rule type which is denoted by one of following:"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:174
+#, no-c-format
+msgid "MACRO_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:176
+#, no-c-format
+msgid "(token number = \"0\"). The class of rules for parsing MACRO clauses."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:180
+#, no-c-format
+msgid "MICRO_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:182
+#, no-c-format
+msgid ""
+"(token number = \"1\"). The class of rules for parsing full MICRO clauses "
+"(ie ARC_C plus CIVIC_C). These rules are not used in the build phase."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:186
+#, no-c-format
+msgid "ARC_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:188
+#, no-c-format
+msgid ""
+"(token number = \"2\"). The class of rules for parsing MICRO clauses, "
+"excluding the HOUSE attribute."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:192
+#, no-c-format
+msgid "CIVIC_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:194
+#, no-c-format
+msgid ""
+"(token number = \"3\"). The class of rules for parsing the HOUSE attribute."
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:198
+#, no-c-format
+msgid "EXTRA_C"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:200
+#, no-c-format
+msgid ""
+"(token number = \"4\"). The class of rules for parsing EXTRA attributes - "
+"attributes excluded from geocoding. These rules are not used in the build "
+"phase."
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:210
+#, no-c-format
+msgid "lex table"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:211
+#, no-c-format
+msgid ""
+"A lex table is used to classify alphanumeric input and associate that input "
+"with (a) input tokens ( See Input Tokens) and (b) standardized "
+"representations."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:215
+#, no-c-format
+msgid ""
+"A lex (short for lexicon) table is used to classify alphanumeric input and "
+"associate that input with <ulink url=\"http://www.pagcgeo.org/docs/html/"
+"pagc-12.html#--i-tok--\">(a) input tokens</ulink> and (b) standardized "
+"representations. Things you will find in these tables are <code>ONE</code> "
+"mapped to stdworkd: <code>1</code>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:217
+#, no-c-format
+msgid "A lex has at least the following columns in the table. You may add"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:225 extras_address_standardizer.xml:267
+#, no-c-format
+msgid "<term>seq</term>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:227 extras_address_standardizer.xml:269
+#, no-c-format
+msgid "integer: definition number?"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:231 extras_address_standardizer.xml:272
+#, no-c-format
+msgid "word"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:233 extras_address_standardizer.xml:274
+#, no-c-format
+msgid "text: the input word"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:236 extras_address_standardizer.xml:277
+#, no-c-format
+msgid "stdword"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:238 extras_address_standardizer.xml:279
+#, no-c-format
+msgid "text: the standardized replacement word"
+msgstr ""
+
+#. Tag: term
+#: extras_address_standardizer.xml:241 extras_address_standardizer.xml:282
+#, no-c-format
+msgid "token"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:243 extras_address_standardizer.xml:284
+#, no-c-format
+msgid ""
+"integer: the kind of word it is. Only if it is used in this context will it "
+"be replaced. Refer to <ulink url=\"http://www.pagcgeo.org/docs/html/pagc-12."
+"html#--i-tok--\">PAGC Tokens</ulink>."
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:252
+#, no-c-format
+msgid "gaz table"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:253
+#, no-c-format
+msgid ""
+"A gaz table is used to standardize place names and associate that input with "
+"(a) input tokens ( See Input Tokens) and (b) standardized representations."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:257
+#, no-c-format
+msgid ""
+"A gaz (short for gazeteer) table is used to classify place names and "
+"associate that input with <ulink url=\"http://www.pagcgeo.org/docs/html/"
+"pagc-12.html#--i-tok--\">(a) input tokens</ulink> and (b) standardized "
+"representations. For example if you are in US, you may load these with State "
+"Names and associated abbreviations."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:259
+#, no-c-format
+msgid ""
+"A gaz table has at least the following columns in the table. You may add "
+"more columns if you wish for your own purposes."
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:295
+#, no-c-format
+msgid "Address Standardizer Functions"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:298
+#, no-c-format
+msgid "parse_address"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:300
+#, no-c-format
+msgid "Takes a 1 line address and breaks into parts"
+msgstr ""
+
+#. Tag: funcprototype
+#: extras_address_standardizer.xml:305
+#, no-c-format
+msgid ""
+"<funcdef>record <function>parse_address</function></funcdef> "
+"<paramdef><type>text </type> <parameter>address</parameter></paramdef>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:316
+#, no-c-format
+msgid ""
+"Returns takes as input an address, and returns a record output consisting of "
+"fields <emphasis>num</emphasis>, <emphasis>street</emphasis>, "
+"<emphasis>street2</emphasis>, <emphasis>address1</emphasis>, <emphasis>city</"
+"emphasis>, <emphasis>state</emphasis>, <emphasis>zip</emphasis>, "
+"<emphasis>zipplus</emphasis>, <emphasis>country</emphasis>."
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:320 extras_address_standardizer.xml:378
+#, no-c-format
+msgid "Availability: 2.2.0"
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:326 extras_address_standardizer.xml:384
+#, no-c-format
+msgid "Examples"
+msgstr ""
+
+#. Tag: programlisting
+#: extras_address_standardizer.xml:328
+#, no-c-format
+msgid ""
+"SELECT num, street, city, zip, zipplus FROM parse_address('1 Devonshire "
+"Place, Boston, MA 02109-1234');\n"
+" num |      street      |  city  |  zip  | zipplus\n"
+"-----+------------------+--------+-------+---------\n"
+" 1   | Devonshire Place | Boston | 02109 | 1234"
+msgstr ""
+
+#. Tag: title
+#: extras_address_standardizer.xml:338 extras_address_standardizer.xml:417
+#, no-c-format
+msgid "See Also"
+msgstr ""
+
+#. Tag: refname
+#: extras_address_standardizer.xml:346
+#, no-c-format
+msgid "standardize_address"
+msgstr ""
+
+#. Tag: refpurpose
+#: extras_address_standardizer.xml:348
+#, no-c-format
+msgid ""
+"Returns an stdaddr form of an input address utilizing lex, gaz, and rule "
+"tables."
+msgstr ""
+
+#. Tag: funcsynopsis
+#: extras_address_standardizer.xml:352
+#, no-c-format
+msgid ""
+"<funcprototype> <funcdef>stdaddr <function>standardize_address</function></"
+"funcdef> <paramdef><type>text </type> <parameter>lextab</parameter></"
+"paramdef> <paramdef><type>text </type> <parameter>gaztab</parameter></"
+"paramdef> <paramdef><type>text </type> <parameter>rultab</parameter></"
+"paramdef> <paramdef><type>text </type> <parameter>address</parameter></"
+"paramdef> </funcprototype> <funcprototype> <funcdef>stdaddr "
+"<function>standardize_address</function></funcdef> <paramdef><type>text </"
+"type> <parameter>lextab</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>gaztab</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>rultab</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>micro</parameter></paramdef> <paramdef><type>text </type> "
+"<parameter>macro</parameter></paramdef> </funcprototype>"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:375
+#, no-c-format
+msgid ""
+"Returns an <xref linkend=\"stdaddr\"/> form of an input address utilizing "
+"<xref linkend=\"lextab\"/> table name, <xref linkend=\"gaztab\"/>, and <xref "
+"linkend=\"rulestab\"/> table names and an address."
+msgstr ""
+
+#. Tag: programlisting
+#: extras_address_standardizer.xml:386
+#, no-c-format
+msgid ""
+"SELECT *  FROM standardize_address('tiger.pagc_lex', \n"
+"                           'tiger.pagc_gaz', 'tiger.pagc_rules', 'One "
+"Devonshire Place, PH 301, Boston, MA 02109-1234');"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:389
+#, no-c-format
+msgid ""
+"Make easier to read we'll dump output using hstore extension CREATE "
+"EXTENSION hstore; you need to install"
+msgstr ""
+
+#. Tag: programlisting
+#: extras_address_standardizer.xml:390
+#, no-c-format
+msgid ""
+"SELECT (each(hstore(p))).*  \n"
+" FROM standardize_address('tiger.pagc_lex', 'tiger.pagc_gaz', \n"
+"   'tiger.pagc_rules', 'One Devonshire Place, PH 301, Boston, MA "
+"02109-1234') As p;"
+msgstr ""
+
+#. Tag: screen
+#: extras_address_standardizer.xml:393
+#, no-c-format
+msgid ""
+"key     |      value\n"
+"------------+-----------------\n"
+" box        |\n"
+" city       | BOSTON\n"
+" name       | DEVONSHIRE\n"
+" qual       |\n"
+" unit       | # PENTHOUSE 301\n"
+" extra      |\n"
+" state      | MA\n"
+" predir     |\n"
+" sufdir     |\n"
+" country    | USA\n"
+" pretype    |\n"
+" suftype    | PL\n"
+" building   |\n"
+" postcode   | 02109\n"
+" house_num  | 1\n"
+" ruralroute |\n"
+"(16 rows)"
+msgstr ""
+
+#. Tag: para
+#: extras_address_standardizer.xml:419
+#, no-c-format
+msgid ""
+", <xref linkend=\"rulestab\"/>, <xref linkend=\"lextab\"/>, <xref linkend="
+"\"gaztab\"/>,"
+msgstr ""
diff --git a/doc/po/pt_BR/reference_guc.xml.po b/doc/po/pt_BR/reference_guc.xml.po
new file mode 100644 (file)
index 0000000..1c099db
--- /dev/null
@@ -0,0 +1,406 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
+"POT-Creation-Date: 2014-10-10 23:07+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Tag: para
+#: reference_guc.xml:5
+#, no-c-format
+msgid ""
+"This section lists custom PostGIS Grand Unified Custom Variables(GUC). These "
+"can be set globally, by database, by session or by transaction. Best set at "
+"global or database level."
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:8
+#, no-c-format
+msgid "PostGIS Grand Unified Custom Variables (GUCs)"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:12
+#, no-c-format
+msgid "postgis.backend"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:13
+#, no-c-format
+msgid ""
+"The backend to service a function where GEOS and SFCGAL overlap. Options: "
+"geos or sfcgal. Defaults to geos."
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:17 reference_guc.xml:45 reference_guc.xml:99
+#: reference_guc.xml:191
+#, no-c-format
+msgid "Description"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:18
+#, no-c-format
+msgid ""
+"This GUC is only relevant if you compiled PostGIS with sfcgal support. By "
+"default <varname>geos</varname> backend is used for functions where both "
+"GEOS and SFCGAL have the same named function. This variable allows you to "
+"override and make sfcgal the backend to service the request."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:19
+#, no-c-format
+msgid "Availability: 2.1.0"
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:23 reference_guc.xml:69 reference_guc.xml:150
+#: reference_guc.xml:217
+#, no-c-format
+msgid "Examples"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:24
+#, no-c-format
+msgid "Sets backend just for life of connection"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:25
+#, no-c-format
+msgid "set postgis.backend = sfcgal;"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:27
+#, no-c-format
+msgid "Sets backend for new connections to database"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:28
+#, no-c-format
+msgid "ALTER DATABASE mygisdb SET postgis.backend = sfcgal;"
+msgstr ""
+
+#. Tag: title
+#: reference_guc.xml:31 reference_guc.xml:83 reference_guc.xml:170
+#: reference_guc.xml:229
+#, no-c-format
+msgid "See Also"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:38
+#, no-c-format
+msgid "postgis.gdal_datapath"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:39
+#, no-c-format
+msgid ""
+"A configuration option to assign the value of GDAL's GDAL_DATA option. If "
+"not set, the environmentally set GDAL_DATA variable is used."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:46
+#, no-c-format
+msgid ""
+"A PostgreSQL GUC variable for setting the value of GDAL's GDAL_DATA option. "
+"The <varname>postgis.gdal_datapath</varname> value should be the complete "
+"physical path to GDAL's data files."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:49
+#, no-c-format
+msgid ""
+"This configuration option is of most use for Windows platforms where GDAL's "
+"data files path is not hard-coded. This option should also be set when "
+"GDAL's data files are not located in GDAL's expected path."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:54
+#, no-c-format
+msgid ""
+"This option can be set in PostgreSQL's configuration file postgresql.conf. "
+"It can also be set by connection or transaction."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:58 reference_guc.xml:145 reference_guc.xml:212
+#, no-c-format
+msgid "Availability: 2.2.0"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:61
+#, no-c-format
+msgid ""
+"Additional information about GDAL_DATA is available at GDAL's <ulink url="
+"\"http://trac.osgeo.org/gdal/wiki/ConfigOptions\">Configuration Options</"
+"ulink>."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:70
+#, no-c-format
+msgid "Set and reset <varname>postgis.gdal_datapath</varname>"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:72
+#, no-c-format
+msgid ""
+"SET postgis.gdal_datapath TO '/usr/local/share/gdal.hidden';\n"
+"SET postgis.gdal_datapath TO default;"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:77
+#, no-c-format
+msgid "Setting on windows for a particular database"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:78
+#, no-c-format
+msgid ""
+"ALTER DATABASE gisdb\n"
+"SET postgis.gdal_datapath = 'C:/Program Files/PostgreSQL/9.3/gdal-data';"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:84
+#, no-c-format
+msgid "<para>,</para>"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:92
+#, no-c-format
+msgid "postgis.gdal_enabled_drivers"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:93
+#, no-c-format
+msgid ""
+"A configuration option to set the enabled GDAL drivers in the PostGIS "
+"environment. Affects the GDAL configuration variable GDAL_SKIP."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:100
+#, no-c-format
+msgid ""
+"A configuration option to set the enabled GDAL drivers in the PostGIS "
+"environment. Affects the GDAL configuration variable GDAL_SKIP. This option "
+"can be set in PostgreSQL's configuration file: postgresql.conf. It can also "
+"be set by connection or transaction."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:104
+#, no-c-format
+msgid ""
+"The initial value of <varname>postgis.gdal_enabled_drivers</varname> may "
+"also be set by passing the environment variable "
+"<varname>POSTGIS_GDAL_ENABLED_DRIVERS</varname> with the list of enabled "
+"drivers to the process starting PostgreSQL."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:108
+#, no-c-format
+msgid ""
+"Enabled GDAL specified drivers can be specified by the driver's short-name "
+"or code. Driver short-names or codes can be found at <ulink url=\"http://www."
+"gdal.org/formats_list.html\">GDAL Raster Formats</ulink>. Multiple drivers "
+"can be specified by putting a space between each driver."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:113
+#, no-c-format
+msgid ""
+"There are three special codes available for <varname>postgis."
+"gdal_enabled_drivers</varname>. The codes are case-sensitive."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:118
+#, no-c-format
+msgid ""
+"<varname>DISABLE_ALL</varname> disables all GDAL drivers. If present, "
+"<varname>DISABLE_ALL</varname> overrides all other values in "
+"<varname>postgis.gdal_enabled_drivers</varname>."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:121
+#, no-c-format
+msgid "<varname>ENABLE_ALL</varname> enables all GDAL drivers."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:124
+#, no-c-format
+msgid ""
+"<varname>VSICURL</varname> enables GDAL's <varname>/vsicurl/</varname> "
+"virtual file system."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:128
+#, no-c-format
+msgid ""
+"When <varname>postgis.gdal_enabled_drivers</varname> is set to DISABLE_ALL, "
+"attempts to use out-db rasters, ST_FromGDALRaster(), ST_AsGDALRaster(), "
+"ST_AsTIFF(), ST_AsJPEG() and ST_AsPNG() will result in error messages."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:134
+#, no-c-format
+msgid ""
+"In the standard PostGIS installation, <varname>postgis.gdal_enabled_drivers</"
+"varname> is set to DISABLE_ALL."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:140
+#, no-c-format
+msgid ""
+"Additional information about GDAL_SKIP is available at GDAL's <ulink url="
+"\"http://trac.osgeo.org/gdal/wiki/ConfigOptions\">Configuration Options</"
+"ulink>."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:151
+#, no-c-format
+msgid "Set and reset <varname>postgis.gdal_enabled_drivers</varname>"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:153
+#, no-c-format
+msgid ""
+"SET postgis.gdal_enabled_drivers TO 'GTiff PNG JPEG';\n"
+"SET postgis.gdal_enabled_drivers = default;"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:158
+#, no-c-format
+msgid "Enable all GDAL Drivers"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:159
+#, no-c-format
+msgid "SET postgis.gdal_enabled_drivers = 'ENABLE_ALL';"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:163
+#, no-c-format
+msgid "Disable all GDAL Drivers"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:164
+#, no-c-format
+msgid "SET postgis.gdal_enabled_drivers = 'DISABLE_ALL';"
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:171
+#, no-c-format
+msgid ""
+", <xref linkend=\"RT_ST_AsGDALRaster\"/>, <xref linkend=\"RT_ST_AsTIFF\"/>, "
+"<xref linkend=\"RT_ST_AsPNG\"/>, <xref linkend=\"RT_ST_AsJPEG\"/>,"
+msgstr ""
+
+#. Tag: refname
+#: reference_guc.xml:184
+#, no-c-format
+msgid "postgis.enable_outdb_rasters"
+msgstr ""
+
+#. Tag: refpurpose
+#: reference_guc.xml:185
+#, no-c-format
+msgid "A boolean configuration option to enable access to out-db raster bands."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:192
+#, no-c-format
+msgid ""
+"A boolean configuration option to enable access to out-db raster bands. This "
+"option can be set in PostgreSQL's configuration file: postgresql.conf. It "
+"can also be set by connection or transaction."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:196
+#, no-c-format
+msgid ""
+"The initial value of <varname>postgis.enable_outdb_rasters</varname> may "
+"also be set by passing the environment variable "
+"<varname>POSTGIS_ENABLE_OUTDB_RASTERS</varname> with a non-zero value to the "
+"process starting PostgreSQL."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:201
+#, no-c-format
+msgid ""
+"Even if <varname>postgis.enable_outdb_rasters</varname> is True, the GUC "
+"<varname>postgis.enable_outdb_rasters</varname> determines the accessible "
+"raster formats."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:207
+#, no-c-format
+msgid ""
+"In the standard PostGIS installation, <varname>postgis.enable_outdb_rasters</"
+"varname> is set to False."
+msgstr ""
+
+#. Tag: para
+#: reference_guc.xml:218
+#, no-c-format
+msgid "Set and reset <varname>postgis.enable_outdb_rasters</varname>"
+msgstr ""
+
+#. Tag: programlisting
+#: reference_guc.xml:220
+#, no-c-format
+msgid ""
+"SET postgis.enable_outdb_rasters TO True;\n"
+"SET postgis.enable_outdb_rasters = default;\n"
+"SET postgis.enable_outdb_rasters = True;\n"
+"SET postgis.enable_outdb_rasters = False;"
+msgstr ""