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

Function: topogeo_addpolygon

 

 

Schema

topology

 

Owner

albenard

 

Descriptions

args: atopology, apoly, atolerance - Adds a polygon to an existing topology using a tolerance and possibly splitting existing edges/faces.

 

Options

Option

Value

Returns

Set of integer

Language

c

Parameters

atopology varchar

apoly public.geometry

tolerance double precision = 0

 

Definition

CREATE OR REPLACE FUNCTION topology.topogeo_addpolygon (
 atopology varchar,
 apoly public.geometry,
 tolerance double precision = 0
)
RETURNS SETOF integer AS
'$libdir/postgis_topology-2.3', 'TopoGeo_AddPolygon'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
1 ROWS 1000;

COMMENT ON FUNCTION topology.topogeo_addpolygon(atopology varchar, apoly public.geometry, tolerance double precision)
IS 'args: atopology, apoly, atolerance - Adds a polygon to an existing topology using a tolerance and possibly splitting existing edges/faces.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic