Schema
Owner
postgres
Descriptions
args: g1, g2 - Returns TRUE if the geometries have at least one point in common, but their interiors do not intersect.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
geom1 public.geometry geom2 public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_touches (
geom1 public.geometry,
geom2 public.geometry
)
RETURNS boolean AS
$span$
SELECT $1 OPERATOR(public.&&) $2 AND public._ST_Touches($1,$2)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_touches(geom1 public.geometry, geom2 public.geometry)
IS 'args: g1, g2 - Returns TRUE if the geometries have at least one point in common, but their interiors do not intersect.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |