trim down nearby uris to the minimum

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@275 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-10-10 17:43:28 +00:00
parent aa5bb11208
commit 3d9f79308b

View file

@ -62,7 +62,7 @@ public class MvvProvider extends AbstractEfaProvider
}
private static final String NEARBY_LATLON_URI = "http://efa.mvv-muenchen.de/ultralite/XML_DM_REQUEST"
+ "?mode=direct&coordOutputFormat=WGS84&mergeDep=1&useAllStops=1&name_dm=%2.6f:%2.6f:WGS84&type_dm=coord&itOptionsActive=1&ptOptionsActive=1&useProxFootSearch=1&excludedMeans=checkbox";
+ "?coordOutputFormat=WGS84&type_dm=coord&name_dm=%2.6f:%2.6f:WGS84&mode=direct";
@Override
protected String nearbyLatLonUri(final int lat, final int lon)
@ -71,7 +71,7 @@ public class MvvProvider extends AbstractEfaProvider
}
private static final String NEARBY_STATION_URI = "http://efa.mvv-muenchen.de/ultralite/XML_DM_REQUEST"
+ "?mode=direct&coordOutputFormat=WGS84&mergeDep=1&useAllStops=1&name_dm=%s&type_dm=stop&itOptionsActive=1&ptOptionsActive=1&useProxFootSearch=1&excludedMeans=checkbox";
+ "?coordOutputFormat=WGS84&type_dm=stop&name_dm=%s&mode=direct";
@Override
protected String nearbyStationUri(final String stationId)