-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add departure logging for headway analysis (#675)
- Loading branch information
1 parent
ed5b056
commit fb69602
Showing
18 changed files
with
264 additions
and
851 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
defmodule Engine.LocationsAPI do | ||
@callback for_vehicle(String.t()) :: Locations.Location.t() | ||
@callback for_stop(String.t()) :: [Locations.Location.t()] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
defmodule Engine.PredictionsAPI do | ||
@callback for_stop(String.t(), 0 | 1) :: [Predictions.Prediction.t()] | ||
@callback revenue_vehicles() :: MapSet.t() | ||
end |
Oops, something went wrong.