Schema
public
Owner
albenard
Descriptions
args: geom, units_to_expand - Returns bounding box expanded in all directions from the bounding box of the input geometry. Uses double-precision
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
public.geometry double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_expand (
public.geometry,
double precision
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'LWGEOM_expand'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_expand(public.geometry, double precision)
IS 'args: geom, units_to_expand - Returns bounding box expanded in all directions from the bounding box of the input geometry. Uses double-precision';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |