[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-514-g1e76b0001

git at osgeo.org git at osgeo.org
Thu Feb 10 09:04:36 PST 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  1e76b00013f979c52c3b2e639b77018290dfb1e0 (commit)
      from  adc5b5d18e906698342553d378a966a4bc7f78eb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1e76b00013f979c52c3b2e639b77018290dfb1e0
Author: Martin Davis <mtnclimb at gmail.com>
Date:   Thu Feb 10 09:04:31 2022 -0800

    Improve doc SRS section even more

diff --git a/doc/using_postgis_dataman.xml b/doc/using_postgis_dataman.xml
index c9d3c11bb..8d7f6ea7e 100644
--- a/doc/using_postgis_dataman.xml
+++ b/doc/using_postgis_dataman.xml
@@ -1340,24 +1340,28 @@ SELECT valid, reason, ST_AsText(location) AS location
      </para>
 	<itemizedlist>
 		<listitem><para>A <emphasis role="bold">geodetic</emphasis> SRS uses angular coordinates
-        (longitude and latitude)
-        which map directly to the surface of the earth.
+            (longitude and latitude) which map directly to the surface of the earth.
             </para></listitem>
 		<listitem><para>A <emphasis role="bold">projected</emphasis> SRS
-        uses a mathematical projection transformation
-        to "flatten" the surface of the spheroidal earth.
-        It assigns location coordinates in a way that allows direct measurement
-        of metrics such as distance, area, and angle.
+            uses a mathematical projection transformation
+            to "flatten" the surface of the spheroidal earth onto a plane.
+            It assigns location coordinates in a way that allows direct measurement
+            of quantities such as distance, area, and angle.
+            The coordinate system is Cartesian, which means it has a defined origin point
+            and two perpendicular axes (usually oriented North and East).
+            Each projected SRS uses a stated length unit (usually metres or feet).
+            A projected SRS may be limited in its area of applicability to avoid distortion
+            and fit within the defined coordinate bounds.
             </para></listitem>
 		<listitem><para>A <emphasis role="bold">local</emphasis> SRS
-        is a Cartesian coordinate system which is not referenced to the earth's surface.
-        In PostGIS this is specified by a SRID value of 0.
+            is a Cartesian coordinate system which is not referenced to the earth's surface.
+            In PostGIS this is specified by a SRID value of 0.
             </para></listitem>
 	</itemizedlist>
     <para>
     There are many different spatial reference systems in use.
-    Many common SRSes are standardized by the
-    European Petroleum Survey Group in their
+    Common SRSes are standardized in the
+    European Petroleum Survey Group
     <ulink url="http://www.epsg.org/">EPSG database</ulink>.
     For convenience PostGIS (and many other spatial systems) refers to SRS
     definitions using an integer identifier called a SRID.
@@ -1365,11 +1369,10 @@ SELECT valid, reason, ST_AsText(location) AS location
 
     <para>A geometry is associated with a Spatial Reference System by its SRID value,
     which is accessed by <xref linkend="ST_SRID" />.
-    The SRID can be assigned to a geometry using <xref linkend="ST_SetSRID" />.
+    The SRID for a geometry can be assigned using <xref linkend="ST_SetSRID" />.
     Some geometry constructor functions allow supplying a SRID
     (such as <xref linkend="ST_Point" />  and <xref linkend="ST_MakeEnvelope" />).
-    A SRID can be specified in the EWKT format with the
-    <code>SRID=n;</code> prefix.
+    The <link linkend="EWKB_EWKT">EWKT</link> format supports SRIDs with the <code>SRID=n;</code> prefix.
     </para>
 
     <para>
@@ -1379,6 +1382,7 @@ SELECT valid, reason, ST_AsText(location) AS location
     require that the input geometries are in the same spatial reference system (have the same SRID).
     Geometry data can be transformed into a different spatial reference system using
     <xref linkend="ST_Transform" />.
+    Geometry returned from functions has the same SRS as the input geometries.
     </para>
 
 	<sect2 id="spatial_ref_sys_table">
@@ -1457,7 +1461,7 @@ SELECT valid, reason, ST_AsText(location) AS location
 ]</programlisting>
 
 			<para>For a discussion of SRS WKT, see the OGC standard <ulink
-			url="https://www.ogc.org/standards/wkt-crs">Well-known text representation of coordinate reference systems</ulink>.
+			url="http://docs.opengeospatial.org/is/12-063r5/12-063r5.html">Well-known text representation of coordinate reference systems</ulink>.
             </para>
 		  </listitem>
 		</varlistentry>

-----------------------------------------------------------------------

Summary of changes:
 doc/using_postgis_dataman.xml | 32 ++++++++++++++++++--------------
 1 file changed, 18 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list