merge: expand weather locations to 12 regions

This commit is contained in:
Deeman
2026-02-26 00:12:33 +01:00
2 changed files with 13 additions and 1 deletions

View File

@@ -28,8 +28,16 @@ LOCATIONS: list[dict] = [
{"id": "guatemala_antigua", "lat": 14.5586, "lon": -90.7295, "name": "Antigua", "country": "GT", "variety": "Arabica"},
# Indonesia — Sumatra (Mandheling); significant Robusta production
{"id": "indonesia_sumatra", "lat": 3.5952, "lon": 98.6722, "name": "Sumatra", "country": "ID", "variety": "Robusta"},
# Brazil — Espírito Santo; largest Conilon (Robusta) producing state in Brazil
{"id": "brazil_espirito_santo", "lat": -19.3908, "lon": -40.0668, "name": "Espírito Santo", "country": "BR", "variety": "Robusta"},
# Peru — Jaén/Cajamarca; fastest-growing Arabica origin, top-10 global producer
{"id": "peru_jaen", "lat": -5.7064, "lon": -78.8077, "name": "Jaén", "country": "PE", "variety": "Arabica"},
# Uganda — Mount Elgon/Bugisu; 4th largest African producer, significant Robusta
{"id": "uganda_elgon", "lat": 1.0826, "lon": 34.1751, "name": "Mount Elgon", "country": "UG", "variety": "Robusta"},
# Ivory Coast — Daloa region; historically significant West African Robusta
{"id": "ivory_coast_daloa", "lat": 6.8774, "lon": -6.4502, "name": "Daloa", "country": "CI", "variety": "Robusta"},
]
assert len(LOCATIONS) == 8, f"Expected 8 locations, got {len(LOCATIONS)}"
assert len(LOCATIONS) == 12, f"Expected 12 locations, got {len(LOCATIONS)}"
assert all("id" in loc and "lat" in loc and "lon" in loc for loc in LOCATIONS), \
"Each location must have id, lat, lon"

View File

@@ -7,3 +7,7 @@ ethiopia_sidama;Sidama;ET;6.7612;38.4721;Arabica
honduras_copan;Copán;HN;14.8333;-89.1500;Arabica
guatemala_antigua;Antigua;GT;14.5586;-90.7295;Arabica
indonesia_sumatra;Sumatra;ID;3.5952;98.6722;Robusta
brazil_espirito_santo;Espírito Santo;BR;-19.3908;-40.0668;Robusta
peru_jaen;Jaén;PE;-5.7064;-78.8077;Arabica
uganda_elgon;Mount Elgon;UG;1.0826;34.1751;Robusta
ivory_coast_daloa;Daloa;CI;6.8774;-6.4502;Robusta
1 location_id name country lat lon variety
7 honduras_copan Copán HN 14.8333 -89.1500 Arabica
8 guatemala_antigua Antigua GT 14.5586 -90.7295 Arabica
9 indonesia_sumatra Sumatra ID 3.5952 98.6722 Robusta
10 brazil_espirito_santo Espírito Santo BR -19.3908 -40.0668 Robusta
11 peru_jaen Jaén PE -5.7064 -78.8077 Arabica
12 uganda_elgon Mount Elgon UG 1.0826 34.1751 Robusta
13 ivory_coast_daloa Daloa CI 6.8774 -6.4502 Robusta