Skip to content

Commit

Permalink
Add providers for Nicaraguan buses
Browse files Browse the repository at this point in the history
  • Loading branch information
AltNico authored and Felix Delattre committed Mar 1, 2018
1 parent 7387e87 commit 4fc547f
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 0 deletions.
44 changes: 44 additions & 0 deletions enabler/src/de/schildbach/pte/EsteliProvider.java
@@ -0,0 +1,44 @@
/*
* Copyright 2015 the original author or authors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package de.schildbach.pte;

import okhttp3.HttpUrl;

/**
* @author Nico Alt
*/
public class EsteliProvider extends AbstractNavitiaProvider {
private static String API_REGION = "ni-esteli";

public EsteliProvider(final HttpUrl apiBase, final String authorization) {
super(NetworkId.ESTELI, apiBase, authorization);

setTimeZone("America/Managua");
}

public EsteliProvider(final String authorization) {
super(NetworkId.ESTELI, authorization);

setTimeZone("America/Managua");
}

@Override
public String region() {
return API_REGION;
}
}
44 changes: 44 additions & 0 deletions enabler/src/de/schildbach/pte/ManaguaProvider.java
@@ -0,0 +1,44 @@
/*
* Copyright 2015 the original author or authors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package de.schildbach.pte;

import okhttp3.HttpUrl;

/**
* @author Nico Alt
*/
public class ManaguaProvider extends AbstractNavitiaProvider {
private static String API_REGION = "ni-managua";

public ManaguaProvider(final HttpUrl apiBase, final String authorization) {
super(NetworkId.MANAGUA, apiBase, authorization);

setTimeZone("America/Managua");
}

public ManaguaProvider(final String authorization) {
super(NetworkId.MANAGUA, authorization);

setTimeZone("America/Managua");
}

@Override
public String region() {
return API_REGION;
}
}
3 changes: 3 additions & 0 deletions enabler/src/de/schildbach/pte/NetworkId.java
Expand Up @@ -89,4 +89,7 @@ public enum NetworkId {

// Africa
GHANA,

// Nicaragua
ESTELI, MANAGUA,
}

0 comments on commit 4fc547f

Please sign in to comment.