transformLat 内容是什么
时间: 2023-11-14 18:06:42 浏览: 85
coords_transform库原理及使用方法1
抱歉,我之前给出的代码中没有包含 `transformLat` 方法。这是我在给你提供代码时犯了一个错误。实际上,在 BD09 坐标系转换为 GCJ02 坐标系的过程中,会使用到 `transformLat` 方法。下面是包含了 `transformLat` 方法的修正代码:
```java
import java.math.BigDecimal;
public class CoordinateConverter {
private static final double x_PI = 3.14159265358979324 * 3000.0 / 180.0;
private static final double PI = 3.1415926535897932384626;
private static final double a = 6378245.0;
private static final double ee = 0.00669342162296594323;
public static Point convertBD09ToGCJ02(double bdLat, double bdLng) {
double x = bdLng - 0.0065;
double y = bdLat - 0.006;
double z = Math.sqrt(x * x + y * y) - 0.00002 * Math.sin(y * x_PI);
double theta = Math.atan2(y, x) - 0.000003 * Math.cos(x * x_PI);
double ggLng = z * Math.cos(theta);
double ggLat = z * Math.sin(theta);
return new Point(ggLat, ggLng);
}
private static double transformLat(double x, double y) {
double ret =
-100.0
+ 2.0 * x
+ 3.0 * y
+ 0.2 * y * y
+ 0.1 * x * y
+ 0.2 * Math.sqrt(Math.abs(x));
ret +=
((20.0 * Math.sin(6.0 * x * PI)
+ 20.0 * Math.sin(2.0 * x * PI)) * 2.0) / 3.0;
ret +=
((20.0 * Math.sin(y * PI)
+ 40.0 * Math.sin((y / 3.0) * PI)) * 2.0) / 3.0;
ret +=
((160.0 * Math.sin((y / 12.0) * PI)
+ 320 * Math.sin((y * PI) / 30.0)) * 2.0) / 3.0;
return ret;
}
public static class Point {
private final double latitude;
private final double longitude;
public Point(double latitude, double longitude) {
this.latitude = latitude;
this.longitude = longitude;
}
public double getLatitude() {
return latitude;
}
public double getLongitude() {
return longitude;
}
}
}
```
现在,你可以使用修正后的代码来进行 BD09 坐标系到 GCJ02 坐标系的转换。如果你有任何其他问题,请随时提问。抱歉给你带来的困扰!
阅读全文