{"id":33044447,"url":"https://github.com/laidig/gtfs-rt-printer","last_synced_at":"2025-11-16T20:01:53.972Z","repository":{"id":140932356,"uuid":"88757151","full_name":"laidig/gtfs-rt-printer","owner":"laidig","description":"Utility to print out GTFS-Realtime","archived":false,"fork":false,"pushed_at":"2018-06-18T21:14:18.000Z","size":27,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-11T19:42:39.907Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/laidig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-04-19T14:52:49.000Z","updated_at":"2024-03-21T12:25:45.000Z","dependencies_parsed_at":"2024-01-11T19:16:36.180Z","dependency_job_id":"7d6fb6a9-7cbb-42e7-bca9-0da2c6e9817d","html_url":"https://github.com/laidig/gtfs-rt-printer","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/laidig/gtfs-rt-printer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laidig%2Fgtfs-rt-printer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laidig%2Fgtfs-rt-printer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laidig%2Fgtfs-rt-printer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laidig%2Fgtfs-rt-printer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/laidig","download_url":"https://codeload.github.com/laidig/gtfs-rt-printer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laidig%2Fgtfs-rt-printer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284767947,"owners_count":27060132,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-16T02:00:05.974Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-11-14T00:00:28.414Z","updated_at":"2025-11-16T20:01:53.959Z","avatar_url":"https://github.com/laidig.png","language":"Java","funding_links":[],"categories":["Producing Data","Uncategorized"],"sub_categories":["GTFS Realtime","Uncategorized"],"readme":"# gtfs-rt-printer\n\nUtility that loads a GTFS-RT from a file or URL and prints the results. It includes extension support, such as for NYCT, and support for several methods of authentication. \n\n# Download\n[JAR file](https://github.com/laidig/gtfs-rt-printer/releases/latest)\n\n# Requirements\n* Java 8 \n* for Java 7 see older [release](https://github.com/laidig/gtfs-rt-printer/releases/download/0.0.4/gtfs-rt-printer-0.0.4.jar) *note:* this does not support headers.\n\n# Usage\n\n## Loading from a URL\n     $ java -jar gtfs-rt-printer-1.0.0.jar http://localhost:8001/tripUpdates\n     \n     loading http://localhost:8001/tripUpdates\n     feed contains 459 messages\n     trip {\n       trip_id: \"A20171105WKD_090150_4..S06R\"\n       start_date: \"20180426\"\n       route_id: \"4\"\n       [transit_realtime.nyct_trip_descriptor] {\n         train_id: \"04 1507+ WDL/UTI\"\n         is_assigned: true\n         direction: SOUTH\n       }\n     }\n     stop_time_update {\n       arrival {\n         time: 1524770508\n       }\n       departure {\n         time: 1524770508\n       }\n       stop_id: \"413S\"\n       [transit_realtime.nyct_stop_time_update] {\n         scheduled_track: \"1\"\n       }\n     }\n     ...\n    \n## Loading from a file\n    $ java -jar gtfs-rt-printer-1.1.0.jar ../src/test/resources/bart.pb| head\n      loading ../src/test/resources/bart.pb\n      feed contains 42 entities\n      trip {\n        trip_id: \"1010958SAT\"\n      }\n      stop_time_update {\n        stop_sequence: 17\n        departure {\n          delay: 120\n          uncertainty: 30\n          \n\n## Sending HTTP GET Headers\n    $ java -jar gtfs-rt-printer-1.0.0.jar -header 'Accept: application/x-google-protobuf' -header 'Authorization: apikey ' https://api.transport.nsw.gov.au/v1/gtfs/realtime/sydneytrains | head\n    loading https://api.transport.nsw.gov.au/v1/gtfs/realtime/sydneytrains\n    Setting header Accept:  application/x-google-protobuf\n    Setting header Authorization:  apikey \n    feed contains 299 entities\n    trip {\n      trip_id: \"85-Z.1283.125.128.A.8.51118258\"\n      schedule_relationship: SCHEDULED\n      route_id: \"CMB_2c\"\n    }\n    timestamp: 1525537117\n    \n## Setting HTTP Username and Password\n    $ java -jar gtfs-rt-printer-1.1.0.jar -user username -password password http://www.rtd-denver.com/google_sync/TripUpdate.pb\n    $ java -jar gtfs-rt-printer-1.2.0.jar -user accessKey -password secretKey https://gtfsapi.metrarail.com/gtfs/raw/tripUpdates.dat\n    \nNote that reserved characters (e.g. *, ! and \u0026 ) need to be escaped (e.g. \\\\*, \\\\!, and \\\\\u0026)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaidig%2Fgtfs-rt-printer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flaidig%2Fgtfs-rt-printer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaidig%2Fgtfs-rt-printer/lists"}