org.opentripplanner.updater.bike_rental.BixiBikeRentalDataSource Maven / Gradle / Ivy
package org.opentripplanner.updater.bike_rental;
import java.util.Map;
import org.opentripplanner.routing.bike_rental.BikeRentalStation;
import org.opentripplanner.updater.UpdaterDataSourceParameters;
import org.opentripplanner.util.NonLocalizedString;
public class BixiBikeRentalDataSource extends GenericXmlBikeRentalDataSource {
public BixiBikeRentalDataSource(
UpdaterDataSourceParameters config) {
super(config,"//stations/station");
}
public BikeRentalStation makeStation(Map attributes) {
if (!"true".equals(attributes.get("installed"))) {
return null;
}
BikeRentalStation brstation = new BikeRentalStation();
brstation.id = attributes.get("id");
brstation.x = Double.parseDouble(attributes.get("long"));
brstation.y = Double.parseDouble(attributes.get("lat"));
brstation.name = new NonLocalizedString(attributes.get("name"));
brstation.bikesAvailable = Integer.parseInt(attributes.get("nbBikes"));
brstation.spacesAvailable = Integer.parseInt(attributes.get("nbEmptyDocks"));
return brstation;
}
}