org.opentripplanner.gtfs.mapping.BoardingAreaMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.gtfs.mapping;
import org.opentripplanner.model.BoardingArea;
import org.opentripplanner.util.MapUtils;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
/** Responsible for mapping GTFS Boarding areas into the OTP model. */
class BoardingAreaMapper {
private Map mappedBoardingAreas = new HashMap<>();
Collection map(Collection allBoardingAreas) {
return MapUtils.mapToList(allBoardingAreas, this::map);
}
/** Map from GTFS to OTP model, {@code null} safe. */
BoardingArea map(org.onebusaway.gtfs.model.Stop orginal) {
return orginal == null ? null : mappedBoardingAreas.computeIfAbsent(orginal, this::doMap);
}
private BoardingArea doMap(org.onebusaway.gtfs.model.Stop gtfsStop) {
if (gtfsStop.getLocationType() != org.onebusaway.gtfs.model.Stop.LOCATION_TYPE_BOARDING_AREA) {
throw new IllegalArgumentException(
"Expected type " + org.onebusaway.gtfs.model.Stop.LOCATION_TYPE_BOARDING_AREA
+ ", but got " + gtfsStop.getLocationType());
}
StopMappingWrapper base = new StopMappingWrapper(gtfsStop);
return new BoardingArea(
base.getId(),
base.getName(),
base.getCode(),
base.getDescription(),
base.getCoordinate(),
base.getWheelchairBoarding(),
base.getLevel()
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy