[SCM] PostGIS branch master updated. 3.4.0rc1-767-gdc000e90e
git at osgeo.org
git at osgeo.org
Tue Nov 14 01:02:07 PST 2023
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 dc000e90e42a2cd85cef46ecb12b82c41f5d1a16 (commit)
from 78deea3f9bff7c384344fd8cb4056945b28b9337 (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 dc000e90e42a2cd85cef46ecb12b82c41f5d1a16
Author: wangdapeng <345731923 at qq.com>
Date: Fri Nov 10 12:25:10 2023 +0800
Add gml namespace in ST_GeomFromGML example
Missing namespace definition will cause a warning
See https://github.com/postgis/postgis/pull/751
diff --git a/doc/reference_input.xml b/doc/reference_input.xml
index 9c626d44f..62ce603dc 100644
--- a/doc/reference_input.xml
+++ b/doc/reference_input.xml
@@ -1585,7 +1585,8 @@ SELECT ST_AsText(ST_GeomFromGeoHash('9qqj7nmxncgyy4d0dbxqz0', 10));
<title>Examples - A single geometry with srsName</title>
<programlisting><![CDATA[
SELECT ST_GeomFromGML($$
- <gml:LineString srsName="EPSG:4269">
+ <gml:LineString xmlns:gml="http://www.opengis.net/gml"
+ srsName="EPSG:4269">
<gml:coordinates>
-71.16028,42.258729 -71.160837,42.259112 -71.161143,42.25932
</gml:coordinates>
@@ -1619,7 +1620,7 @@ $$);
<title>Examples - Polyhedral Surface</title>
<programlisting><![CDATA[
SELECT ST_AsEWKT(ST_GeomFromGML('
-<gml:PolyhedralSurface>
+<gml:PolyhedralSurface xmlns:gml="http://www.opengis.net/gml">
<gml:polygonPatches>
<gml:PolygonPatch>
<gml:exterior>
-----------------------------------------------------------------------
Summary of changes:
doc/reference_input.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list