}
return null;
}
private static Double getLonForStopPoint(StopPointStructure stopPoint) {
Place place = stopPoint.getPlace();
Location location = place.getLocation();
if (location.getLongitude() != null) {
return location.getLongitude().doubleValue();
}
Translation translation = location.getTranslation();
if (translation.getLongitude() != null) {