├── .dockerignore ├── .editorconfig ├── .eslintrc.json ├── .github ├── funding.yml └── workflows │ ├── publish.yml │ ├── smoke-test.yml │ ├── smoke-tests.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-PROSPERITY.md ├── benchmark ├── 4.10.2-2024-07-05.csv ├── 4.7.1-2023-07-11.csv ├── 4.7.2-2023-07-11.csv ├── 4.7.3-2023-07-13.csv ├── 4.7.4-2023-08-02.csv ├── 4.7.5-2023-08-28.csv ├── 4.8.0-2023-09-08.csv ├── arrs_deps_by_non_existent_stop.sql ├── arrs_deps_by_route_name_and_time.sql ├── arrs_deps_by_station_and_time.sql ├── arrs_deps_by_station_and_time_seq_0.sql ├── arrs_deps_by_stop.sql ├── arrs_deps_by_stop_and_time.sql ├── arrs_deps_by_time.sql ├── arrs_deps_by_time_manual.sql ├── arrs_deps_by_trip_and_date.sql ├── as-md.js ├── connections_by_non_existent_stop.sql ├── connections_by_route_name_and_time.sql ├── connections_by_station_and_time.sql ├── connections_by_station_and_time_seq_0.sql ├── connections_by_stop.sql ├── connections_by_stop_and_time.sql ├── connections_by_time.sql ├── connections_by_time_manual.sql ├── connections_by_trip_and_date.sql ├── e02e3ce-2022-07-08.csv ├── index.sql ├── init.sh ├── run.sh ├── stats_by_route_date.sql └── stops_by_distance.sql ├── cli.js ├── docs ├── analysis │ ├── active-trips-by-hour.md │ ├── feed-by-agency-route-stop-and-hour.md │ └── feed-by-route-date.md ├── import-metadata.md ├── multiple-datasets.md └── postgrest.md ├── example.sh ├── index.js ├── lib ├── agency.js ├── calendar.js ├── calendar_dates.js ├── data-error.js ├── deps.js ├── feed_info.js ├── frequencies.js ├── import_metadata.js ├── index.js ├── levels.js ├── pathways.js ├── prerequisites.js ├── routes.js ├── service_days.js ├── shapes.js ├── stats_active_trips_by_hour.js ├── stats_by_agency_route_stop_hour.js ├── stats_by_route_date.js ├── stop_times.js ├── stops.js ├── transfers.js ├── translations.js ├── trips.js └── util.js ├── package.json ├── readme.md ├── scripts └── run-postgraphile.js └── test ├── amtrak-gtfs-2021-10-06.sh ├── amtrak-gtfs-2021-10-06.zip ├── calendar-dates-only.sh ├── calendar-dates-only ├── agency.txt ├── calendar_dates.txt ├── routes.txt ├── stop_times.txt ├── stops.txt └── trips.txt ├── index.sh ├── invalid-empty-agency-id.sh ├── invalid-empty-agency-id ├── agency.txt ├── calendar_dates.txt ├── routes.txt ├── stop_times.txt ├── stops.txt └── trips.txt ├── multiple-schemas.sh ├── postgraphile.sh ├── routes-without-agency-id.sh ├── sample-gtfs-feed-postgraphile-test.graphql ├── sample-gtfs-feed-postgraphile-test.res.json ├── sample-gtfs-feed.sh └── stops-without-level-id.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.github/workflows/smoke-test.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.github/workflows/smoke-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-PROSPERITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/LICENSE-PROSPERITY.md -------------------------------------------------------------------------------- /benchmark/4.10.2-2024-07-05.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/4.10.2-2024-07-05.csv -------------------------------------------------------------------------------- /benchmark/4.7.1-2023-07-11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/4.7.1-2023-07-11.csv -------------------------------------------------------------------------------- /benchmark/4.7.2-2023-07-11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/4.7.2-2023-07-11.csv -------------------------------------------------------------------------------- /benchmark/4.7.3-2023-07-13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/4.7.3-2023-07-13.csv -------------------------------------------------------------------------------- /benchmark/4.7.4-2023-08-02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/4.7.4-2023-08-02.csv -------------------------------------------------------------------------------- /benchmark/4.7.5-2023-08-28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/4.7.5-2023-08-28.csv -------------------------------------------------------------------------------- /benchmark/4.8.0-2023-09-08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/4.8.0-2023-09-08.csv -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_non_existent_stop.sql: -------------------------------------------------------------------------------- 1 | SELECT count(*) 2 | FROM arrivals_departures 3 | WHERE stop_id = 'definitely-non-existent' 4 | -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_route_name_and_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_route_name_and_time.sql -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_station_and_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_station_and_time.sql -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_station_and_time_seq_0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_station_and_time_seq_0.sql -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_stop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_stop.sql -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_stop_and_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_stop_and_time.sql -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_time.sql -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_time_manual.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_time_manual.sql -------------------------------------------------------------------------------- /benchmark/arrs_deps_by_trip_and_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/arrs_deps_by_trip_and_date.sql -------------------------------------------------------------------------------- /benchmark/as-md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/as-md.js -------------------------------------------------------------------------------- /benchmark/connections_by_non_existent_stop.sql: -------------------------------------------------------------------------------- 1 | SELECT count(*) 2 | FROM connections 3 | WHERE from_stop_id = 'definitely-non-existent' 4 | -------------------------------------------------------------------------------- /benchmark/connections_by_route_name_and_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_route_name_and_time.sql -------------------------------------------------------------------------------- /benchmark/connections_by_station_and_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_station_and_time.sql -------------------------------------------------------------------------------- /benchmark/connections_by_station_and_time_seq_0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_station_and_time_seq_0.sql -------------------------------------------------------------------------------- /benchmark/connections_by_stop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_stop.sql -------------------------------------------------------------------------------- /benchmark/connections_by_stop_and_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_stop_and_time.sql -------------------------------------------------------------------------------- /benchmark/connections_by_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_time.sql -------------------------------------------------------------------------------- /benchmark/connections_by_time_manual.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_time_manual.sql -------------------------------------------------------------------------------- /benchmark/connections_by_trip_and_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/connections_by_trip_and_date.sql -------------------------------------------------------------------------------- /benchmark/e02e3ce-2022-07-08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/e02e3ce-2022-07-08.csv -------------------------------------------------------------------------------- /benchmark/index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/index.sql -------------------------------------------------------------------------------- /benchmark/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/init.sh -------------------------------------------------------------------------------- /benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/run.sh -------------------------------------------------------------------------------- /benchmark/stats_by_route_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/stats_by_route_date.sql -------------------------------------------------------------------------------- /benchmark/stops_by_distance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/benchmark/stops_by_distance.sql -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/cli.js -------------------------------------------------------------------------------- /docs/analysis/active-trips-by-hour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/docs/analysis/active-trips-by-hour.md -------------------------------------------------------------------------------- /docs/analysis/feed-by-agency-route-stop-and-hour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/docs/analysis/feed-by-agency-route-stop-and-hour.md -------------------------------------------------------------------------------- /docs/analysis/feed-by-route-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/docs/analysis/feed-by-route-date.md -------------------------------------------------------------------------------- /docs/import-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/docs/import-metadata.md -------------------------------------------------------------------------------- /docs/multiple-datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/docs/multiple-datasets.md -------------------------------------------------------------------------------- /docs/postgrest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/docs/postgrest.md -------------------------------------------------------------------------------- /example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/example.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/index.js -------------------------------------------------------------------------------- /lib/agency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/agency.js -------------------------------------------------------------------------------- /lib/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/calendar.js -------------------------------------------------------------------------------- /lib/calendar_dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/calendar_dates.js -------------------------------------------------------------------------------- /lib/data-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/data-error.js -------------------------------------------------------------------------------- /lib/deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/deps.js -------------------------------------------------------------------------------- /lib/feed_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/feed_info.js -------------------------------------------------------------------------------- /lib/frequencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/frequencies.js -------------------------------------------------------------------------------- /lib/import_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/import_metadata.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/levels.js -------------------------------------------------------------------------------- /lib/pathways.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/pathways.js -------------------------------------------------------------------------------- /lib/prerequisites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/prerequisites.js -------------------------------------------------------------------------------- /lib/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/routes.js -------------------------------------------------------------------------------- /lib/service_days.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/service_days.js -------------------------------------------------------------------------------- /lib/shapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/shapes.js -------------------------------------------------------------------------------- /lib/stats_active_trips_by_hour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/stats_active_trips_by_hour.js -------------------------------------------------------------------------------- /lib/stats_by_agency_route_stop_hour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/stats_by_agency_route_stop_hour.js -------------------------------------------------------------------------------- /lib/stats_by_route_date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/stats_by_route_date.js -------------------------------------------------------------------------------- /lib/stop_times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/stop_times.js -------------------------------------------------------------------------------- /lib/stops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/stops.js -------------------------------------------------------------------------------- /lib/transfers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/transfers.js -------------------------------------------------------------------------------- /lib/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/translations.js -------------------------------------------------------------------------------- /lib/trips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/trips.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/run-postgraphile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/scripts/run-postgraphile.js -------------------------------------------------------------------------------- /test/amtrak-gtfs-2021-10-06.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/amtrak-gtfs-2021-10-06.sh -------------------------------------------------------------------------------- /test/amtrak-gtfs-2021-10-06.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/amtrak-gtfs-2021-10-06.zip -------------------------------------------------------------------------------- /test/calendar-dates-only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/calendar-dates-only.sh -------------------------------------------------------------------------------- /test/calendar-dates-only/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/calendar-dates-only/agency.txt -------------------------------------------------------------------------------- /test/calendar-dates-only/calendar_dates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/calendar-dates-only/calendar_dates.txt -------------------------------------------------------------------------------- /test/calendar-dates-only/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/calendar-dates-only/routes.txt -------------------------------------------------------------------------------- /test/calendar-dates-only/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/calendar-dates-only/stop_times.txt -------------------------------------------------------------------------------- /test/calendar-dates-only/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/calendar-dates-only/stops.txt -------------------------------------------------------------------------------- /test/calendar-dates-only/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/calendar-dates-only/trips.txt -------------------------------------------------------------------------------- /test/index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/index.sh -------------------------------------------------------------------------------- /test/invalid-empty-agency-id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/invalid-empty-agency-id.sh -------------------------------------------------------------------------------- /test/invalid-empty-agency-id/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/invalid-empty-agency-id/agency.txt -------------------------------------------------------------------------------- /test/invalid-empty-agency-id/calendar_dates.txt: -------------------------------------------------------------------------------- 1 | service_id,date,exception_type 2 | some-days,20230713,1 3 | -------------------------------------------------------------------------------- /test/invalid-empty-agency-id/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/invalid-empty-agency-id/routes.txt -------------------------------------------------------------------------------- /test/invalid-empty-agency-id/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/invalid-empty-agency-id/stop_times.txt -------------------------------------------------------------------------------- /test/invalid-empty-agency-id/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/invalid-empty-agency-id/stops.txt -------------------------------------------------------------------------------- /test/invalid-empty-agency-id/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/invalid-empty-agency-id/trips.txt -------------------------------------------------------------------------------- /test/multiple-schemas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/multiple-schemas.sh -------------------------------------------------------------------------------- /test/postgraphile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/postgraphile.sh -------------------------------------------------------------------------------- /test/routes-without-agency-id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/routes-without-agency-id.sh -------------------------------------------------------------------------------- /test/sample-gtfs-feed-postgraphile-test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/sample-gtfs-feed-postgraphile-test.graphql -------------------------------------------------------------------------------- /test/sample-gtfs-feed-postgraphile-test.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/sample-gtfs-feed-postgraphile-test.res.json -------------------------------------------------------------------------------- /test/sample-gtfs-feed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/sample-gtfs-feed.sh -------------------------------------------------------------------------------- /test/stops-without-level-id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/public-transport/gtfs-via-postgres/HEAD/test/stops-without-level-id.sh --------------------------------------------------------------------------------