Skip to content

Commit 39adafa

Browse files
committed
fix broken README links
1 parent 11396ce commit 39adafa

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Canonical GTFS Schedule Validator
2-
[![Test Package Document](https://github.com/MobilityData/gtfs-validator/workflows/Test%20Package%20Document/badge.svg)](https://github.com/MobilityData/gtfs-validator/actions?query=workflow%3A%22Test+Package+Document%22) ![End to end](https://github.com/MobilityData/gtfs-validator/workflows/End%20to%20end/badge.svg) ![End to end big](https://github.com/MobilityData/gtfs-validator/workflows/End%20to%20end%20big/badge.svg) ![End to end 100](https://github.com/MobilityData/gtfs-validator/workflows/End%20to%20end%20100/badge.svg) [![Rule acceptance tests](https://github.com/MobilityData/gtfs-validator/actions/workflows/acceptance_test.yml/badge.svg)](https://github.com/MobilityData/gtfs-validator/actions/workflows/acceptance_test.yml) ![Docker image](https://github.com/MobilityData/gtfs-validator/actions/workflows/docker.yml/badge.svg) [![Join the gtfs-validator chat](https://badgen.net/badge/slack/%20/green?icon=slack)](https://share.mobilitydata.org/slack)
2+
[![Test Package Document](https://github.com/MobilityData/gtfs-validator/workflows/Test%20Package%20Document/badge.svg)](https://github.com/MobilityData/gtfs-validator/actions?query=workflow%3A%22Test+Package+Document%22) ![End to end](https://github.com/MobilityData/gtfs-validator/workflows/End%20to%20end/badge.svg) [![Rule acceptance tests](https://github.com/MobilityData/gtfs-validator/actions/workflows/acceptance_test.yml/badge.svg)](https://github.com/MobilityData/gtfs-validator/actions/workflows/acceptance_test.yml) ![Docker image](https://github.com/MobilityData/gtfs-validator/actions/workflows/docker.yml/badge.svg) [![Join the gtfs-validator chat](https://badgen.net/badge/slack/%20/green?icon=slack)](https://share.mobilitydata.org/slack)
33

44

55
A [General Transit Feed Specification (GTFS) Schedule](https://gtfs.mobilitydata.org/spec/gtfs-schedule) (static) feed validator, maintained by [MobilityData](https://mobilitydata.org).
@@ -17,7 +17,7 @@ A [General Transit Feed Specification (GTFS) Schedule](https://gtfs.mobilitydata
1717

1818

1919
<p align="center">
20-
<a href="https://github.com/MobilityData/gtfs-validator/blob/master/RULES.md">☑️ List of rules implemented</a>
20+
<a href="https://gtfs-validator.mobilitydata.org/rules.html">☑️ List of rules implemented</a>
2121
</p>
2222

2323
<p align="center">
@@ -32,7 +32,7 @@ This README contains information for the latest version of the project, which is
3232
This is a cross-platform application written in Java that performs the following steps:
3333
1. Loads input GTFS zip file from a URL or disk.
3434
2. Checks file integrity, numeric type parsing and ranges.
35-
3. Performs complete validation against the [GTFS Schedule standard](https://gtfs.org/schedule/reference/#h.hc443y62gb8c).
35+
3. Performs complete validation against the [GTFS Schedule standard](https://gtfs.org/schedule/reference).
3636
4. Provides an easy-to-use validation report in HTML format that can be opened in the browser and shared with other parties. See an [example of a validation report](https://htmlpreview.github.io/?https://github.com/MobilityData/gtfs-validator/blob/master/docs/report.html). The report is also available in JSON format that can be used for parsing and running additional analyses.
3737

3838
<video src="https://user-images.githubusercontent.com/63653518/234697111-59cbc5de-5bf2-4c49-8474-fd41ac51a745.mp4" controls="controls" style="max-width: 730px;">
@@ -168,18 +168,18 @@ where:
168168
169169
`... c:/myDirectory:/work ...`
170170
171-
The validator can then be executed via bash commands. See the [preceeding instructions for command line usage](#run-the-app-via-command-line).
171+
The validator can then be executed via bash commands. See the [preceeding instructions for command line usage](#using-the-command-line).
172172
173173
### Visualize the results
174174
In the output directory, the reports will be created as described [here](#visualize-the-results).
175175
176176
# Validation rules
177-
* See the list of all the noticed emitted by this validator in [RULES.md](/RULES.md).
177+
* See the list of all the noticed emitted by this validator [here](https://gtfs-validator.mobilitydata.org/rules.html).
178178
* If you'd like to map notice names between two validator versions, see [NOTICE_MIGRATION.md](/docs/NOTICE_MIGRATION.md).
179179
* Possible future rules for:
180-
* [GTFS Reference](https://github.com/MobilityData/gtfs-validator/labels/Rules%20-%20GTFS%20Reference)
181-
* [GTFS Best Practices](https://github.com/MobilityData/gtfs-validator/labels/Rules%20-%20GTFS%20Best%20Practices)
182-
* [Community rules](https://github.com/MobilityData/gtfs-validator/labels/Rules%20-%20Community%20rules)
180+
* [GTFS Reference](https://github.com/MobilityData/gtfs-validator/labels/GTFS%20Reference)
181+
* [GTFS Best Practices](https://github.com/MobilityData/gtfs-validator/labels/GTFS%20Best%20Practices)
182+
* [Community rules](https://github.com/MobilityData/gtfs-validator/labels/Community%20rules)
183183

184184
Have a suggestion for a new rule? Open [an issue](https://github.com/MobilityData/gtfs-validator/issues/new/choose). You can see the complete process for adding new rules on the ["Adding new rules"](/docs/NEW_RULES.md) page.
185185

@@ -200,10 +200,10 @@ Instructions to build the project from the command-line using [Gradle](https://g
200200
The architecture of the `gtfs-validator` is described on our [Architecture page](/docs/ARCHITECTURE.md).
201201

202202
# Acceptance tests
203-
In order to avoid sudden changes in the validation output that might declare previously valid datasets invalid, all code changes in pull requests are tested against GTFS datasets in the [MobilityDatabase](http://old.mobilitydatabase.org/wiki/Main_Page). The acceptance test process is described in [ACCEPTANCE_TESTS.md](docs/ACCEPTANCE_TESTS.md).
203+
In order to avoid sudden changes in the validation output that might declare previously valid datasets invalid, all code changes in pull requests are tested against GTFS datasets in the [MobilityDatabase](https://mobilitydatabase.org). The acceptance test process is described in [ACCEPTANCE_TESTS.md](docs/ACCEPTANCE_TESTS.md).
204204

205205
# Projects based on this validator
206-
[CalTrans California Integrated Travel Project (Cal-ITP) GTFS Validator API](https://github.com/cal-itp/gtfs-validator-api) - A thin wrapper around MobilityData/gtfs-validator.
206+
[CalTrans California Integrated Travel Project (Cal-ITP) GTFS Validator API](https://github.com/cal-itp/data-infra/tree/main/jobs/gtfs-schedule-validator) - A thin wrapper around MobilityData/gtfs-validator.
207207

208208
# License
209209
Code licensed under the [Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0).

0 commit comments

Comments
 (0)