Schema
Owner
postgres
Descriptions
args: geom, dx, dy, dz=0, dm=0 - 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 |
geom public.geometry dx double precision dy double precision dz double precision = 0 dm double precision = 0 |
Definition
CREATE OR REPLACE FUNCTION public.st_expand (
geom public.geometry,
dx double precision,
dy double precision,
dz double precision = 0,
dm double precision = 0
)
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(geom public.geometry, dx double precision, dy double precision, dz double precision, dm double precision)
IS 'args: geom, dx, dy, dz=0, dm=0 - 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 07/12/2018 13:23 |