👋 What is GIS?. A GIS is a framework that integrates data formats and functions for the purpose of collecting,managing and analyzing spatial data.
cd geodjango-hospitals-api
- run the command: make build
- run the migrate command: make migrate
- create superuser: make superuser
- then run the command: make shell
to load hospital data run these commands in the shell
>>> from hospitals import load
>>> load.run()
to load boundaries data run these commands
>>> from boundaries import load
>>> load.run()
>>> quit()
Open Postman and make the following get requests
GET http://localhost:8080/api/v1/hospitals/
GET http://localhost:8080/api/v1/boundaries/
GET http://localhost:8080/api/v1/hospitals/?province=1
GET http://localhost:8080/api/v1/hospitals/closest_hospitals/?lon=30.094388&lat=-1.943566
GET http://localhost:8080/api/v1/hospitals/total_bed_capacity/
GET http://localhost:8080/api/v1/hospitals/province_beds_capacity/
MIT