Most GPX files exported from Strava, Komoot, Garmin, Wahoo, or similar apps work out of the box. Track points, route points, waypoints, and elevation data are all supported.
- Upload a GPX file
- Pick a date/time and average speed
- WindAhead fetches hourly wind forecasts from the Open-Meteo API and calculates headwind, crosswind, and tailwind for every segment of your route
Create a docker-compose.yml:
services:
windahead:
image: ghcr.io/dreeveapp/wind-ahead:latest
container_name: windahead
restart: unless-stopped
ports:
- '8080:8080'Then start it:
docker compose up -dAnd open http://localhost:8080. Or without Compose:
docker run -d -p 8080:8080 --name windahead ghcr.io/robiningelbrecht/wind-aheadDreeve - A self-hosted, open-source dashboard for your sports and fitness data

