org.opentripplanner.gtfs.mapping.PathwayNodeMapper 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.PathwayNode;
import org.opentripplanner.util.MapUtils;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
/** Responsible for mapping GTFS Node into the OTP model. */
class PathwayNodeMapper {
private Map mappedNodes = new HashMap<>();
Collection map(Collection allNodes) {
return MapUtils.mapToList(allNodes, this::map);
}
/** Map from GTFS to OTP model, {@code null} safe. */
PathwayNode map(org.onebusaway.gtfs.model.Stop orginal) {
return orginal == null ? null : mappedNodes.computeIfAbsent(orginal, this::doMap);
}
private PathwayNode doMap(org.onebusaway.gtfs.model.Stop gtfsStop) {
if (gtfsStop.getLocationType() != org.onebusaway.gtfs.model.Stop.LOCATION_TYPE_NODE) {
throw new IllegalArgumentException(
"Expected type " + org.onebusaway.gtfs.model.Stop.LOCATION_TYPE_NODE + ", but got "
+ gtfsStop.getLocationType());
}
StopMappingWrapper base = new StopMappingWrapper(gtfsStop);
return new PathwayNode(
base.getId(),
base.getName(),
base.getCode(),
base.getDescription(),
base.getCoordinate(),
base.getWheelchairBoarding(),
base.getLevel()
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy