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