Schema
Owner
postgres
Descriptions
args: rast, xw - 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 yw double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_worldtorastercoordy (
rast public.raster,
yw double precision
)
RETURNS integer AS
$span$
SELECT rowy FROM _st_worldtorastercoord($1, NULL, $2)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_worldtorastercoordy(rast public.raster, yw double precision)
IS 'args: rast, xw - 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 13/03/2014 13:23 |