-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…-omx-format Activitysim skims omx format
- Loading branch information
Showing
13 changed files
with
482 additions
and
44 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package beam.router.skim | ||
|
||
import enumeratum.{Enum, EnumEntry} | ||
|
||
import scala.collection.immutable | ||
|
||
/** | ||
* @author Dmitry Openkov | ||
*/ | ||
sealed abstract class ActivitySimMetric extends EnumEntry | ||
|
||
object ActivitySimMetric extends Enum[ActivitySimMetric] { | ||
val values: immutable.IndexedSeq[ActivitySimMetric] = findValues | ||
|
||
case object TOTIVT extends ActivitySimMetric | ||
case object FERRYIVT extends ActivitySimMetric | ||
case object FAR extends ActivitySimMetric | ||
case object XWAIT extends ActivitySimMetric | ||
case object KEYIVT extends ActivitySimMetric | ||
case object DTIM extends ActivitySimMetric | ||
case object IWAIT extends ActivitySimMetric | ||
case object BOARDS extends ActivitySimMetric | ||
case object DDIST extends ActivitySimMetric | ||
case object WAUX extends ActivitySimMetric | ||
case object BTOLL extends ActivitySimMetric | ||
case object VTOLL extends ActivitySimMetric | ||
case object TIME extends ActivitySimMetric | ||
case object DIST extends ActivitySimMetric | ||
case object WEGR extends ActivitySimMetric | ||
case object WACC extends ActivitySimMetric | ||
case object IVT extends ActivitySimMetric | ||
case object TRIPS extends ActivitySimMetric | ||
case object FAILURES extends ActivitySimMetric | ||
} |
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
Oops, something went wrong.