From c85fe82e242a86a1d4f208ccdbdee05d78e8b4bd Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Mon, 26 Jan 2026 21:02:41 +0000 Subject: [PATCH] Remove level 6 --- frontend/src/components/Map.tsx | 1 - pipeline/config.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) 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