Schema
Owner
postgres
Descriptions
args: g1, g2 - Returns the 2-dimensional shortest line between two geometries
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geom1 public.geometry geom2 public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_shortestline (
geom1 public.geometry,
geom2 public.geometry
)
RETURNS public.geometry AS
'$libdir/postgis-2.2', 'LWGEOM_shortestline2d'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_shortestline(geom1 public.geometry, geom2 public.geometry)
IS 'args: g1, g2 - Returns the 2-dimensional shortest line between two geometries';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |