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