Schema
Owner
postgres
Descriptions
args: geom, maxdecimaldigits=15, options=0 - Return the geometry as a GeoJSON element.
Options
Option | Value |
---|---|
Returns |
text |
Language |
c |
Parameters |
geom public.geometry maxdecimaldigits integer = 15 options integer = 0 |
Definition
CREATE OR REPLACE FUNCTION public.st_asgeojson (
geom public.geometry,
maxdecimaldigits integer = 15,
options integer = 0
)
RETURNS text AS
'$libdir/postgis-2.3', 'LWGEOM_asGeoJson'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1000;
COMMENT ON FUNCTION public.st_asgeojson(geom public.geometry, maxdecimaldigits integer, options integer)
IS 'args: geom, maxdecimaldigits=15, options=0 - Return the geometry as a GeoJSON element.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |