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

Function: st_buffer

 

 

Schema

public

 

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.geography

Language

sql

Parameters

public.geography

double precision

text

 

Definition

CREATE OR REPLACE FUNCTION public.st_buffer (
 public.geography,
 double precision,
 text
)
RETURNS public.geography AS
$span$
SELECT
geography(ST_Transform(ST_Buffer(ST_Transform(geometry($1), public._ST_BestSRID($1)), $2, $3), 4326))
$span$
LANGUAGE
'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.st_buffer(public.geography, 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 26/02/2014 11:51
Previous topic Chapter index Next topic