From 3daf9960e0e08529100712c4d5058de240eebddd Mon Sep 17 00:00:00 2001 From: davidwyld <24752124+davidwilby@users.noreply.github.com> Date: Mon, 22 Dec 2025 09:36:07 +0000 Subject: [PATCH 1/2] change Falklands location name to Mare Harbour --- polarrouteserver/route_api/fixtures/locations_bas.json | 2 +- request_route/request_route.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"), From 0a81356b3e5ed2cad17ff28bb097ffed9f52a26f Mon Sep 17 00:00:00 2001 From: davidwyld <24752124+davidwilby@users.noreply.github.com> Date: Mon, 22 Dec 2025 13:25:50 +0000 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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