1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
# 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: 2018-07-21 17:36+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: para
#: reference_type.xml:5
#, no-c-format
msgid ""
"This section lists the PostgreSQL data types installed by PostGIS. Note we "
"describe the casting behavior of these which is very important especially "
"when designing your own functions."
msgstr ""
#. Tag: para
#: reference_type.xml:8
#, no-c-format
msgid ""
"A Cast is when one type is coerced into another type. PostgreSQL is unique "
"from most databases in that it allows you to define casting behavior for "
"custom types and the functions used for casting. A cast can be specified as "
"automatic in which case, you do not have to do a CAST(myfoo As otherfootype) "
"or myfoo::otherfootype if you are feeding it to a function that only works "
"with otherfootype and there is an automatic cast in place for it."
msgstr ""
#. Tag: para
#: reference_type.xml:13
#, no-c-format
msgid ""
"The danger of relying on automatic cast behavior is when you have an "
"overloaded function say one that takes a box2d and one that takes a box3d "
"but no geometry. What happens is that both functions are equally good to use "
"with geometry since geometry has an autocast for both -- so you end up with "
"an ambiguous function error. To force PostgreSQL to choose, you do a "
"CAST(mygeom As box3d) or mygeom::box3d."
msgstr ""
#. Tag: para
#: reference_type.xml:17
#, no-c-format
msgid ""
"<emphasis>At least as of PostgreSQL 8.3</emphasis> - Everything can be CAST "
"to text (presumably because of the magical unknown type), so no defined "
"CASTS for that need to be present for you to CAST an object to text."
msgstr ""
#. Tag: title
#: reference_type.xml:20
#, no-c-format
msgid "PostgreSQL PostGIS Geometry/Geography/Box Types"
msgstr ""
#. Tag: refname
#: reference_type.xml:24
#, no-c-format
msgid "<refname>box2d</refname>"
msgstr ""
#. Tag: refpurpose
#: reference_type.xml:25
#, no-c-format
msgid ""
"A box composed of x min, ymin, xmax, ymax. Often used to return the 2d "
"enclosing box of a geometry."
msgstr ""
#. Tag: title
#: reference_type.xml:29 reference_type.xml:40 reference_type.xml:79
#: reference_type.xml:137 reference_type.xml:156
#, no-c-format
msgid "Description"
msgstr ""
#. Tag: para
#: reference_type.xml:30
#, no-c-format
msgid ""
"box2d is a spatial data type used to represent the enclosing box of a "
"geometry or set of geometries. ST_Extent in earlier versions prior to "
"PostGIS 1.4 would return a box2d."
msgstr ""
#. Tag: refname
#: reference_type.xml:35
#, no-c-format
msgid "<refname>box3d</refname>"
msgstr ""
#. Tag: refpurpose
#: reference_type.xml:36
#, no-c-format
msgid ""
"A box composed of x min, ymin, zmin, xmax, ymax, zmax. Often used to return "
"the 3d extent of a geometry or collection of geometries."
msgstr ""
#. Tag: para
#: reference_type.xml:41
#, no-c-format
msgid ""
"box3d is a postgis spatial data type used to represent the enclosing box of "
"a geometry or set of geometries. ST_3DExtent returns a box3d object."
msgstr ""
#. Tag: title
#: reference_type.xml:45 reference_type.xml:85 reference_type.xml:161
#, no-c-format
msgid "Casting Behavior"
msgstr ""
#. Tag: para
#: reference_type.xml:46 reference_type.xml:86 reference_type.xml:162
#, no-c-format
msgid ""
"This section lists the automatic as well as explicit casts allowed for this "
"data type"
msgstr ""
#. Tag: entry
#: reference_type.xml:51 reference_type.xml:91 reference_type.xml:167
#, no-c-format
msgid "Cast To"
msgstr ""
#. Tag: entry
#: reference_type.xml:52 reference_type.xml:92 reference_type.xml:168
#, no-c-format
msgid "Behavior"
msgstr ""
#. Tag: entry
#: reference_type.xml:55 reference_type.xml:95
#, no-c-format
msgid "<entry>box</entry>"
msgstr ""
#. Tag: entry
#: reference_type.xml:56 reference_type.xml:60 reference_type.xml:64
#: reference_type.xml:96 reference_type.xml:100 reference_type.xml:104
#: reference_type.xml:108 reference_type.xml:112 reference_type.xml:116
#, no-c-format
msgid "automatic"
msgstr ""
#. Tag: entry
#: reference_type.xml:59 reference_type.xml:99
#, no-c-format
msgid "<entry>box2d</entry>"
msgstr ""
#. Tag: entry
#: reference_type.xml:63 reference_type.xml:171
#, no-c-format
msgid "<entry>geometry</entry>"
msgstr ""
#. Tag: refname
#: reference_type.xml:74
#, no-c-format
msgid "<refname>geometry</refname>"
msgstr ""
#. Tag: refpurpose
#: reference_type.xml:75
#, no-c-format
msgid "Planar spatial data type."
msgstr ""
#. Tag: para
#: reference_type.xml:80
#, no-c-format
msgid ""
"geometry is a fundamental PostGIS spatial data type used to represent a "
"feature in the Euclidean coordinate system."
msgstr ""
#. Tag: para
#: reference_type.xml:81
#, no-c-format
msgid ""
"All spatial operations on geometry are using units of the Spatial Reference "
"System the geomtry is in."
msgstr ""
#. Tag: entry
#: reference_type.xml:103
#, no-c-format
msgid "<entry>box3d</entry>"
msgstr ""
#. Tag: entry
#: reference_type.xml:107
#, no-c-format
msgid "bytea"
msgstr ""
#. Tag: entry
#: reference_type.xml:111
#, no-c-format
msgid "<entry>geography</entry>"
msgstr ""
#. Tag: entry
#: reference_type.xml:115
#, no-c-format
msgid "text"
msgstr ""
#. Tag: title
#: reference_type.xml:124 reference_type.xml:144 reference_type.xml:180
#, no-c-format
msgid "See Also"
msgstr ""
#. Tag: refname
#: reference_type.xml:131
#, no-c-format
msgid "geometry_dump"
msgstr ""
#. Tag: refpurpose
#: reference_type.xml:132
#, no-c-format
msgid ""
"A spatial datatype with two fields - geom (holding a geometry object) and "
"path[] (a 1-d array holding the position of the geometry within the dumped "
"object.)"
msgstr ""
#. Tag: para
#: reference_type.xml:138
#, no-c-format
msgid ""
"geometry_dump is a compound data type consisting of a geometry object "
"referenced by the .geom field and path[] a 1-dimensional integer array "
"(starting at 1 e.g. path[1] to get first element) array that defines the "
"navigation path within the dumped geometry to find this element. It is used "
"by the ST_Dump* family of functions as an output type to explode a more "
"complex geometry into its constituent parts and location of parts."
msgstr ""
#. Tag: refname
#: reference_type.xml:151
#, no-c-format
msgid "<refname>geography</refname>"
msgstr ""
#. Tag: refpurpose
#: reference_type.xml:152
#, no-c-format
msgid "Ellipsoidal spatial data type."
msgstr ""
#. Tag: para
#: reference_type.xml:157
#, no-c-format
msgid ""
"geography is a spatial data type used to represent a feature in the round-"
"earth coordinate system."
msgstr ""
#. Tag: entry
#: reference_type.xml:172
#, no-c-format
msgid "explicit"
msgstr ""
#. Tag: para
#: reference_type.xml:181
#, no-c-format
msgid ", <xref linkend=\"PostGIS_Geography\"/>"
msgstr ""
|