Schema
Owner
postgres
Descriptions
args: geomjson - Takes as input a geojson representation of a geometry and outputs a PostGIS geometry object
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
text |
Definition
CREATE OR REPLACE FUNCTION public.st_geomfromgeojson (
text
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'geom_from_geojson'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_geomfromgeojson(text)
IS 'args: geomjson - Takes as input a geojson representation of a geometry and outputs a PostGIS geometry object';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |