Geolocation project to Map all the health facilities in Kenya. Built with Django and PostGIS, it offers a foundation for developing location-based applications and conducting geospatial analysis within Kenya.
# Kenya's Health Facilities
## Setup
1. git clone 'git@github.com:Morvin-Ian/kenya-health-facilities.git'
### Run Application
- make build
- make makemigrations
- make migrate
- make superuser
- make shell
to load the boundaries data run these commands in the shell
>>> from facilities.data import load_layer
>>> load_layer.run()
>>> quit()