Schema
Owner
postgres
Descriptions
args: a_point, center_x, center_y, radius - Is the point geometry insert circle defined by center_x, center_y, radius
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
c |
Parameters |
public.geometry double precision double precision double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_pointinsidecircle (
public.geometry,
double precision,
double precision,
double precision
)
RETURNS boolean AS
'$libdir/postgis-2.2', 'LWGEOM_inside_circle_point'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_pointinsidecircle(public.geometry, double precision, double precision, double precision)
IS 'args: a_point, center_x, center_y, radius - Is the point geometry insert circle defined by center_x, center_y, radius';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |