Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
8dffcc3
Store Visited Locations
Aeonoi Oct 19, 2023
ec0bcaf
Revert "Store Visited Locations"
Aeonoi Oct 20, 2023
4da32b3
Store Visited Locations
Aeonoi Oct 20, 2023
372f90e
Part of ETA algorithm
Aeonoi Jan 30, 2024
964576b
Implementing part of ETA algorithm
Aeonoi Feb 2, 2024
a93c63e
Revert "Implementing part of ETA algorithm"
Aeonoi Feb 2, 2024
f3dd10f
Implemented part of ETA algorithm
Aeonoi Feb 6, 2024
476dd89
Made sure to account for exiting the Union
Aeonoi Feb 9, 2024
c099864
Updated ETA algorithm
Aeonoi Feb 13, 2024
db5aa31
Reverted changes
Aeonoi Feb 13, 2024
c49899e
Improved runtime
Aeonoi Feb 13, 2024
9ee19da
Finished tracking total distance
Aeonoi Feb 15, 2024
e83c0d0
Parsed Data.csv for ETA algorithm
Aeonoi Feb 16, 2024
fa28063
Added filtering
Aeonoi Feb 16, 2024
531ab4f
Changed the algorithm
Aeonoi Feb 16, 2024
069f687
Added some comments and pointers on what to do next
Aeonoi Feb 16, 2024
204c241
Parse data and started tracking avg speed limit
Aeonoi Feb 17, 2024
3c96148
Cleaned up code and made it simpler
Aeonoi Feb 17, 2024
face0fd
Previous work on Python
Aeonoi Feb 17, 2024
f80a7fc
Improved data types
Aeonoi Feb 17, 2024
d98ba01
Changed data types and obtained route data
Aeonoi Feb 27, 2024
994361a
Fixed issue with different day comparison
Aeonoi Mar 4, 2024
71a6c87
Changed some code to work properly
Aeonoi Mar 12, 2024
44c25e7
Merge branch 'main' into route-progress
Aeonoi Mar 12, 2024
70c8ed9
Adjusted code structure, fixed some bugs
Aeonoi Mar 15, 2024
49d37d1
Implemented Get Bus for Android Team
Aeonoi Mar 17, 2024
9489e36
Moved to the bus controller
Aeonoi Mar 17, 2024
eab4307
Changed the route path
Aeonoi Mar 17, 2024
dddaac3
Fixed up the code and worked out the controller
Aeonoi Mar 22, 2024
4322739
Documented and updated code
Aeonoi Mar 29, 2024
70faafb
Changed the way the tracker tracks distance
Aeonoi Mar 29, 2024
cf8e715
Removed old code and rewrote distance tracker
Aeonoi Apr 5, 2024
9c3a63b
Updated locationhistory
Aeonoi Apr 9, 2024
ca279ee
Updated types/names
Aeonoi Apr 12, 2024
a9ef8a3
Updated tracking coordinates in reverse
Aeonoi Apr 16, 2024
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ Package.resolved
.build/
.vs/
.vscode/

.fake
329,821 changes: 329,821 additions & 0 deletions Data.csv

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ let package = Package(
.package(
url: "https://github.com/vincentneo/CoreGPX.git",
from: "0.9.2"
),
.package(
url: "https://github.com/davecom/SwiftPriorityQueue.git",
from: "1.4.0"
)
],
targets: [
Expand Down Expand Up @@ -108,6 +112,10 @@ let package = Package(
.product(
name: "Turf",
package: "turf-swift"
),
.product(
name: "SwiftPriorityQueue",
package: "swiftpriorityqueue"
)
]
)
Expand Down
Loading