Schema
Owner
postgres
Descriptions
args: geomA - Forces the geometries into a "2-dimensional mode" so that all output representations will only have the X and Y coordinates.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_force2d (
public.geometry
)
RETURNS public.geometry AS
'$libdir/postgis-2.2', 'LWGEOM_force_2d'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_force2d(public.geometry)
IS 'args: geomA - Forces the geometries into a "2-dimensional mode" so that all output representations will only have the X and Y coordinates.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |