Schema
Owner
postgres
Descriptions
args: geogA, geogB - Returns 1 (TRUE) if no point in Geometry/Geography A is outside Geometry/Geography B
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
public.geography public.geography |
Definition
CREATE OR REPLACE FUNCTION public.st_coveredby (
public.geography,
public.geography
)
RETURNS boolean AS
$span$
SELECT $1 OPERATOR(public.&&) $2 AND public._ST_Covers($2, $1)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_coveredby(public.geography, public.geography)
IS 'args: geogA, geogB - Returns 1 (TRUE) if no point in Geometry/Geography A is outside Geometry/Geography B';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |