Washington DC Metro Train Groups

Request to add a schema to the Washington DC Metro App to filter by “Train Group.” The WMATA StationPrediction API already returns this value. Using it as a filter will allow users to select a direction for the departing trains.

trainGroup = [
schema.Option(
display = “1 - Eastbound”,
value = “1”,
),
schema.Option(
display = “2 - Westbound”,
value = “2”,
),
schema.Option(
display = “3 - All”,
value = “3”,
),
]

It resolves this feature request:
https://discuss.tidbyt.com/t/washington-metro-select-direction/5298