private Map<String, Set<String>> _berthsByStanox = new HashMap<String, Set<String>>();
private Set<String> _stanox = new HashSet<String>();
public void run() throws IOException {
TimetableBundle bundle = new TimetableBundle(new File(
"/Users/bdferris/Downloads/uk-rail/data.atoc.org"));
bundle.readMasterStationNames(new MasterStationNameHandler());
bundle.readTimetable(new ScheduleHandler());
System.out.println("stanoxCount=" + _stanox.size());
File path = new File("/Users/bdferris/Downloads/uk-rail/berths.csv");
BufferedReader reader = new BufferedReader(new FileReader(path));