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