colouring-montreal/etl/planning_data
dependabot[bot] 854fd46520
Bump requests from 2.23.0 to 2.31.0 in /etl
Bumps [requests](https://github.com/psf/requests) from 2.23.0 to 2.31.0.
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](https://github.com/psf/requests/compare/v2.23.0...v2.31.0)

---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-22 23:31:22 +00:00
..
.gitignore Display official planning data. 2022-10-05 19:52:14 +02:00
address_data.py try more clear logging 2022-11-23 10:50:55 +01:00
obtain_livestream_data_and_load_into_database.py change DataHub to Datahub 2023-01-23 06:49:45 +01:00
README.MD describe planning data script in context of core 2023-02-19 07:36:37 +01:00
requirements.txt Bump requests from 2.23.0 to 2.31.0 in /etl 2023-05-22 23:31:22 +00:00

Planning data was written to be extendable to other locations but currently is setup only for London and relies on GLA data.

Extending it to other locations will require some custom work. At least connecting to other external API and parsing their data. Some additional custom data processing will be likely needed like it was needed for London data.

Following instructions assume that code is placed within ~/colouring-core/etl/planning_data/ and tiles are within /srv/colouring-london/tilecache/ Note that this is affected by location specified in ecosystem config file which may be for example at /var/www/colouring-london/ecosystem.config.js

To install necessary dependencies use cd ~/colouring-london/etl/planning_data/ && pip3 install -r requirements.txt

Following scripts should be scheduled to run regularly to load livestream data into database.

# querying API to obtain data & loading data into Colouring database
python3 obtain_livestream_data_and_load_into_database.py

# removing tile cache for planning applications status layers - note that location of cache depends on your configuration
rm /srv/colouring-london/tilecache/planning_applications_status_all/* -rf
rm /srv/colouring-london/tilecache/planning_applications_status_recent/* -rf
rm /srv/colouring-london/tilecache/planning_applications_status_very_recent/* -rf

As loading into databases expects environment variables to be set, one option to actually schedule it in a cron is something like

export $(cat ~/scripts/.env | xargs) && /usr/bin/python3 ~/colouring-london/etl/planning_data/obtain_livestream_data_and_load_into_database.py

with

~/scripts/.env

being in following format

PGHOST=localhost
PGDATABASE=colouringlondondb
PGUSER=cldbadmin
PGPASSWORD=actualpassword
PLANNNING_DATA_API_ALLOW_REQUEST_CODE=requestcode