diff --git a/CHANGELOG.md b/CHANGELOG.md index 48a7023..6aaef02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Altered the `/api/recent_routes` endpoint to return routes from the last 24 hours. Previously it returned routes from the current calendar day. +- Renamed and repositioned "Falklands" location to "Mare Harbour". ## 0.2.6 - 2025-12-17 diff --git a/polarrouteserver/route_api/fixtures/locations_bas.json b/polarrouteserver/route_api/fixtures/locations_bas.json index 27230ff..213e483 100644 --- a/polarrouteserver/route_api/fixtures/locations_bas.json +++ b/polarrouteserver/route_api/fixtures/locations_bas.json @@ -5,7 +5,7 @@ }, { "model": "route_api.location", - "fields": { "id": 2, "name": "Falklands", "lat": -51.731, "lon": -57.706 } + "fields": { "id": 2, "name": "Mare Harbour, Falklands", "lat": -51.902, "lon": -58.494 } }, { "model": "route_api.location", diff --git a/request_route/request_route.py b/request_route/request_route.py index 1fd649f..dd438b4 100644 --- a/request_route/request_route.py +++ b/request_route/request_route.py @@ -27,7 +27,7 @@ def __init__(self, lat: float, lon: float, name: str = None): STANDARD_LOCATIONS = { "bird": Location(-54.025, -38.044, "bird"), - "falklands": Location(-51.731, -57.706, "falklands"), + "mareharbour": Location(-51.902, -58.494, "mareharbour"), "halley": Location(-75.059, -25.840, "halley"), "rothera": Location(-67.764, -68.02, "rothera"), "kep": Location(-54.220, -36.433, "kep"),