From 9abf29439391b54c1a8fb08e675931a11589eb2d Mon Sep 17 00:00:00 2001 From: Daniel Baston Date: Tue, 26 Jun 2018 14:55:00 +0000 Subject: [PATCH] Add spaces in documentation Patch from hannes Closes https://gitlab.com/postgis/postgis/merge_requests/10 git-svn-id: http://svn.osgeo.org/postgis/trunk@16624 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/reference_constructor.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/reference_constructor.xml b/doc/reference_constructor.xml index ff550b19f..e2f2a01bf 100644 --- a/doc/reference_constructor.xml +++ b/doc/reference_constructor.xml @@ -1507,7 +1507,7 @@ BOX3D(-989502.1875 528439.5625 10,-987121.375 529933.1875 10) -- For pre-PostgreSQL 9.0 - this usually works, -- but the planner may on occasion choose not to respect the order of the subquery SELECT gps.gps_track, ST_MakeLine(gps.the_geom) As newgeom - FROM (SELECT gps_track,gps_time, the_geom + FROM (SELECT gps_track, gps_time, the_geom FROM gps_points ORDER BY gps_track, gps_time) As gps GROUP BY gps.gps_track; @@ -1748,7 +1748,7 @@ FROM ST_MakePoint - Creates a 2D,3DZ or 4D point geometry. + Creates a 2D, 3DZ or 4D point geometry. @@ -1781,14 +1781,14 @@ FROM Description - Creates a 2D,3DZ or 4D point geometry (geometry with measure). + Creates a 2D, 3DZ or 4D point geometry (geometry with measure). ST_MakePoint while not being OGC compliant is generally faster and more precise than and . It is also easier to use if you have raw coordinates rather than WKT. Note x is longitude and y is latitude - Use if you need to make a point with x,y,m. + Use if you need to make a point with x, y and m. &Z_support; -- 2.40.0