├── .editorconfig ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── code_bug.md │ ├── code_feature.md │ ├── spec_bug.md │ └── spec_feature.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── clean-docs.yml │ ├── docs.yml │ ├── validate_package_noop.yml │ ├── validate_package_schema.yml │ ├── validate_samples.yml │ ├── validate_table_schemas.yml │ └── validate_tables_noop.yml ├── .gitignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE-APACHE-2.0 ├── LICENSE-CC-BY-4.0 ├── LICENSES ├── README.md ├── bin ├── replace-spec-in-datapackage ├── utils ├── validate-datapackage └── validate-datapackage-to-profile ├── contributors.md ├── docs ├── architecture.md ├── assets │ ├── bus-surf.svg │ └── tides.ico ├── awesome.md ├── datapackage.md ├── development.md ├── documentation.md ├── governance.md ├── governance │ ├── actions.md │ ├── actions │ │ ├── 2023-11-29 approve-change-management-policy.md │ │ ├── 2023-11-29 board-expansion.md │ │ ├── 2023-12-06 designate-tides-board-coordinator.md │ │ ├── 2023-12-06 designate-tides-manager.md │ │ ├── 2024-12-04 board-member-update.md │ │ └── artifacts │ │ │ ├── 2023-11-29.board.expansion.announcement.pdf │ │ │ ├── 2024-01-03.MOU.Management.MobilityData.pdf │ │ │ └── 2024-12-04.board change announcement.pdf │ ├── meetings.md │ └── policies │ │ ├── CLA.md │ │ ├── change-management.md │ │ └── code-of-conduct.md ├── index.md ├── requirements.txt ├── samples.md ├── stylesheets │ └── tides.css └── tables.md ├── main.py ├── mkdocs.yml ├── requirements.txt ├── samples ├── README.md └── template │ ├── README.md │ ├── TIDES │ ├── datapackage.json │ ├── devices.csv │ ├── fare_transactions.csv │ ├── operators.csv │ ├── passenger_events.csv │ ├── station_activities.csv │ ├── stop_visits.csv │ ├── train_cars.csv │ ├── trips_performed.csv │ ├── vehicle_locations.csv │ ├── vehicle_train_cars.csv │ └── vehicles.csv │ └── scripts │ ├── create_template_files.py │ └── requirements.txt ├── spec ├── devices.schema.json ├── fare_transactions.schema.json ├── operators.schema.json ├── passenger_events.schema.json ├── station_activities.schema.json ├── stop_visits.schema.json ├── table-schema.json ├── tides-datapackage-profile.json ├── tides.spec.json ├── train_cars.schema.json ├── trips_performed.schema.json ├── vehicle_locations.schema.json ├── vehicle_train_cars.schema.json └── vehicles.schema.json └── tests ├── test_local_spec ├── test_samples_to_canonical ├── test_samples_to_local ├── validate_profile ├── validate_samples └── validate_table_schemas /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/code_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/ISSUE_TEMPLATE/code_bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/code_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/ISSUE_TEMPLATE/code_feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/spec_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/ISSUE_TEMPLATE/spec_bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/spec_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/ISSUE_TEMPLATE/spec_feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/clean-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/workflows/clean-docs.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/validate_package_noop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/workflows/validate_package_noop.yml -------------------------------------------------------------------------------- /.github/workflows/validate_package_schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/workflows/validate_package_schema.yml -------------------------------------------------------------------------------- /.github/workflows/validate_samples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/workflows/validate_samples.yml -------------------------------------------------------------------------------- /.github/workflows/validate_table_schemas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/workflows/validate_table_schemas.yml -------------------------------------------------------------------------------- /.github/workflows/validate_tables_noop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.github/workflows/validate_tables_noop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-APACHE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/LICENSE-APACHE-2.0 -------------------------------------------------------------------------------- /LICENSE-CC-BY-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/LICENSE-CC-BY-4.0 -------------------------------------------------------------------------------- /LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/LICENSES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/README.md -------------------------------------------------------------------------------- /bin/replace-spec-in-datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/bin/replace-spec-in-datapackage -------------------------------------------------------------------------------- /bin/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/bin/utils -------------------------------------------------------------------------------- /bin/validate-datapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/bin/validate-datapackage -------------------------------------------------------------------------------- /bin/validate-datapackage-to-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/bin/validate-datapackage-to-profile -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/contributors.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/assets/bus-surf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/assets/bus-surf.svg -------------------------------------------------------------------------------- /docs/assets/tides.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/assets/tides.ico -------------------------------------------------------------------------------- /docs/awesome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/awesome.md -------------------------------------------------------------------------------- /docs/datapackage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/datapackage.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- 1 | # Development 2 | 3 | {{ include_file( 'CONTRIBUTING.md')}} 4 | -------------------------------------------------------------------------------- /docs/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/documentation.md -------------------------------------------------------------------------------- /docs/governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance.md -------------------------------------------------------------------------------- /docs/governance/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions.md -------------------------------------------------------------------------------- /docs/governance/actions/2023-11-29 approve-change-management-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/2023-11-29 approve-change-management-policy.md -------------------------------------------------------------------------------- /docs/governance/actions/2023-11-29 board-expansion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/2023-11-29 board-expansion.md -------------------------------------------------------------------------------- /docs/governance/actions/2023-12-06 designate-tides-board-coordinator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/2023-12-06 designate-tides-board-coordinator.md -------------------------------------------------------------------------------- /docs/governance/actions/2023-12-06 designate-tides-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/2023-12-06 designate-tides-manager.md -------------------------------------------------------------------------------- /docs/governance/actions/2024-12-04 board-member-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/2024-12-04 board-member-update.md -------------------------------------------------------------------------------- /docs/governance/actions/artifacts/2023-11-29.board.expansion.announcement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/artifacts/2023-11-29.board.expansion.announcement.pdf -------------------------------------------------------------------------------- /docs/governance/actions/artifacts/2024-01-03.MOU.Management.MobilityData.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/artifacts/2024-01-03.MOU.Management.MobilityData.pdf -------------------------------------------------------------------------------- /docs/governance/actions/artifacts/2024-12-04.board change announcement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/actions/artifacts/2024-12-04.board change announcement.pdf -------------------------------------------------------------------------------- /docs/governance/meetings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/meetings.md -------------------------------------------------------------------------------- /docs/governance/policies/CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/policies/CLA.md -------------------------------------------------------------------------------- /docs/governance/policies/change-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/policies/change-management.md -------------------------------------------------------------------------------- /docs/governance/policies/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/governance/policies/code-of-conduct.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | {{ include_file('README.md', downshift_h1= False) }} 2 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/samples.md -------------------------------------------------------------------------------- /docs/stylesheets/tides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/stylesheets/tides.css -------------------------------------------------------------------------------- /docs/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/docs/tables.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/main.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/README.md -------------------------------------------------------------------------------- /samples/template/TIDES/datapackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/datapackage.json -------------------------------------------------------------------------------- /samples/template/TIDES/devices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/devices.csv -------------------------------------------------------------------------------- /samples/template/TIDES/fare_transactions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/fare_transactions.csv -------------------------------------------------------------------------------- /samples/template/TIDES/operators.csv: -------------------------------------------------------------------------------- 1 | operator_id 2 | -------------------------------------------------------------------------------- /samples/template/TIDES/passenger_events.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/passenger_events.csv -------------------------------------------------------------------------------- /samples/template/TIDES/station_activities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/station_activities.csv -------------------------------------------------------------------------------- /samples/template/TIDES/stop_visits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/stop_visits.csv -------------------------------------------------------------------------------- /samples/template/TIDES/train_cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/train_cars.csv -------------------------------------------------------------------------------- /samples/template/TIDES/trips_performed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/trips_performed.csv -------------------------------------------------------------------------------- /samples/template/TIDES/vehicle_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/vehicle_locations.csv -------------------------------------------------------------------------------- /samples/template/TIDES/vehicle_train_cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/vehicle_train_cars.csv -------------------------------------------------------------------------------- /samples/template/TIDES/vehicles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/TIDES/vehicles.csv -------------------------------------------------------------------------------- /samples/template/scripts/create_template_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/samples/template/scripts/create_template_files.py -------------------------------------------------------------------------------- /samples/template/scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | frictionless 2 | -------------------------------------------------------------------------------- /spec/devices.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/devices.schema.json -------------------------------------------------------------------------------- /spec/fare_transactions.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/fare_transactions.schema.json -------------------------------------------------------------------------------- /spec/operators.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/operators.schema.json -------------------------------------------------------------------------------- /spec/passenger_events.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/passenger_events.schema.json -------------------------------------------------------------------------------- /spec/station_activities.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/station_activities.schema.json -------------------------------------------------------------------------------- /spec/stop_visits.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/stop_visits.schema.json -------------------------------------------------------------------------------- /spec/table-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/table-schema.json -------------------------------------------------------------------------------- /spec/tides-datapackage-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/tides-datapackage-profile.json -------------------------------------------------------------------------------- /spec/tides.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/tides.spec.json -------------------------------------------------------------------------------- /spec/train_cars.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/train_cars.schema.json -------------------------------------------------------------------------------- /spec/trips_performed.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/trips_performed.schema.json -------------------------------------------------------------------------------- /spec/vehicle_locations.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/vehicle_locations.schema.json -------------------------------------------------------------------------------- /spec/vehicle_train_cars.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/vehicle_train_cars.schema.json -------------------------------------------------------------------------------- /spec/vehicles.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/spec/vehicles.schema.json -------------------------------------------------------------------------------- /tests/test_local_spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/tests/test_local_spec -------------------------------------------------------------------------------- /tests/test_samples_to_canonical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/tests/test_samples_to_canonical -------------------------------------------------------------------------------- /tests/test_samples_to_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/tests/test_samples_to_local -------------------------------------------------------------------------------- /tests/validate_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/tests/validate_profile -------------------------------------------------------------------------------- /tests/validate_samples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/tests/validate_samples -------------------------------------------------------------------------------- /tests/validate_table_schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIDES-transit/TIDES/HEAD/tests/validate_table_schemas --------------------------------------------------------------------------------