colouring-montreal/etl/mark_demolitions.sh

23 lines
957 B
Bash
Raw Normal View History

2022-04-14 08:32:56 -04:00
#!/usr/bin/env bash
psql -c "DROP TABLE IF EXISTS old_geometries;"
echo "Creating temporary table for geometries in the db not present in new data..."
psql -c "CREATE TABLE IF NOT EXISTS old_geometries (
source_id varchar(30) PRIMARY KEY,
geometry_geom geometry(GEOMETRY, 3857)
);"
echo "Find geometries in the db not present in new data..."
psql -c "INSERT INTO old_geometries ( source_id, geometry_geom )
SELECT source_id, geometry_geom
FROM geometries AS g
WHERE NOT EXISTS ( SELECT source_id
FROM release_geometries AS r
WHERE g.source_id = r.source_id);"
echo "Set each building's latest_demolish_date for today if linked geometry in the db not present in new data..."
2022-04-14 08:39:42 -04:00
psql -c "UPDATE buildings
SET latest_demolish_date = CURRENT_DATE
2022-04-14 08:37:15 -04:00
FROM old_geometries AS og
2022-04-14 08:39:42 -04:00
WHERE buildings.ref_toid = og.source_id;"