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

Function: st_within

 

 

Schema

public

 

Owner

postgres

 

Descriptions

args: rastA, rastB - Return true if no points of raster rastA lie in the exterior of raster rastB and at least one point of the interior of rastA lies in the interior of rastB.

 

Options

Option

Value

Returns

boolean

Language

sql

Parameters

rast1 public.raster

rast2 public.raster

 

Definition

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

COMMENT ON FUNCTION public.st_within(rast1 public.raster, rast2 public.raster)
IS 'args: rastA, rastB - Return true if no points of raster rastA lie in the exterior of raster rastB and at least one point of the interior of rastA lies in the interior of rastB.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23
Previous topic Chapter index Next topic