]> granicus.if.org Git - postgis/commitdiff
Fix various misspellings of "geometry"
authorRaúl Marín Rodríguez <rmrodriguez@carto.com>
Fri, 29 Mar 2019 15:56:43 +0000 (15:56 +0000)
committerRaúl Marín Rodríguez <rmrodriguez@carto.com>
Fri, 29 Mar 2019 15:56:43 +0000 (15:56 +0000)
Patch by François Bonzon

Closes https://github.com/postgis/postgis/pull/389

git-svn-id: http://svn.osgeo.org/postgis/trunk@17371 b70326c6-7e19-0410-871a-916f4a2858ee

doc/po/ja/reference_processing.xml.po
doc/reference_accessor.xml
doc/reference_editor.xml
doc/reference_processing.xml
extras/history_table/history_table.sql
extras/ogc_test_suite/1_schema.sql
liblwgeom/liblwgeom.h.in
loader/README.pgsql2shp
regress/core/sql-mm-compoundcurve.sql

index f1075d8f756127c57d120f1b165961b73fc38576..0d908aaa48b7e6dc283b7e9e41d9764b32fd8b5a 100644 (file)
@@ -2672,7 +2672,7 @@ msgstr "ST_DumpPoints"
 msgid ""
 "Returns a set of geometry_dump (geom,path) rows of all points that make up a "
 "geometry."
-msgstr "ジオメトリを作る全ての点のgometry_dump(geom,path)行の集合を返します。"
+msgstr "ジオメトリを作る全ての点のgeometry_dump(geom,path)行の集合を返します。"
 
 #. Tag: funcprototype
 #: reference_processing.xml:1021
index 84e428972b670bc061e45726f8b58ccc174ab7c3..65a125fe482fb5f73854154136b60d72f948d928 100644 (file)
@@ -2151,7 +2151,7 @@ GROUP BY gid, field1,field2;
                <para>>Return the 1-based Nth geometry (face) if the geometry is a
                        POLYHEDRALSURFACE, POLYHEDRALSURFACEM.
                        Otherwise, return NULL.  This  returns the same answer as ST_GeometryN for Polyhedral Surfaces.
-                               Using ST_GemoetryN is faster.</para>
+                               Using ST_GeometryN is faster.</para>
 
                <note>
                  <para>Index is 1-based.</para>
@@ -2265,19 +2265,21 @@ FROM ( VALUES ('LINESTRING(0 0, 1 1, 2 2)'::geometry) ) AS foo;
 (3 rows)
 
 --Example circular string
-SELECT ST_AsText(ST_PointN(ST_GeomFromText('CIRCULARSTRING(1 2, 3 2, 1 2)'),2));
+SELECT ST_AsText(ST_PointN(ST_GeomFromText('CIRCULARSTRING(1 2, 3 2, 1 2)'), 2));
 
-st_astext
-----------
-POINT(3 2)
+ st_astext
+------------
+ POINT(3 2)
+(1 row)
 
-SELECT st_astext(f)
-FROM ST_GeometryFromtext('LINESTRING(0 0 0, 1 1 1, 2 2 2)') as g
-       ,ST_PointN(g, -2) AS f -- 1 based index
+SELECT ST_AsText(f)
+FROM ST_GeomFromText('LINESTRING(0 0 0, 1 1 1, 2 2 2)') AS g
+  ,ST_PointN(g, -2) AS f; -- 1 based index
 
-st_astext
-----------
-"POINT Z (1 1 1)"
+    st_astext
+-----------------
+ POINT Z (1 1 1)
+(1 row)
 
 </programlisting>
          </refsection>
index 6d236bb65e57a1d3e0bf8cdcb9b34609e920b32b..10bdae63f96946d2e85279ebac64235d9e3c4faa 100644 (file)
@@ -1504,7 +1504,7 @@ SELECT ST_AsEWKT(ST_SnapToGrid(ST_GeomFromEWKT('LINESTRING(-1.1115678 2.123 3 2.
                <title>Description</title>
 
                <para>
- Snaps the vertices and segments of a geometry
+ Snaps the vertices and segments of a geometry to
  another Geometry's vertices.
  A snap distance tolerance is used to control where snapping is performed.
   The result geometry is the input geometry with the vertices snapped.
@@ -1573,7 +1573,6 @@ FROM (SELECT
       ( 51 150, 101 150, 76 175, 51 150 )),
       (( 151 100, 151 200, 176 175, 151 100 )))') As poly,
        ST_GeomFromText('LINESTRING (5 107, 54 84, 101 100)') As line
-
        ) As foo;
 
                              polysnapped
@@ -1601,7 +1600,6 @@ FROM (SELECT
       ( 51 150, 101 150, 76 175, 51 150 )),
       (( 151 100, 151 200, 176 175, 151 100 )))') As poly,
        ST_GeomFromText('LINESTRING (5 107, 54 84, 101 100)') As line
-
        ) As foo;
 
                              polysnapped
index ea7a4e0d835e96c64a24863a04fdfc2b1596f367..193e7658251ddb00c66f69b43ceae167cda5cc25 100644 (file)
@@ -3603,11 +3603,11 @@ FROM (SELECT  'POLYGON((0 0, 8 8, 0 16, 0 0))'::geometry geom) As foo;
                <para>Filters away vertex points based on their m-value. Returns a geometry with only
                        vertex points that have a m-value larger or equal to the min value and smaller or equal to
                        the max value. If max-value argument is left out only min value is considered. If fourth argument is left out the m-value
-                       will not be in the resulting geoemtry. If resulting geometry have too few vertex points left for its geometry type an empty
-                       geoemtry will be returned. In a geometry collection
+                       will not be in the resulting geometry. If resulting geometry have too few vertex points left for its geometry type an empty
+                       geometry will be returned. In a geometry collection
                        geometries without enough points will just be left out silently. If </para>
                <para>This function is mainly intended to be used in conjunction with ST_SetEffectiveArea. ST_EffectiveArea sets the effective area
-                       of a vertex in it's m-value. With ST_FilterByM it then is possible to get a simplified version of the geoemtry without any calculations, just by filtering</para>
+                       of a vertex in it's m-value. With ST_FilterByM it then is possible to get a simplified version of the geometry without any calculations, just by filtering</para>
 
                <note><para>There is a difference in what ST_SimplifyVW returns when not enough points meets the creterias compared to ST_FilterByM.
                                ST_SimplifyVW returns the geometry with enough points while ST_FilterByM returns an empty geometry</para></note>
index ac79ca686352435c143121376a7e5929fb6542a7..57e65ceb8d781929052bdbac3b4f691425a5dd0b 100644 (file)
@@ -226,6 +226,6 @@ language 'plpgsql'
 
 /*TODO LIST:
 
-CREATE A FUNCTION THAT WILL DROP A CERTAIN HISTORIC TABLE AND REMOVE ITS ITENS FROM GEOMERTY_COLUMNS AND HISTORIC_INFORMATION
-CREATE A FUNCTION TO POPULATE ALL THE EXISTING RECORDS TO THE HISTORIC TABLE, AS A INSERT
-*/
\ No newline at end of file
+CREATE A FUNCTION THAT WILL DROP A CERTAIN HISTORIC TABLE AND REMOVE ITS ITEMS FROM GEOMETRY_COLUMNS AND HISTORIC_INFORMATION
+CREATE A FUNCTION TO POPULATE ALL THE EXISTING RECORDS TO THE HISTORIC TABLE, AS AN INSERT
+*/
index f865b25e351e2f1ce8525028369dad72049bd5ba..1687e261606fd54d5ec8f7a9169f0a8e9d1da67d 100644 (file)
@@ -508,7 +508,7 @@ CREATE TABLE map_neatlines (
 -- POPULATE GEOMETRY AND FEATURE TABLES
 --
 -- *** ADAPTATION ALERT ***
--- This script DOES NOT make any inserts into a GEOMTERY_COLUMNS table/view.
+-- This script DOES NOT make any inserts into a GEOMETRY_COLUMNS table/view.
 -- Implementers should insert whatever makes this happen in their implementation
 -- below. Furthermore, the inserts below may be replaced by whatever mechanism
 -- may be provided by implementers to insert rows in feature tables such that
index ce5803aff894aca4da9bbfa46b12f82177d24494..f9d60f1bb4bd6682d8308f51e14191e99f71b2dd 100644 (file)
@@ -2061,8 +2061,8 @@ LWGEOM_UNPARSER_RESULT;
 #define TWKB_BBOX 0x01 /* User wants bboxes */
 #define TWKB_SIZE 0x02 /* User wants sizes */
 #define TWKB_ID 0x04 /* User wants id */
-#define TWKB_NO_TYPE 0x10 /* No type because it is a sub geoemtry */
-#define TWKB_NO_ID 0x20 /* No ID because it is a subgeoemtry */
+#define TWKB_NO_TYPE 0x10 /* No type because it is a sub geometry */
+#define TWKB_NO_ID 0x20 /* No ID because it is a subgeometry */
 #define TWKB_DEFAULT_PRECISION 0 /* Aim for 1m (or ft) rounding by default */
 
 /*
index 06d74dafc268af48105cead0cb76fc1fc3dc5626..4f536285d13ceabc1c2f1ccb44ea4e48fd838f63 100644 (file)
@@ -53,8 +53,8 @@ OPTIONS
               this  will reduce the likelihood of coordinate drift due to con-
               version to and from WKT format. Coordinate drifts will not occur
               with  PostGIS  1.0.0  and  newer  versions.  It will be slightly
-              faster, but might fail if any NON-gemetry column lacks a cast to
-              text.
+              faster, but might fail if any  NON-geometry  column lacks a cast
+              to text.
 
        -r     Raw mode. Do not drop the gid field, or escape column names.
 
index d287ff9ebe6ae99311e852cd70eb2e42104b0eef..8aaff2d5b3a9d9d4d5a24a917ed41f7a1aa54b1a 100644 (file)
@@ -159,10 +159,10 @@ UPDATE public.compoundcurve
                         2 0,
                         0 0))');
 
-SELECT 'astext01', ST_Astext(the_geom_2d) FROM public.compoundcurve;
-SELECT 'astext02', ST_Astext(the_geom_3dm) FROM public.compoundcurve;
-SELECT 'astext03', ST_Astext(the_geom_3dz) FROM public.compoundcurve;
-SELECT 'astext04', ST_Astext(the_geom_4d) FROM public.compoundcurve;
+SELECT 'astext01', ST_AsText(the_geom_2d) FROM public.compoundcurve;
+SELECT 'astext02', ST_AsText(the_geom_3dm) FROM public.compoundcurve;
+SELECT 'astext03', ST_AsText(the_geom_3dz) FROM public.compoundcurve;
+SELECT 'astext04', ST_AsText(the_geom_4d) FROM public.compoundcurve;
 
 SELECT 'asewkt01', ST_Asewkt(the_geom_2d) FROM public.compoundcurve;
 SELECT 'asewkt02', ST_Asewkt(the_geom_3dm) FROM public.compoundcurve;