pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: st_locatebetween

 

 

Schema

public

 

Owner

albenard

 

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 26/02/2014 11:51
Previous topic Chapter index Next topic