Schema
Owner
postgres
Descriptions
args: geomA, geomB - Returns true if B intersects the interior of A but not the boundary (or exterior). A does not contain properly itself, but does contain itself.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
geom1 public.geometry geom2 public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_containsproperly (
geom1 public.geometry,
geom2 public.geometry
)
RETURNS boolean AS
$span$
SELECT $1 OPERATOR(public.~) $2 AND public._ST_ContainsProperly($1,$2)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_containsproperly(geom1 public.geometry, geom2 public.geometry)
IS 'args: geomA, geomB - Returns true if B intersects the interior of A but not the boundary (or exterior). A does not contain properly itself, but does contain itself.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |