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
This is a manual update of the site map (last update was in March 2026). The objective is to autogenerate it in our pipeline described in #19
Expected behavior:
Generated based off the SQL query
SELECT
stable_id,
data_type,
CASE
WHEN data_type IN ('gtfs', 'gbfs') THEN geolocation_file_created_date
WHEN data_type = 'gtfs_rt' THEN created_at
END AS updated_at
FROM feed
WHERE operational_status = 'published'
AND status IN ('active', 'future', 'inactive');
its not perfect and has room to be more accurate, but for a quick update including the new feeds it will do.
The oldest date is capped at 2026-03-05 (when the last sitemap was generated)
based on the update
576 new feeds added, 132 stale feeds removed
also gave more priority to gtfs feeds over rt and gbfs
Testing tips:
Briefly go over the sitemap and check if the urls make sense
Please make sure these boxes are checked before submitting your pull request - thanks!
Run the unit tests with yarn test to make sure you didn't break anything
Add or update any needed documentation to the repo
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
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.
Summary:
This is a manual update of the site map (last update was in March 2026). The objective is to autogenerate it in our pipeline described in #19
Expected behavior:
Generated based off the SQL query
its not perfect and has room to be more accurate, but for a quick update including the new feeds it will do.
The oldest date is capped at
2026-03-05(when the last sitemap was generated)based on the update
576 new feeds added, 132 stale feeds removed
also gave more priority to gtfs feeds over rt and gbfs
Testing tips:
Briefly go over the sitemap and check if the urls make sense
Please make sure these boxes are checked before submitting your pull request - thanks!
yarn testto make sure you didn't break anything