Schema
Owner
postgres
Descriptions
args: rast, yrow - Returns the geometric Y coordinate upper left corner of a raster, column and row. Numbering of columns and rows starts at 1.
Options
Option | Value |
---|---|
Returns |
double precision |
Language |
sql |
Parameters |
rast public.raster yr integer |
Definition
CREATE OR REPLACE FUNCTION public.st_rastertoworldcoordy (
rast public.raster,
yr integer
)
RETURNS double precision AS
$span$
SELECT latitude FROM _st_rastertoworldcoord($1, NULL, $2)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_rastertoworldcoordy(rast public.raster, yr integer)
IS 'args: rast, yrow - Returns the geometric Y coordinate upper left corner of a raster, column and row. Numbering of columns and rows starts at 1.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |