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

Function: st_asraster

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: geom, width, height, pixeltype, value=1, nodataval=0, upperleftx=NULL, upperlefty=NULL, skewx=0, skewy=0, touched=false - Converts a PostGIS geometry to a PostGIS raster.

 

Options

Option

Value

Returns

public.raster

Language

sql

Parameters

geom public.geometry

width integer

height integer

pixeltype text

value double precision = 1

nodataval double precision = 0

upperleftx double precision = NULL::double precision

upperlefty double precision = NULL::double precision

skewx double precision = 0

skewy double precision = 0

touched boolean = false

 

Definition

CREATE OR REPLACE FUNCTION public.st_asraster (
 geom public.geometry,
 width integer,
 height integer,
 pixeltype text,
 value double precision = 1,
 nodataval double precision = 0,
 upperleftx double precision = NULL::double precision,
 upperlefty double precision = NULL::double precision,
 skewx double precision = 0,
 skewy double precision = 0,
 touched boolean = false
)
RETURNS public.raster AS
$span$
SELECT public
._ST_asraster($1, NULL, NULL, $2, $3, ARRAY[$4]::text[], ARRAY[$5]::double precision[], ARRAY[$6]::double precision[], $7, $8, NULL, NULL,$9, $10, $11)
$span$
LANGUAGE
'sql'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.st_asraster(geom public.geometry, width integer, height integer, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean)
IS 'args: geom, width, height, pixeltype, value=1, nodataval=0, upperleftx=NULL, upperlefty=NULL, skewx=0, skewy=0, touched=false - Converts a PostGIS geometry to a PostGIS raster.';

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