Dynamic geographic datastore with Vector Tiles generation from PostGIS and json schema definition and validation.
- Geographic layer management
- Add and manage geographic features on layers
- Manage feature properties with JSON schema
- Import and export data
- Generate GeoJSON and MapBox Vector Tile on single or group of layers
- Full management API available
- Optional PGRouting capabilities with plugin django-geostore-routing
- Python 3.6+
- Postgresql 10+
- PostGIS 2.4+
Optionnal to use PgRouting functionnalities :
- PgRouting 2.5+ and django-geostore-routing
these are debian packages required
- libpq-dev (psycopg2)
- gettext (translations)
- binutils (django.contrib.gis)
- libproj-dev (django.contrib.gis)
- gdal-bin (django.contrib.gis)
recommended
- postgresql-client (if you want to use ./manage.py dbshell command)
pip install django-geostore
git clone https://github.com/Terralego/django-geostore.git
cd django-geostore
python3 setup.py install
INSTALLED_APPS = (
'geostore',
)
docker-compose build
docker-compose up
docker-compose run web ./manage.py test
python3.6 -m venv venv
source activate venv/bin/activate
pip install -e .[dev]