pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: st_covers

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rastA, rastB - Return true if no points of raster rastB lie outside raster rastA.

 

Options

Option

Value

Returns

boolean

Language

sql

Parameters

rast1 public.raster

rast2 public.raster

 

Definition

CREATE OR REPLACE FUNCTION public.st_covers (
 rast1 public.raster,
 rast2 public.raster
)
RETURNS boolean AS
$span$
SELECT public
.st_covers($1, NULL::integer, $2, NULL::integer)
$span$
LANGUAGE
'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
1000;

COMMENT ON FUNCTION public.st_covers(rast1 public.raster, rast2 public.raster)
IS 'args: rastA, rastB - Return true if no points of raster rastB lie outside raster rastA.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic