Skip to content

Commit 903051a

Browse files
committed
see 04/08 log
1 parent 0f566fd commit 903051a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

subutil/src/test/java/com/blankj/subutil/util/CoordinateUtilsTest.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,6 @@ public void gcj2WGSExactly() {
7979
Assert.assertTrue(distance < 10);
8080
}
8181

82-
@Test
83-
public void outOfChina() {
84-
Assert.assertFalse(CoordinateUtils.outOfChina(locationWGS84[0], locationWGS84[1]));
85-
Assert.assertTrue(CoordinateUtils.outOfChina(newyorkWGS84[0], newyorkWGS84[1]));
86-
}
87-
8882
public static double distance(double lngA, double latA, double lngB, double latB) {
8983
int earthR = 6371000;
9084
double x = Math.cos(latA * PI / 180) * Math.cos(latB * PI / 180) * Math.cos((lngA - lngB) * PI / 180);

0 commit comments

Comments
 (0)