Schema
topology
Owner
albenard
Descriptions
args: tg, nsprefix_in - Returns the GML representation of a topogeometry.
Options
Option | Value |
---|---|
Returns |
text |
Language |
sql |
Parameters |
tg topology.topogeometry nsprefix text |
Definition
CREATE OR REPLACE FUNCTION topology.asgml (
tg topology.topogeometry,
nsprefix text
)
RETURNS text AS
$span$
SELECT topology.AsGML($1, $2, 15, 1, NULL);
$span$
LANGUAGE 'sql'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION topology.asgml(tg topology.topogeometry, nsprefix text)
IS 'args: tg, nsprefix_in - Returns the GML representation of a topogeometry.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |