├── 2016 ├── agency.txt ├── calendar_dates.txt ├── feed_info.txt ├── routes.txt ├── stop_times.txt ├── stops.txt └── trips.txt ├── 2017 ├── agency.txt ├── calendar_dates.txt ├── feed_info.txt ├── routes.txt ├── stop_times.txt ├── stops.txt └── trips.txt ├── 2018 ├── agency.txt ├── calendar_dates.txt ├── feed_info.txt ├── routes.txt ├── stop_times.txt ├── stops.txt └── trips.txt ├── 2019 ├── README.md ├── agency.txt ├── calendar_dates.txt ├── feed_info.txt ├── routes.txt ├── stop_times.txt ├── stops.txt └── trips.txt ├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | secret.md -------------------------------------------------------------------------------- /2016/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2016/agency.txt -------------------------------------------------------------------------------- /2016/calendar_dates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2016/calendar_dates.txt -------------------------------------------------------------------------------- /2016/feed_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2016/feed_info.txt -------------------------------------------------------------------------------- /2016/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2016/routes.txt -------------------------------------------------------------------------------- /2016/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2016/stop_times.txt -------------------------------------------------------------------------------- /2016/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2016/stops.txt -------------------------------------------------------------------------------- /2016/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2016/trips.txt -------------------------------------------------------------------------------- /2017/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2017/agency.txt -------------------------------------------------------------------------------- /2017/calendar_dates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2017/calendar_dates.txt -------------------------------------------------------------------------------- /2017/feed_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2017/feed_info.txt -------------------------------------------------------------------------------- /2017/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2017/routes.txt -------------------------------------------------------------------------------- /2017/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2017/stop_times.txt -------------------------------------------------------------------------------- /2017/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2017/stops.txt -------------------------------------------------------------------------------- /2017/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2017/trips.txt -------------------------------------------------------------------------------- /2018/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2018/agency.txt -------------------------------------------------------------------------------- /2018/calendar_dates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2018/calendar_dates.txt -------------------------------------------------------------------------------- /2018/feed_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2018/feed_info.txt -------------------------------------------------------------------------------- /2018/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2018/routes.txt -------------------------------------------------------------------------------- /2018/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2018/stop_times.txt -------------------------------------------------------------------------------- /2018/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2018/stops.txt -------------------------------------------------------------------------------- /2018/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2018/trips.txt -------------------------------------------------------------------------------- /2019/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/README.md -------------------------------------------------------------------------------- /2019/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/agency.txt -------------------------------------------------------------------------------- /2019/calendar_dates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/calendar_dates.txt -------------------------------------------------------------------------------- /2019/feed_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/feed_info.txt -------------------------------------------------------------------------------- /2019/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/routes.txt -------------------------------------------------------------------------------- /2019/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/stop_times.txt -------------------------------------------------------------------------------- /2019/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/stops.txt -------------------------------------------------------------------------------- /2019/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/2019/trips.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredlockheed/db-fv-gtfs/HEAD/README.md --------------------------------------------------------------------------------