Schema
public
Owner
albenard
Descriptions
args: rast, xw, yw - Returns the row in the raster of the point geometry (pt) or a X and Y world coordinate (xw, yw) represented in world spatial reference system of raster.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
sql |
Parameters |
rast public.raster xw double precision yw double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_worldtorastercoordy (
rast public.raster,
xw double precision,
yw double precision
)
RETURNS integer AS
$span$
SELECT rowy FROM public._ST_worldtorastercoord($1, $2, $3)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_worldtorastercoordy(rast public.raster, xw double precision, yw double precision)
IS 'args: rast, xw, yw - Returns the row in the raster of the point geometry (pt) or a X and Y world coordinate (xw, yw) represented in world spatial reference system of raster.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |