blob: b1cbffd1778d7774117cb5d9aec9b748080f2124 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package cgeo.geocaching.geopoint;
public interface IConversion {
public static final float MILES_TO_KILOMETER = 1.609344f;
public static final float FEET_TO_KILOMETER = 0.0003048f;
public static final float YARDS_TO_KILOMETER = 0.0009144f;
/**
* Factor used to calculate distance from meters to foot;
* <p>
* ft = m * METERS_TO_FEET;
*/
public static final double METERS_TO_FEET = 3.2808399d;
}
|