pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: st_askml

 

 

Schema

public

 

Owner

albenard

 

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 public
._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 26/02/2014 11:51
Previous topic Chapter index Next topic