-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #333 from skedgo/dev
Release 1.22.0
- Loading branch information
Showing
32 changed files
with
1,303 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## [Version 1.22.0] - 2018-11-25 | ||
### Fixed | ||
- Remove google maps dependency | ||
- Return tralvelled and non-travelled trip line separately | ||
### Added | ||
- Add localCost to TripSegment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
-keep class com.skedgo.android.common.model.** { *; } | ||
-keep class skedgo.tripkit.routing.ModeInfo { *; } | ||
-keep class skedgo.tripkit.routing.SegmentType { *; } | ||
-keep class skedgo.tripkit.routing.SegmentType { *; } | ||
-keep class skedgo.tripkit.routing.TurnByTurn { *; } | ||
-keep class skedgo.tripkit.routing.LocalCostAccuracy { *; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
CommonCoreLegacy/src/main/java/com/skedgo/android/common/util/MathUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package com.skedgo.android.common.util; | ||
/* | ||
* Copyright 2013 Google Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import static java.lang.Math.*; | ||
|
||
/** | ||
* Utility functions that are used my both PolyUtil and SphericalUtil. | ||
*/ | ||
class MathUtil { | ||
/** | ||
* The earth's radius, in meters. | ||
* Mean radius as defined by IUGG. | ||
*/ | ||
static final double EARTH_RADIUS = 6371009; | ||
|
||
/** | ||
* Restrict x to the range [low, high]. | ||
*/ | ||
static double clamp(double x, double low, double high) { | ||
return x < low ? low : (x > high ? high : x); | ||
} | ||
|
||
/** | ||
* Wraps the given value into the inclusive-exclusive interval between min and max. | ||
* @param n The value to wrap. | ||
* @param min The minimum. | ||
* @param max The maximum. | ||
*/ | ||
static double wrap(double n, double min, double max) { | ||
return (n >= min && n < max) ? n : (mod(n - min, max - min) + min); | ||
} | ||
|
||
/** | ||
* Returns the non-negative remainder of x / m. | ||
* @param x The operand. | ||
* @param m The modulus. | ||
*/ | ||
static double mod(double x, double m) { | ||
return ((x % m) + m) % m; | ||
} | ||
|
||
/** | ||
* Returns mercator Y corresponding to latitude. | ||
* See http://en.wikipedia.org/wiki/Mercator_projection . | ||
*/ | ||
static double mercator(double lat) { | ||
return log(tan(lat * 0.5 + PI/4)); | ||
} | ||
|
||
/** | ||
* Returns latitude from mercator Y. | ||
*/ | ||
static double inverseMercator(double y) { | ||
return 2 * atan(exp(y)) - PI / 2; | ||
} | ||
|
||
/** | ||
* Returns haversine(angle-in-radians). | ||
* hav(x) == (1 - cos(x)) / 2 == sin(x / 2)^2. | ||
*/ | ||
static double hav(double x) { | ||
double sinHalf = sin(x * 0.5); | ||
return sinHalf * sinHalf; | ||
} | ||
|
||
/** | ||
* Computes inverse haversine. Has good numerical stability around 0. | ||
* arcHav(x) == acos(1 - 2 * x) == 2 * asin(sqrt(x)). | ||
* The argument must be in [0, 1], and the result is positive. | ||
*/ | ||
static double arcHav(double x) { | ||
return 2 * asin(sqrt(x)); | ||
} | ||
|
||
// Given h==hav(x), returns sin(abs(x)). | ||
static double sinFromHav(double h) { | ||
return 2 * sqrt(h * (1 - h)); | ||
} | ||
|
||
// Returns hav(asin(x)). | ||
static double havFromSin(double x) { | ||
double x2 = x * x; | ||
return x2 / (1 + sqrt(1 - x2)) * .5; | ||
} | ||
|
||
// Returns sin(arcHav(x) + arcHav(y)). | ||
static double sinSumFromHav(double x, double y) { | ||
double a = sqrt(x * (1 - x)); | ||
double b = sqrt(y * (1 - y)); | ||
return 2 * (a + b - 2 * (a * y + b * x)); | ||
} | ||
|
||
/** | ||
* Returns hav() of distance from (lat1, lng1) to (lat2, lng2) on the unit sphere. | ||
*/ | ||
static double havDistance(double lat1, double lat2, double dLng) { | ||
return hav(lat1 - lat2) + hav(dLng) * cos(lat1) * cos(lat2); | ||
} | ||
} |
Oops, something went wrong.