diff options
Diffstat (limited to 'main/src/cgeo/geocaching/Constants.java')
| -rw-r--r-- | main/src/cgeo/geocaching/Constants.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/Constants.java b/main/src/cgeo/geocaching/Constants.java index 2d4e0cc..180e039 100644 --- a/main/src/cgeo/geocaching/Constants.java +++ b/main/src/cgeo/geocaching/Constants.java @@ -20,4 +20,11 @@ public final class Constants { /** Text separator used for formatting texts */ public static final String SEPARATOR = " ยท "; + /** + * Factor used to calculate distance from meters to foot; + * <p> + * ft = m * M2FT; + */ + public static final double M2FT = 3.2808399d; + } |
