I want to check which parking lot is closest to the place i'm viewing in my app. Of this place i have the longitude and latitude, and i have a list (pd) of parking spots (parkingData) with longitude and latitude and nr of vacant spots.
I have a method using the location class in android which calculates the distance between two geopoints. I thought i had a method for selecting the smallest distance between two points, but it doesn't work! I use a Distance, which is first set really big and then check if my distance between two points is smaller, and only if it is, it replaces this double distance and selects a parking spot, but this is not what its doing. I logged some stuf, and only the first parking spot gets selected every time. All the distances are calculated, and even if the first is not the closest, it is selected. It has nothing to do with the vacant-spot check (need more than ten) because i checked, and all have more than 200.
Anyone seeing why my code doesn't work?
here it is:
private double distanceBetweenTwoPoints(float lat_a, float lng_a, float lat_b, float lng_b) {
Location locationA = new Location("point A");
locationA.setLatitude(lat_a / 1E2);
locationA.setLongitude(lng_a / 1E2);
Location locationB = new Location("point B");
locationB.setLatitude(lat_b / 1E2);
locationB.setLongitude(lng_b / 1E2);
double distance = locationA.distanceTo(locationB);
return distance;
}
private ParkingData selectParking(){
double distance=9999999; //just big
double distanceUntilParking = 99999999; //also big
ParkingData selectedParkingData=null;
for(int i=0;i<pd.size();i++){
distanceUntilParking = distanceBetweenTwoPoints(pd.get(i).latitude,pd.get(i).longtitude,venue.latitude,venue.longtitude);
if(distanceUntilParking<distance && pd.get(i).vacantSpaces > 10){
System.out.println(distanceUntilParking+ " < "+ distance);
distance=distanceUntilParking;
selectedParkingData = pd.get(i);
}
}
return selectedParkingData;
}