Skip to content

Commit b6c7e37

Browse files
authored
Merge pull request #185 from bas-amop/dw/mare_harbour
change Falklands location to Mare Harbour
2 parents d3b1537 + 0a81356 commit b6c7e37

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Added all ports on localhost, 127.0.0.1 and 0.0.0.0 to CORS allowed origins.
1212
### Changed
1313
- Altered the `/api/recent_routes` endpoint to return routes from the last 24 hours. Previously it returned routes from the current calendar day.
14+
- Renamed and repositioned "Falklands" location to "Mare Harbour".
1415

1516
## 0.2.6 - 2025-12-17
1617

polarrouteserver/route_api/fixtures/locations_bas.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
{
77
"model": "route_api.location",
8-
"fields": { "id": 2, "name": "Falklands", "lat": -51.731, "lon": -57.706 }
8+
"fields": { "id": 2, "name": "Mare Harbour, Falklands", "lat": -51.902, "lon": -58.494 }
99
},
1010
{
1111
"model": "route_api.location",

request_route/request_route.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(self, lat: float, lon: float, name: str = None):
2727

2828
STANDARD_LOCATIONS = {
2929
"bird": Location(-54.025, -38.044, "bird"),
30-
"falklands": Location(-51.731, -57.706, "falklands"),
30+
"mareharbour": Location(-51.902, -58.494, "mareharbour"),
3131
"halley": Location(-75.059, -25.840, "halley"),
3232
"rothera": Location(-67.764, -68.02, "rothera"),
3333
"kep": Location(-54.220, -36.433, "kep"),

0 commit comments

Comments
 (0)