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

Function: st_locatealong

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: ageom_with_measure, a_measure, offset - Return a derived geometry collection value with elements that match the specified measure. Polygonal elements are not supported.

 

Options

Option

Value

Returns

public.geometry

Language

c

Parameters

geometry public.geometry

measure double precision

leftrightoffset double precision = 0.0

 

Definition

CREATE OR REPLACE FUNCTION public.st_locatealong (
 geometry public.geometry,
 measure double precision,
 leftrightoffset double precision = 0.0
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_LocateAlong'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST
1;

COMMENT ON FUNCTION public.st_locatealong(geometry public.geometry, measure double precision, leftrightoffset double precision)
IS 'args: ageom_with_measure, a_measure, offset - Return a derived geometry collection value with elements that match the specified measure. 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