Schema
Owner
postgres
Descriptions
args: rastA, rastB, distance_of_srid - Return true if rasters rastA and rastB are within the specified distance of each other.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
rast1 public.raster rast2 public.raster distance double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_dwithin (
rast1 public.raster,
rast2 public.raster,
distance double precision
)
RETURNS boolean AS
$span$
SELECT public.st_dwithin($1, NULL::integer, $2, NULL::integer, $3)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1000;
COMMENT ON FUNCTION public.st_dwithin(rast1 public.raster, rast2 public.raster, distance double precision)
IS 'args: rastA, rastB, distance_of_srid - Return true if rasters rastA and rastB are within the specified distance of each other.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |