From 3e7cb04abbae576189fa2274bf55049073b74b65 Mon Sep 17 00:00:00 2001 From: sheldonabrown Date: Tue, 19 Sep 2023 10:28:29 -0400 Subject: [PATCH] debugging NYS-226 --- .../onebusaway/gtfs_transformer/impl/MTAEntrancesStrategy.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/onebusaway-gtfs-transformer/src/main/java/org/onebusaway/gtfs_transformer/impl/MTAEntrancesStrategy.java b/onebusaway-gtfs-transformer/src/main/java/org/onebusaway/gtfs_transformer/impl/MTAEntrancesStrategy.java index db73ecb1..9e8a2789 100644 --- a/onebusaway-gtfs-transformer/src/main/java/org/onebusaway/gtfs_transformer/impl/MTAEntrancesStrategy.java +++ b/onebusaway-gtfs-transformer/src/main/java/org/onebusaway/gtfs_transformer/impl/MTAEntrancesStrategy.java @@ -233,6 +233,7 @@ public void run(TransformContext context, GtfsMutableRelationalDao dao) { readElevatorData(stopGroups, getComplexList(dao)); } + _log.info("found {} complex stops to mark as accessible", complexStopIds.size()); for (AgencyAndId aid : complexStopIds.keySet()) { Stop stop = complexStopIds.get(aid); stop.setWheelchairBoarding(WHEELCHAIR_ACCESSIBLE); @@ -579,6 +580,7 @@ private Map> getComplexList(GtfsDao dao) { try (BufferedReader br = new BufferedReader(new FileReader(new File(this.accessibleComplexFile)))) { String line; while ((line = br.readLine()) != null) { + _log.info("accessibleComplexFile line: " + line); List complex = new ArrayList<>(); for (String id : line.split(STOP_SEPARATOR)) { Stop stop = stops.get(id);