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, nsprefix_in, precision, options - Returns the GML representation of a topogeometry.

 

Options

Option

Value

Returns

text

Language

sql

Parameters

tg topology.topogeometry

nsprefix text

prec integer

opts integer

 

Definition

CREATE OR REPLACE FUNCTION topology.asgml (
 tg topology.topogeometry,
 nsprefix text,
 prec integer,
 opts integer
)
RETURNS text AS
$span$
SELECT
topology.AsGML($1, $2, $3, $4, NULL);
$span$
LANGUAGE
'sql'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION topology.asgml(tg topology.topogeometry, nsprefix text, prec integer, opts integer)
IS 'args: tg, nsprefix_in, precision, options - 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