Schema
Owner
postgres
Descriptions
args: line - Returns true if the geometry is a valid trajectory.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
c |
Parameters |
public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_isvalidtrajectory (
public.geometry
)
RETURNS boolean AS
'$libdir/postgis-2.3', 'ST_IsValidTrajectory'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_isvalidtrajectory(public.geometry)
IS 'args: line - Returns true if the geometry is a valid trajectory.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |