topology.AsGML: Use Long CRS for pointProperty and curveProperty [RT-SIGTA]

git-svn-id: http://svn.osgeo.org/postgis/trunk@6692 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Sandro Santilli 2011-01-22 16:10:04 +00:00
parent 7642bcc6ee
commit f42cad53e3

View file

@ -41,7 +41,7 @@ BEGIN
IF point IS NOT NULL THEN
gml = gml || '>'
|| '<gml:pointProperty>'
|| ST_AsGML(3, point)
|| ST_AsGML(3, point, 15, 1)
|| '</gml:pointProperty>'
|| '</gml:Node>';
ELSE
@ -91,7 +91,7 @@ BEGIN
IF line IS NOT NULL THEN
gml = gml || '<gml:curveProperty>'
|| ST_AsGML(3, line)
|| ST_AsGML(3, line, 15, 1)
|| '</gml:curveProperty>';
END IF;