I'm comparing the coordinates of a location to the current coords of a user. The distance is outputted like: 6056609.511004132946254686
I'm not sure what measurement this is in. I want the final measured distance to be in km.
// location of deal
CLLocation *locA = [[CLLocation alloc] initWithLatitude:latNum longitude:lngNum];
// user's current location
CLLocation *locB = [[CLLocation alloc] initWithLatitude:currentLatitude longitude:currentLongitude];
CLLocationDistance distanceToDeal = [locA distanceFromLocation:locB];