Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion polarrouteserver/route_api/fixtures/locations_bas.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion request_route/request_route.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
Loading