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

Function: st_intersection

 

 

Schema

public

 

Owner

postgres

 

Descriptions

There is no description for function st_intersection

 

Options

Option

Value

Returns

Set of public.geomval

Language

sql

Parameters

rast public.raster

band integer

geomin public.geometry

 

Definition

CREATE OR REPLACE FUNCTION public.st_intersection (
 rast public.raster,
 band integer,
 geomin public.geometry
)
RETURNS SETOF public.geomval AS
$span$
SELECT
st_intersection($3, $1, $2)
$span$
LANGUAGE
'sql'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100 ROWS 1000;

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