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

Function: st_pointinsidecircle

 

 

Schema

public

 

Owner

albenard

 

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.3', '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 26/02/2014 11:51
Previous topic Chapter index Next topic