Schema
Owner
postgres
Descriptions
args: geomA, measure_start, measure_end, offset - Return a derived geometry collection value with elements that match the specified range of measures inclusively. Polygonal elements are not supported.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geometry public.geometry frommeasure double precision tomeasure double precision leftrightoffset double precision = 0.0 |
Definition
CREATE OR REPLACE FUNCTION public.st_locatebetween (
geometry public.geometry,
frommeasure double precision,
tomeasure double precision,
leftrightoffset double precision = 0.0
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_LocateBetween'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_locatebetween(geometry public.geometry, frommeasure double precision, tomeasure double precision, leftrightoffset double precision)
IS 'args: geomA, measure_start, measure_end, offset - Return a derived geometry collection value with elements that match the specified range of measures inclusively. Polygonal elements are not supported.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |