Schema
Owner
postgres
Descriptions
args: geom - Returns the center point and radius of the smallest circle that can fully contain a geometry.
Options
Option | Value |
---|---|
Returns |
record |
Language |
c |
Parameters |
public.geometry out center public.geometry out radius double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_minimumboundingradius (
public.geometry,
out center public.geometry,
out radius double precision
)
RETURNS record AS
'$libdir/postgis-2.3', 'ST_MinimumBoundingRadius'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_minimumboundingradius(public.geometry, out center public.geometry, out radius double precision)
IS 'args: geom - Returns the center point and radius of the smallest circle that can fully contain a geometry.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |