]> granicus.if.org Git - postgis/commitdiff
style only change: remove trailing spaces
authorSandro Santilli <strk@keybit.net>
Wed, 15 Jun 2016 09:49:39 +0000 (09:49 +0000)
committerSandro Santilli <strk@keybit.net>
Wed, 15 Jun 2016 09:49:39 +0000 (09:49 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@14948 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference_editor.xml

index 7449d6342af6663d20c63eb21f68d58cac3cd43f..58339c80976f90baefd875c4e2e5ecfdf331cb8c 100644 (file)
@@ -476,7 +476,7 @@ SELECT  ST_AsEWKT(ST_Force4D('MULTILINESTRINGM((0 0 1,0 5 2,5 0 3,0 0 4),(1 1 1,
                <para>Enhanced: 2.0.0 support for Polyhedral surfaces was introduced.</para>
                <para>Availability: 1.2.2, prior to 1.3.4 this function will crash with Curves.  This is fixed in 1.3.4+</para>
                <para>Changed: 2.1.0. Up to 2.0.x this was called ST_Force_Collection.</para>
-               
+
                <para>&P_support;</para>
                <para>&Z_support;</para>
                <para>&curve_support;</para>
@@ -502,7 +502,7 @@ SELECT  ST_AsEWKT(ST_ForceCollection('POLYGON((0 0 1,0 5 1,5 0 1,0 0 1),(1 1 1,3
 (1 row)
 
                </programlisting>
-               
+
                <programlisting>
 -- POLYHEDRAL example --
 SELECT ST_AsEWKT(ST_ForceCollection('POLYHEDRALSURFACE(((0 0 0,0 0 1,0 1 1,0 1 0,0 0 0)),
@@ -763,10 +763,10 @@ Only points, lines and polygons are supported. Type numbers are 1 == POINT, 2 ==
 
                        <note><para>
 Prior to 1.5.3 this function returned non-collection inputs untouched, no matter type.
-In 1.5.3 non-matching single geometries result in a NULL return. 
+In 1.5.3 non-matching single geometries result in a NULL return.
 In of 2.0.0 every case of missing match results in a typed EMPTY return.
                        </para></note>
-                       
+
                        <warning><para>When specifying 3 == POLYGON a multipolygon is returned even when the edges are shared.  This results in an invalid multipolygon for many cases
                        such as applying this function on an <xref linkend="ST_Split" /> result.</para></warning>
 
@@ -794,7 +794,7 @@ MULTILINESTRING((0 0, 1 1), (2 2, 3 3))
                        <para><xref linkend="ST_Multi" />, <xref linkend="ST_Dump" />, <xref linkend="ST_CollectionHomogenize" /></para>
                </refsection>
        </refentry>
-       
+
                <refentry id="ST_CollectionHomogenize">
                        <refnamediv>
                                <refname>ST_CollectionHomogenize</refname>
@@ -819,27 +819,27 @@ MULTILINESTRING((0 0, 1 1), (2 2, 3 3))
                                <para>
                                        Given a geometry collection, returns the "simplest" representation of the contents.  Singletons will be returned as singletons.  Collections that are homogeneous will be returned as the appropriate multi-type.
                                </para>
-                               
+
                                <warning><para>When specifying 3 == POLYGON a multipolygon is returned even when the edges are shared.  This results in an invalid multipolygon for many cases
                        such as applying this function on an <xref linkend="ST_Split" /> result.</para></warning>
 
 
                                <para>Availability: 2.0.0</para>
-                               
+
                        </refsection>
 
                        <refsection>
                                <title>Examples</title>
 
                                <programlisting>
-  SELECT ST_AsText(ST_CollectionHomogenize('GEOMETRYCOLLECTION(POINT(0 0))')); 
+  SELECT ST_AsText(ST_CollectionHomogenize('GEOMETRYCOLLECTION(POINT(0 0))'));
 
        st_astext
        ------------
         POINT(0 0)
        (1 row)
 
-  SELECT ST_AsText(ST_CollectionHomogenize('GEOMETRYCOLLECTION(POINT(0 0),POINT(1 1))'));      
+  SELECT ST_AsText(ST_CollectionHomogenize('GEOMETRYCOLLECTION(POINT(0 0),POINT(1 1))'));
 
        st_astext
        ---------------------
@@ -852,8 +852,8 @@ MULTILINESTRING((0 0, 1 1), (2 2, 3 3))
                                <title>See Also</title>
                                <para><xref linkend="ST_Multi" />, <xref linkend="ST_CollectionExtract" /></para>
                        </refsection>
-               </refentry>     
-       
+               </refentry>
+
        <refentry id="ST_Multi">
                <refnamediv>
                        <refname>ST_Multi</refname>
@@ -1019,7 +1019,7 @@ LINESTRING(1 2,1 10) | LINESTRING(1 10,1 2)
                <para>&curve_support;</para>
                <para>&P_support;</para>
                <para>&T_support;</para>
-               
+
          </refsection>
 
 
@@ -1139,11 +1139,11 @@ SELECT ST_AsEWKT(ST_RotateX(ST_GeomFromEWKT('LINESTRING(1 2 3, 1 1 1)'), pi()/2)
 
                <para>Availability: 1.1.2. Name changed from RotateY to ST_RotateY in 1.2.2</para>
                <para>Enhanced: 2.0.0 support for Polyhedral surfaces, Triangles and TIN was introduced.</para>
-               
+
                <para>&P_support;</para>
                <para>&Z_support;</para>
                <para>&T_support;</para>
-               
+
          </refsection>
 
 
@@ -1194,7 +1194,7 @@ SELECT ST_AsEWKT(ST_RotateX(ST_GeomFromEWKT('LINESTRING(1 2 3, 1 1 1)'), pi()/2)
                        is short-hand for <code>SELECT ST_Affine(geomA,  cos(rotRadians), -sin(rotRadians), 0,  sin(rotRadians), cos(rotRadians), 0,  0, 0, 1,  0, 0, 0)</code>.</para></note>
 
                <para>Enhanced: 2.0.0 support for Polyhedral surfaces, Triangles and TIN was introduced.</para>
-               
+
                <para>Availability: 1.1.2. Name changed from RotateZ to ST_RotateZ in 1.2.2</para>
                <note><para>Prior to 1.3.4, this function crashes if used with geometries that contain CURVES.  This is fixed in 1.3.4+</para></note>
 
@@ -1444,7 +1444,7 @@ LINESTRING(-1 2 3,-1 3 4,-1 1 3)
 
 SELECT ST_AsText(ST_SetPoint(g, -3, p))
 FROM ST_GEomFromText('LINESTRING(0 0, 1 1, 2 2, 3 3, 4 4)') AS g
-       , ST_PointN(g,1) as p; 
+       , ST_PointN(g,1) as p;
           st_astext
 -----------------------
 LINESTRING(0 0,1 1,0 0,3 3,4 4)
@@ -1494,7 +1494,7 @@ LINESTRING(0 0,1 1,0 0,3 3,4 4)
                <para>&sfs_compliant;</para>
                <para>&curve_support;</para>
          </refsection>
-         
+
          <refsection>
                        <title>Examples</title>
                        <para>-- Mark a point as WGS 84 long lat --</para>
@@ -1697,14 +1697,14 @@ SELECT ST_AsEWKT(ST_SnapToGrid(ST_GeomFromEWKT('LINESTRING(-1.1115678 2.123 3 2.
                <note>
                  <para>
                  The returned geometry might lose its simplicity (see
-                 <xref linkend="ST_IsSimple" />) and validity (see 
+                 <xref linkend="ST_IsSimple" />) and validity (see
                  <xref linkend="ST_IsValid" />).
                  </para>
                </note>
 
                <para>Availability: 2.0.0 requires GEOS &gt;= 3.3.0.</para>
          </refsection>
-         
+
          <refsection>
                <title>Examples</title>
                        <informaltable>
@@ -1730,19 +1730,19 @@ SELECT ST_AsEWKT(ST_SnapToGrid(ST_GeomFromEWKT('LINESTRING(-1.1115678 2.123 3 2.
                                                          <imageobject>
                                                                <imagedata fileref="images/st_snap02.png" />
                                                          </imageobject>
-                                                         <caption><para>A multipolygon snapped to linestring to tolerance: 1.01 of distance. 
+                                                         <caption><para>A multipolygon snapped to linestring to tolerance: 1.01 of distance.
                                                          The new multipolygon is shown with reference linestring</para></caption>
                                                        </mediaobject>
                                                  </informalfigure>
                                <programlisting>
 SELECT ST_AsText(ST_Snap(poly,line, ST_Distance(poly,line)*1.01)) AS polysnapped
-FROM (SELECT 
+FROM (SELECT
    ST_GeomFromText('MULTIPOLYGON(
      ((26 125, 26 200, 126 200, 126 125, 26 125 ),
-      ( 51 150, 101 150, 76 175, 51 150 )), 
+      ( 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
@@ -1756,7 +1756,7 @@ FROM (SELECT
                                                          <imageobject>
                                                                <imagedata fileref="images/st_snap04.png" />
                                                          </imageobject>
-                                                         <caption><para>A multipolygon snapped to linestring to tolerance: 1.25 of distance. 
+                                                         <caption><para>A multipolygon snapped to linestring to tolerance: 1.25 of distance.
                                                          The new multipolygon is shown with reference linestring</para></caption>
                                                        </mediaobject>
                                                  </informalfigure>
@@ -1764,13 +1764,13 @@ FROM (SELECT
 SELECT ST_AsText(
     ST_Snap(poly,line, ST_Distance(poly,line)*1.25)
   ) AS polysnapped
-FROM (SELECT 
+FROM (SELECT
   ST_GeomFromText('MULTIPOLYGON(
     (( 26 125, 26 200, 126 200, 126 125, 26 125 ),
       ( 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
@@ -1786,7 +1786,7 @@ MULTIPOLYGON(((5 107,26 200,126 200,126 125,101 100,54 84,5 107),
                                                          <imageobject>
                                                                <imagedata fileref="images/st_snap03.png" />
                                                          </imageobject>
-                                                         <caption><para>The linestring snapped to the original multipolygon  at tolerance 1.01 of distance. 
+                                                         <caption><para>The linestring snapped to the original multipolygon  at tolerance 1.01 of distance.
                                                          The new linestring is shown with reference multipolygon</para></caption>
                                                        </mediaobject>
                                                  </informalfigure>
@@ -1794,10 +1794,10 @@ MULTIPOLYGON(((5 107,26 200,126 200,126 125,101 100,54 84,5 107),
 SELECT ST_AsText(
    ST_Snap(line, poly, ST_Distance(poly,line)*1.01)
   ) AS linesnapped
-FROM (SELECT 
+FROM (SELECT
   ST_GeomFromText('MULTIPOLYGON(
      ((26 125, 26 200, 126 200, 126 125, 26 125),
-      (51 150, 101 150, 76 175, 51 150 )), 
+      (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;
@@ -1813,7 +1813,7 @@ FROM (SELECT
                                                          <imageobject>
                                                                <imagedata fileref="images/st_snap05.png" />
                                                          </imageobject>
-                                                         <caption><para>The linestring snapped to the original multipolygon  at tolerance 1.25 of distance. 
+                                                         <caption><para>The linestring snapped to the original multipolygon  at tolerance 1.25 of distance.
                                                          The new linestring is shown with reference multipolygon</para></caption>
                                                        </mediaobject>
                                                  </informalfigure>
@@ -1821,12 +1821,12 @@ FROM (SELECT
 SELECT ST_AsText(
  ST_Snap(line, poly, ST_Distance(poly,line)*1.25)
   ) AS linesnapped
-FROM (SELECT 
+FROM (SELECT
   ST_GeomFromText('MULTIPOLYGON(
      (( 26 125, 26 200, 126 200, 126 125, 26 125 ),
-      (51 150, 101 150, 76 175, 51 150 )), 
+      (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   
+       ST_GeomFromText('LINESTRING (5 107, 54 84, 101 100)') As line
        ) As foo;
               linesnapped
 ---------------------------------------
@@ -1892,7 +1892,7 @@ LINESTRING(26 125,54 84,101 100)
          <refsection>
                <title>Description</title>
 
-        <para>Returns a new geometry with its coordinates transformed to 
+        <para>Returns a new geometry with its coordinates transformed to
             a different spatial reference system. The destination spatial
                        reference <varname>to_srid</varname> may be identified by a valid
                        SRID integer parameter (i.e. it must exist in the
@@ -1900,12 +1900,12 @@ LINESTRING(26 125,54 84,101 100)
                        Alternatively, a spatial reference defined as a PROJ.4 string
                        can be used for <varname>to_proj</varname> and/or
                        <varname>from_proj</varname>, however these methods are not
-                       optimized. If the destination spatial reference system is 
+                       optimized. If the destination spatial reference system is
                        expressed with a PROJ.4 string instead of an SRID, the SRID of the
                        output geometry will be set to zero. With the exception of functions with
                        <varname>from_proj</varname>, input geometries must have a defined SRID.
                </para>
-           
+
                <para>ST_Transform is often confused with ST_SetSRID().  ST_Transform actually changes the coordinates
                of a geometry from one spatial reference system to another, while ST_SetSRID() simply changes the SRID identifier of
                the geometry.</para>
@@ -1982,7 +1982,7 @@ CREATE INDEX idx_the_geom_26986_parcels
  --------------------------------------------------------------------------------
   POLYGON((-170 74.053793645338,-141 73.4268621378904,-141 68,-170 68,-170 74.053793645338))
                </programlisting>
+
          </refsection>
          <refsection>
                <title>Configuring transformation behaviour</title>