Back to project page StravaFlow.
The source code is released under:
MIT License
If you think the Android project StravaFlow listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.mattlogan.stravaflow.util; /* w ww . j a va 2 s . co m*/ public class DistanceUtils { public static float meters2miles(float meters) { return meters / 1609.34f; } public static float meters2feet(float meters) { return meters * 3.28084f; } }