Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions data/src/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jenkspy = "*"
pyarrow = "*"
tqdm = "*"
geoalchemy2 ="*"
rioxarray = "*"
exactextract = "*"
pystac-client = "*"
planetary-computer = "*"
odc-stac = "*"
dask = "==2025.2.0"
xarray = "*"

[dev-packages]
black = "*"
Expand All @@ -36,6 +43,7 @@ vulture = "*"
pylint = "*"
radon = "*"
ruff = "*"
freezegun = "*"

[requires]
python_version = "3.11"
Expand Down
6,365 changes: 3,281 additions & 3,084 deletions data/src/Pipfile.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions data/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
tree_canopy,
unsafe_buildings,
vacant_properties,
ndvi,
)
from new_etl.database import to_postgis_with_schema

Expand Down Expand Up @@ -76,6 +77,7 @@
tactical_urbanism,
conservatorship,
park_priority,
ndvi,
]

print("Loading OPA properties dataset.")
Expand Down
2 changes: 2 additions & 0 deletions data/src/new_etl/data_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from .park_priority import park_priority # Add missing import
from .ppr_properties import ppr_properties # Add missing import
from .council_dists import council_dists
from .ndvi import ndvi

__all__ = [
"city_owned_properties",
Expand Down Expand Up @@ -54,4 +55,5 @@
"park_priority",
"ppr_properties",
"council_dists",
"ndvi",
]
Loading
Loading