Schema
Owner
postgres
Descriptions
args: geog, maxdecimaldigits=15, options=0 - Return the geometry as a GML version 2 or 3 element.
Options
Option | Value |
---|---|
Returns |
text |
Language |
sql |
Parameters |
geog public.geography maxdecimaldigits integer = 15 options integer = 0 |
Definition
CREATE OR REPLACE FUNCTION public.st_asgml (
geog public.geography,
maxdecimaldigits integer = 15,
options integer = 0
)
RETURNS text AS
$span$
SELECT _ST_AsGML(2, $1, $2, $3, null, null)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_asgml(geog public.geography, maxdecimaldigits integer, options integer)
IS 'args: geog, maxdecimaldigits=15, options=0 - Return the geometry as a GML version 2 or 3 element.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |