Schema
Owner
postgres
Descriptions
args: A, B - Returns TRUE if the Geometries share space, are of the same dimension, but are not completely contained by each other.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
geom1 public.geometry geom2 public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_overlaps (
geom1 public.geometry,
geom2 public.geometry
)
RETURNS boolean AS
$span$
SELECT $1 OPERATOR(public.&&) $2 AND public._ST_Overlaps($1,$2)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_overlaps(geom1 public.geometry, geom2 public.geometry)
IS 'args: A, B - Returns TRUE if the Geometries share space, are of the same dimension, but are not completely contained by each other.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |