You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #29 from TaskarCenterAtUW/utils-update-1
Updating utilities.
- Delete `update-quest-ids.ps1`
No longer needed. Long Form Quest Definition Schema 3.0.0 includes new quest_id numbering schema.
- Delete `update-exif-recursive.ps1`
No longer needed. Merged into `update-exif.ps1`.
- Update `update-exif.ps1`
Merge in `-Recursive` functionality from old `update-exif-recursive.ps1`
---
Standardize documentation and formatting:
- Update `gtfs-to-tdei-converter.ps1`
- Update `sli-guardian.ps1`
- Update `workspaces-export.ps1`
- Update `workspaces-josm.ps1`
---
- Update `update-exif.ps1`
Replace "GoInfoGame" with "TDEI Tools" and sync version number
- Update `README.md`
Replace "GoInfoGame" with "AVIV ScoutRoute" or "TDEI Tools", fix links
Copy file name to clipboardExpand all lines: README.md
+7-9Lines changed: 7 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Documentation files, schema definitions, and examples.
8
8
9
9
### [Imagery Layers](docs/imagery-layer)
10
10
11
-
[Schema](docs/imagery-layer/schema.json) and [example](docs/imagery-layer/example.json) for imagery layers for use in GoInfoGame.
11
+
[Schema](docs/imagery-layer/schema.json) and [example](docs/imagery-layer/example.json) for imagery layers for use in AVIV ScoutRoute.
12
12
13
13
### [Quest Definitions](docs/quest-definition)
14
14
@@ -18,22 +18,20 @@ Additional documentation and guides can be found on the [TCAT Wiki](https://task
18
18
19
19
## [Images](images)
20
20
21
-
Images of pedestrian infrastructure and related features, intended to be used in GoInfoGame long form quest definitions. Uncropped original non-annotated images are included, and all of the images in the `/images/` directory and its subdirectories are CC0-licensed and free to use by anyone for any purpose.
21
+
Images of pedestrian infrastructure and related features, intended to be used in AVIV ScoutRoute long form quest definitions. Uncropped original non-annotated images are included, and all of the images in the `/images/` directory and its subdirectories are CC0-licensed and free to use by anyone for any purpose.
22
22
23
-
Note that the intent of this resource is to facilitate the functioning of the GoInfoGame app. If you have images that you think would be useful to add - please upload them to [Wikimedia Commons](https://commons.wikimedia.org/wiki/Main_Page)!
23
+
Note that the intent of this resource is to facilitate the functioning of the AVIV ScoutRoute app. If you have images that you think would be useful to add - please upload them to [Wikimedia Commons](https://commons.wikimedia.org/wiki/Main_Page)!
24
24
25
25
## [Quests](quests)
26
26
27
-
GoInfoGame Long Form Quest JSON Definitions for use in [TDEI Workspaces](https://workspaces.sidewalks.washington.edu/), sorted by Environment and Project Group.
27
+
AVIV ScoutRoute Long Form Quest JSON Definitions for use in [TDEI Workspaces](https://workspaces.sidewalks.washington.edu/), sorted by Environment and Project Group.
28
28
29
29
## [Utilities](utilities)
30
30
31
31
Utilities related to the TDEI.
32
32
33
-
-**[GoInfoGame Images Exif Data Update Script](utilities/update-exif.ps1)**
34
-
-**[GoInfoGame Images Exif Data Update Script (Recursive)](utilities/update-exif-recursive.ps1)**
33
+
-**[TDEI Tools Images Exif Data Update Script](utilities/update-exif.ps1)**
Copy file name to clipboardExpand all lines: utilities/gtfs-to-tdei-converter.ps1
+10-22Lines changed: 10 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -1,46 +1,36 @@
1
+
#!/usr/bin/env pwsh
2
+
# This script is designed to be run in a PowerShell environment.
3
+
1
4
# Name: GTFS-to-TDEI Converter Script
2
-
# Version: 3.0.0
3
-
#Description: This script takes a GTFS archive, processes it to convert stops.txt to stops.geojson, and zips the result into an archive ready for upload to TDEI.
5
+
# Version: 4.0.0
6
+
#Date: 2025-09-23
4
7
# Author: Amy Bordenave, Taskar Center for Accessible Technology, University of Washington
5
-
# Date: 2025-09-09
6
8
# License: CC-BY-ND 4.0 International
7
9
8
10
<#
9
11
.SYNOPSIS
10
-
Converts GTFS stops.txt to TDEI-compatible GeoJSON format.
12
+
Converts GTFS stops.txt to TDEI-compatible GeoJSON format
11
13
12
14
.DESCRIPTION
13
15
This script takes a GTFS archive, extracts the stops.txt file, converts it to
14
16
OpenSidewalks-compatible GeoJSON format, and packages it as a ZIP file ready
15
17
for upload to the TDEI (Transportation Data Exchange Initiative).
16
18
17
-
The script validates the input GTFS data, ensures required fields are present,
18
-
and validates coordinate values before conversion.
19
-
20
19
.PARAMETERInputZip
21
20
Path to the GTFS ZIP archive containing stops.txt file.
22
-
This parameter is mandatory.
23
21
24
22
.PARAMETEROutputDir
25
23
Directory where the output stops.zip file will be created.
26
-
If not specified, uses the current working directory.
27
-
The directory will be created if it doesn't exist.
24
+
If not specified, uses the current working directory by default.
0 commit comments