Schema
Owner
postgres
Descriptions
args: geom, width, height, pixeltype, value=ARRAY[1], nodataval=ARRAY[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 [] = ARRAY[1::double precision] nodataval double precision [] = ARRAY[0::double precision] 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 [] = ARRAY[1::double precision],
nodataval double precision [] = ARRAY[0::double precision],
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 _st_asraster($1, NULL, NULL, $2, $3, $4, $5, $6, $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=ARRAY[1], nodataval=ARRAY[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 13/03/2014 13:23 |