Add route files, show overview

This commit is contained in:
Christoph Hagen
2025-08-21 20:26:22 +02:00
parent 43b761b593
commit 9ec207014c
14 changed files with 938 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
import Foundation
struct RouteOverview {
/// The total active energy in kcal
let energy: Double
/// The total distance of the track in meters
let distance: Double
/// The total duration in seconds
let duration: TimeInterval
/// The total ascended altitude in meters
let ascendedElevation: Double
let start: Date?
let end: Date?
}