Schema
Owner
postgres
Descriptions
args: geomA - Returns the 2-dimensional perimeter of the geometry, if it is a polygon or multi-polygon. This is currently an alias for ST_Perimeter.
Options
Option | Value |
---|---|
Returns |
double precision |
Language |
c |
Parameters |
public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_perimeter2d (
public.geometry
)
RETURNS double precision AS
'$libdir/postgis-2.3', 'LWGEOM_perimeter2d_poly'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 10;
COMMENT ON FUNCTION public.st_perimeter2d(public.geometry)
IS 'args: geomA - Returns the 2-dimensional perimeter of the geometry, if it is a polygon or multi-polygon. This is currently an alias for ST_Perimeter.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |