
org.opentripplanner.netex.loader.mapping.StopMapper 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.netex.loader.mapping;
import org.opentripplanner.graph_builder.DataImportIssueStore;
import org.opentripplanner.graph_builder.issues.QuayWithoutCoordinates;
import org.opentripplanner.model.Station;
import org.opentripplanner.model.Stop;
import org.opentripplanner.model.FareZone;
import org.opentripplanner.model.WgsCoordinate;
import org.rutebanken.netex.model.Quay;
import java.util.List;
class StopMapper {
private final DataImportIssueStore issueStore;
private final FeedScopedIdFactory idFactory;
StopMapper(
FeedScopedIdFactory idFactory,
DataImportIssueStore issueStore
) {
this.idFactory = idFactory;
this.issueStore = issueStore;
}
/**
* Map Netex Quay to OTP Stop
*/
Stop mapQuayToStop(Quay quay, Station parentStation, List fareZones) {
WgsCoordinate coordinate = WgsCoordinateMapper.mapToDomain(quay.getCentroid());
if (coordinate == null) {
issueStore.add(new QuayWithoutCoordinates(quay.getId()));
return null;
}
Stop stop = new Stop(
idFactory.createId(quay.getId()),
parentStation.getName(),
quay.getPublicCode(),
null,
WgsCoordinateMapper.mapToDomain(quay.getCentroid()),
null,
null,
null, fareZones,
null,
null,
null
);
stop.setParentStation(parentStation);
return stop;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy