Skip to content

Latest commit

 

History

History
16 lines (6 loc) · 537 Bytes

README.md

File metadata and controls

16 lines (6 loc) · 537 Bytes

FeatureServer provides a REST API for reading and writing spatial features from a Postgresql database.

The REST API is documented in the service catalog, published here.

Currently only Postgresql 9.3 and higher are supported.

Prerequisites: create the database that will hold the schema's and tables managed by this server. For best performance of regex expression, make sure the pg_trgm extension is enable like so:

psql=# CREATE EXTENSION pg_trgm;