CUTR-at-USF / transit-feed-quality-calculator

A tool that uses the gtfs-realtime-validator to calculate the quality of a large number of GTFS-realtime feeds
Other
7 stars 1 forks source link

Fix #2 - Create Excel Workbook #3

Closed Suryakandukoori closed 6 years ago

Suryakandukoori commented 6 years ago

Added code to create a new excel workbook and add data in a specified format.

Added code to collect error and warning data of all validation results

barbeau commented 6 years ago

@Suryakandukoori This is looking great!

It would be good if we can pass a list of rules into the ResultsAnalyzer telling it to ignore those rules when calculating results. For example, I don't think E017 is working properly right now with the batch validator.

So, if the initial results analyzer output for most common errors was:

  1. E017
  2. E023
  3. E001
  4. E013

...then after we pass a list of Strings to ignore with "E017" included (something like analyzer.setIgnoreRules(ignoreList)), the output of most common errors would change to eliminate E017:

  1. E023
  2. E001
  3. E013
barbeau commented 6 years ago

Replaced by https://github.com/CUTR-at-USF/transit-feed-quality-calculator/pull/5.