mta-gtfs-static 0.0.0-202505271200 → 0.0.0-202505271305
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/gtfs_js/subway_supplemented/stop_times.js +15615 -16667
- package/gtfs_js/subway_supplemented/trips.js +428 -428
- package/gtfs_json/subway_supplemented/stop_times.json +15615 -16667
- package/gtfs_json/subway_supplemented/trips.json +428 -428
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,8 +4,9 @@ This package contains JSON exports of the static GTFS data. It is updated once p
|
|
|
4
4
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
|
-
You can
|
|
7
|
+
You can either import either the JS or JSON files. Depending on your needs.
|
|
8
8
|
|
|
9
9
|
```js
|
|
10
|
-
import
|
|
10
|
+
import subway_routes from "mta-gtfs-static/gtfs_js/subway/routes.js";
|
|
11
|
+
import subway_routes from "mta-gtfs-static/gtfs_json/subway/routes.js";
|
|
11
12
|
```
|