-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove previously added Station accessibility information
- Loading branch information
1 parent
d8c6718
commit 7ac66ba
Showing
14 changed files
with
75 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/main/java/org/opentripplanner/street/model/edge/StreetStationCentroidLink.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package org.opentripplanner.street.model.edge; | ||
|
||
import org.opentripplanner.street.model.vertex.StationCentroidVertex; | ||
import org.opentripplanner.street.model.vertex.StreetVertex; | ||
|
||
/** | ||
* This represents the connection between a street vertex and a transit station centroid vertex | ||
*/ | ||
public class StreetStationCentroidLink extends FreeEdge { | ||
|
||
private StreetStationCentroidLink(StreetVertex fromv, StationCentroidVertex tov) { | ||
super(fromv, tov); | ||
} | ||
|
||
private StreetStationCentroidLink(StationCentroidVertex fromv, StreetVertex tov) { | ||
super(fromv, tov); | ||
} | ||
|
||
public static StreetStationCentroidLink createStreetStationLink( | ||
StreetVertex fromv, | ||
StationCentroidVertex tov | ||
) { | ||
return connectToGraph(new StreetStationCentroidLink(fromv, tov)); | ||
} | ||
|
||
public static StreetStationCentroidLink createStreetStationLink( | ||
StationCentroidVertex fromv, | ||
StreetVertex tov | ||
) { | ||
return connectToGraph(new StreetStationCentroidLink(fromv, tov)); | ||
} | ||
|
||
public String toString() { | ||
return "StreetStationCentroidLink(" + fromv + " -> " + tov + ")"; | ||
} | ||
} |
42 changes: 0 additions & 42 deletions
42
src/main/java/org/opentripplanner/street/model/edge/StreetTransitStationCentroidLink.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.