Packages

GTFS tools for the time being for Elixir applications.

Current section

Files

Jump to
transit lib gtfs route.ex
Raw

lib/gtfs/route.ex

defmodule GTFS.Route do
# conditionally required: route_short_name, route_long_name
@enforce_keys [:route_id, :route_type]
defstruct ~w(
agency_id
route_color
route_desc
route_id
route_long_name
route_short_name
route_text_color
route_type
route_url
trips
shapes
)a
end