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

Function: st_mapalgebra

 

 

Schema

public

 

Owner

albenard

 

Descriptions

There is no description for function st_mapalgebra

 

Options

Option

Value

Returns

public.raster

Language

sql

Parameters

rast1 public.raster

nband1 integer

rast2 public.raster

nband2 integer

callbackfunc pg_catalog.regprocedure

pixeltype text = NULL::text

extenttype text = 'INTERSECTION'::text

customextent public.raster = NULL::raster

distancex integer = 0

distancey integer = 0

variadic userargs text [] = NULL::text[]

 

Definition

CREATE OR REPLACE FUNCTION public.st_mapalgebra (
 rast1 public.raster,
 nband1 integer,
 rast2 public.raster,
 nband2 integer,
 callbackfunc pg_catalog.regprocedure,
 pixeltype text = NULL::text,
 extenttype text = 'INTERSECTION'::text,
 customextent public.raster = NULL::raster,
 distancex integer = 0,
 distancey integer = 0,
 variadic userargs text [] = NULL::text[]
)
RETURNS public.raster AS
$span$
SELECT public
._ST_MapAlgebra(ARRAY[ROW($1, $2), ROW($3, $4)]::rastbandarg[], $5, $6, $9, $10, $7, $8,NULL::double precision [],NULL::boolean, VARIADIC $11)
$span$
LANGUAGE
'sql'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

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