diff --git a/frontend/src/components/Map.tsx b/frontend/src/components/Map.tsx index 5cd173b..241ecdb 100644 --- a/frontend/src/components/Map.tsx +++ b/frontend/src/components/Map.tsx @@ -67,7 +67,6 @@ function priceToColor(price: number | null | undefined): [number, number, number } function zoomToResolution(zoom: number): number { - if (zoom < 7) return 6; if (zoom < 8.5) return 7; if (zoom < 9.5) return 8; if (zoom < 11) return 9; diff --git a/pipeline/config.py b/pipeline/config.py index 4c18b2e..116a078 100644 --- a/pipeline/config.py +++ b/pipeline/config.py @@ -2,14 +2,13 @@ from pathlib import Path -# Data directories DATA_DIR = Path(__file__).parent.parent / "data_sources" PROCESSED_DIR = DATA_DIR / "processed" AGGREGATES_DIR = PROCESSED_DIR / "aggregates" # H3 resolutions to generate and serve # https://h3geo.org/docs/core-library/restable/#average-area-in-m2 -H3_RESOLUTIONS = [6, 7, 8, 9, 10, 11] +H3_RESOLUTIONS = [7, 8, 9, 10, 11] DEFAULT_H3_RESOLUTION = 8 # Year filters