Skip to content

Commit

Permalink
make historical model
Browse files Browse the repository at this point in the history
  • Loading branch information
kylerchin committed Oct 22, 2024
1 parent 6c2776d commit f68aaed
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/cholla/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Cholla

Goals of this submodule:

Independent time keeping of when vehicles pass a location based on GPS position data

Independent forecasting of future arrival times

Effectively throwing out invalid trip update stop times and making better ones

(Copying this paper: https://link.springer.com/article/10.1007/s11067-021-09541-w )
4 changes: 4 additions & 0 deletions src/cholla/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pub struct HistoricalKey {
pub date: chrono::NaiveDate,
pub trip_id: compact_str::CompactString,
}
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ pub mod ip_to_location;
pub mod maple_syrup;
pub mod models;
pub mod postgis_to_diesel;
pub mod cholla;
pub mod postgres_tools;
pub mod schema;
pub mod validate_gtfs_rt;
Expand Down

0 comments on commit f68aaed

Please sign in to comment.