Schema
Owner
postgres
Descriptions
args: input, reference, tolerance - Snap segments and vertices of input geometry to vertices of a reference geometry.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geom1 public.geometry geom2 public.geometry double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_snap (
geom1 public.geometry,
geom2 public.geometry,
double precision
)
RETURNS public.geometry AS
'$libdir/postgis-2.2', 'ST_Snap'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_snap(geom1 public.geometry, geom2 public.geometry, double precision)
IS 'args: input, reference, tolerance - Snap segments and vertices of input geometry to vertices of a reference geometry.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |