Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clipper: Add Berryessa BART and Oakland Ferry Terminal #205

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ final class ClipperData {
.put(0x2cL, Station.create("West Dublin/Pleasanton Station", "W. Dublin/Pleasanton", "37.699764", "-121.928118"))
.put(0x2dL, Station.create("Oakland Airport Station", "OAK Airport", "37.75256", "-122.19806"))
.put(0x2eL, Station.create("Warm Springs/South Fremont Station", "Warm Springs", "37.5018136", "-121.938736"))
.put(0x30L, Station.create("Berryessa/North San José station", "Berryessa", "37.3683616", "-121.874655"))
.build();

static final Map<Long, String> GG_FERRY_ROUTES = ImmutableMap.<Long, String>builder()
Expand All @@ -132,6 +133,7 @@ final class ClipperData {

static final Map<Long, Station> SF_BAY_FERRY_TERMINALS = ImmutableMap.<Long, Station>builder()
.put(0x01L, Station.create("Alameda Main Street Terminal", "Alameda Main St.", "37.790668", "-122.294036"))
.put(0x05L, Station.create("Oakland Ferry Terminal", "Oakland", "37.795208", "-122.280228"))
.put(0x08L, Station.create("San Francisco Ferry Building", "Ferry Building", "37.795873", "-122.391987"))
.build();

Expand Down