Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Garmin" to the list of correct altitude creators #109

Merged
merged 1 commit into from
Apr 15, 2024
Merged
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
9 changes: 8 additions & 1 deletion pkg/database/workouts_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package database

import (
"math"
"slices"
"time"

"github.com/codingsince1985/geo-golang"
Expand All @@ -13,8 +14,14 @@ import (

var online = true

var correctAltitudeCreators = []string{
"Garmin", "Garmin Connect",
"Apple Watch",
"StravaGPX iPhone", "StravaGPX",
}

func creatorNeedsCorrection(creator string) bool {
return creator != "Garmin Connect" && creator != "Apple Watch" && creator != "StravaGPX iPhone" && creator != "StravaGPX"
return !slices.Contains(correctAltitudeCreators, creator)
}

func normalizeDegrees(val float64) float64 {
Expand Down
Loading