Schema
Owner
postgres
Descriptions
There is no description for function st_reclass
Options
Option | Value |
---|---|
Returns |
public.raster |
Language |
sql |
Parameters |
rast public.raster reclassexpr text pixeltype text |
Definition
CREATE OR REPLACE FUNCTION public.st_reclass (
rast public.raster,
reclassexpr text,
pixeltype text
)
RETURNS public.raster AS
$span$
SELECT st_reclass($1, ROW(1, $2, $3, NULL))
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |