Regenerate bus schedule for 2026 Spring: adjust times and flags#6
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the campus bus schedule dataset to the 2026 spring semester, adjusting a handful of departure times and weekend-inclusion flags, and regenerating the published JSON consumed by the app/site.
Changes:
- Updated several
RouteSchedulePentries (times + weekend flags) for routes A/B/C/E intools/bus_data_gen.py. - Updated schedule metadata (
messageandurl) to the 2026 spring reference. - Regenerated
static/bus_data_v3.jsonto reflect the updated generator output.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| tools/bus_data_gen.py | Adjusts schedule source data and updates 2026 spring message/source URL used for generation. |
| static/bus_data_v3.json | Regenerated serialized bus schedule + metadata to match updated generator inputs. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
tools/bus_data_gen.pyby changing departure times and boolean weekend flags for severalRouteSchedulePentries (notablyrsA,rsB,rsC,rsE, and others) and updated the message text and sourceurlto the 2026 spring reference.static/bus_data_v3.json, replacing the previous 2025 autumn data with the updated 2026 spring data.message/urlmetadata.Testing
python tools/bus_data_gen.pyto producestatic/bus_data_v3.json, and the script executed successfully.python -c "import json; json.load(open('static/bus_data_v3.json'))", which succeeded without errors.Codex Task