From e384b5f8b6c9f06553787bd883d07d0eeca6e869 Mon Sep 17 00:00:00 2001 From: Kyler Chin <7539174+kylerchin@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:04:18 -0800 Subject: [PATCH] add Translation Summary to Raw GTFS --- src/raw_gtfs.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raw_gtfs.rs b/src/raw_gtfs.rs index 7bf3dd5..6cd1b8b 100644 --- a/src/raw_gtfs.rs +++ b/src/raw_gtfs.rs @@ -67,6 +67,7 @@ impl RawGtfs { println!(" Transfers: {}", optional_file_summary(&self.transfers)); println!(" Pathways: {}", optional_file_summary(&self.pathways)); println!(" Feed info: {}", optional_file_summary(&self.feed_info)); + println!(" Translatable Items: {}", optional_file_summary(&self.translations)); } /// Reads from an url (if starts with http), or a local path (either a directory or zipped file)