Schema
Owner
postgres
Descriptions
args: g1, radius_of_buffer - (T)Returns a geometry covering all points within a given distancefrom the input geometry.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
public.geometry double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_buffer (
public.geometry,
double precision
)
RETURNS public.geometry AS
'$libdir/postgis-2.2', 'buffer'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_buffer(public.geometry, double precision)
IS 'args: g1, radius_of_buffer - (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 |