Schema
Owner
postgres
Descriptions
args: g1, radius_of_buffer, buffer_style_parameters - (T)Returns a geometry covering all points within a given distancefrom the input geometry.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
sql |
Parameters |
public.geometry double precision text |
Definition
CREATE OR REPLACE FUNCTION public.st_buffer (
public.geometry,
double precision,
text
)
RETURNS public.geometry AS
$span$
SELECT public._ST_Buffer($1, $2,
CAST( regexp_replace($3, '^[0123456789]+$',
'quad_segs='||$3) AS cstring)
)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_buffer(public.geometry, double precision, text)
IS 'args: g1, radius_of_buffer, buffer_style_parameters - (T)Returns a geometry covering all points within a given distancefrom the input geometry.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |