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

Function: st_polygon

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: aLineString, srid - Returns a polygon built from the specified linestring and SRID.

 

Options

Option

Value

Returns

public.geometry

Language

sql

Parameters

public.geometry

integer

 

Definition

CREATE OR REPLACE FUNCTION public.st_polygon (
 public.geometry,
 integer
)
RETURNS public.geometry AS
$span$
SELECT public
.ST_SetSRID(public.ST_MakePolygon($1), $2)
$span$
LANGUAGE
'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.st_polygon(public.geometry, integer)
IS 'args: aLineString, srid - Returns a polygon built from the specified linestring and SRID.';

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