Schema
Owner
postgres
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 07/12/2018 13:23 |