All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.model.PathTransfer Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package org.opentripplanner.model;

import java.io.Serializable;
import java.util.List;
import org.opentripplanner.model.transfer.ConstrainedTransfer;
import org.opentripplanner.routing.graph.Edge;
import org.opentripplanner.transit.model.site.StopLocation;
import org.opentripplanner.util.lang.ToStringBuilder;

/**
 * Represents a transfer between stops with the street network path attatched to it.
 * 

* Do not confuse this with {@link ConstrainedTransfer}. * *

* TODO these should really have a set of valid modes in case bike vs. walk transfers are different * TODO Should we just store the NearbyStop as a field here, or even switch to using it instead * where this class is used */ public class PathTransfer implements Serializable { private static final long serialVersionUID = 20200316L; public final StopLocation from; public final StopLocation to; private final double distanceMeters; private final List edges; public PathTransfer(StopLocation from, StopLocation to, double distanceMeters, List edges) { this.from = from; this.to = to; this.distanceMeters = distanceMeters; this.edges = edges; } public String getName() { return from + " => " + to; } public double getDistanceMeters() { return distanceMeters; } public List getEdges() { return this.edges; } @Override public String toString() { return ToStringBuilder .of(getClass()) .addObj("from", from) .addObj("to", to) .addNum("distance", distanceMeters) .addColSize("edges", edges) .toString(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy