Schema
Owner
postgres
Descriptions
args: linestring, offset - Removes point from a linestring. Offset is 0-based.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
public.geometry integer |
Definition
CREATE OR REPLACE FUNCTION public.st_removepoint (
public.geometry,
integer
)
RETURNS public.geometry AS
'$libdir/postgis-2.2', 'LWGEOM_removepoint'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_removepoint(public.geometry, integer)
IS 'args: linestring, offset - Removes point from a linestring. Offset is 0-based.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |