Adjust European short trip heuristic from >3 days to >1 day to correctly detect when user has returned home from European trips. This fixes the April 29-30, 2023 case where the location incorrectly showed "Sankt Georg, Hamburg" instead of "Bristol" when the user was free (no events scheduled) after the foss-north trip ended on April 27. The previous logic required more than 3 days to pass before assuming return home from European countries, but for short European trips by rail/ferry, users typically return within 1-2 days. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
696 B
Python
Executable file
34 lines
696 B
Python
Executable file
#!/usr/bin/python3
|
|
"""Load YAML data to ensure validity."""
|
|
|
|
from datetime import date
|
|
|
|
import agenda
|
|
import agenda.conference
|
|
import agenda.data
|
|
import agenda.travel
|
|
import agenda.trip
|
|
|
|
config = __import__("config.default", fromlist=[""])
|
|
data_dir = config.PERSONAL_DATA
|
|
|
|
currencies = set(config.CURRENCIES + ["GBP"])
|
|
|
|
|
|
def list_weekends() -> None:
|
|
today = date.today()
|
|
|
|
start = date(today.year, 1, 1)
|
|
trip_list = agenda.trip.build_trip_list(data_dir)
|
|
busy_events = agenda.busy.get_busy_events(start, data_dir, trip_list)
|
|
|
|
# pprint(busy_events)
|
|
|
|
weekends = agenda.busy.weekends(start, busy_events)
|
|
|
|
# pprint(weekends)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
list_weekends()
|