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

Function: asgml

 

 

Schema

topology

 

Owner

albenard

 

Descriptions

args: tg, visitedTable - Returns the GML representation of a topogeometry.

 

Options

Option

Value

Returns

text

Language

sql

Parameters

tg topology.topogeometry

visitedtable pg_catalog.regclass

 

Definition

CREATE OR REPLACE FUNCTION topology.asgml (
 tg topology.topogeometry,
 visitedtable pg_catalog.regclass
)
RETURNS text AS
$span$
SELECT
topology.AsGML($1, 'gml', 15, 1, $2);
$span$
LANGUAGE
'sql'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION topology.asgml(tg topology.topogeometry, visitedtable pg_catalog.regclass)
IS 'args: tg, visitedTable - 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
Previous topic Chapter index Next topic