Thursday, January 24, 2013

PostGIS 2.0 functions list

I couldn't find a simple list of PostGIS functions on the web so here is a list of PostGIS 2.0 functions and a sql command to list them for yourself:
SELECT  proname
FROM    pg_catalog.pg_namespace n
JOIN    pg_catalog.pg_proc p
ON      pronamespace = n.oid
WHERE   nspname = 'public'
order by proname
See the list after the jump: