Skip to content

LocationRelay: Overload Constructor with option #485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,20 @@
public class LocationRelay {
static final String TAG = LocationRelay.class.getSimpleName();

private static final float LOCATION_ACCURACY_THRESHOLD = 10.0f;
private final float LOCATION_ACCURACY_THRESHOLD;
private static final float JUMP_FACTOR = 4.0f;
private static boolean VERBOSE = false;



public LocationRelay() {
LOCATION_ACCURACY_THRESHOLD = 10.0f;
}

public LocationRelay(float location_accuracy_threshold) {
LOCATION_ACCURACY_THRESHOLD = location_accuracy_threshold;
Timber.w("Location Accuracy of Target has been overriden to " + location_accuracy_threshold);
}

public static String getLatLongFromLocation(final android.location.Location location) {
return android.location.Location.convert(location.getLatitude(), android.location.Location.FORMAT_DEGREES) + " " +
android.location.Location.convert(location.getLongitude(), android.location.Location.FORMAT_DEGREES);
Expand Down