• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-27
  • 语言: 其他
  • 标签: GPS  纠偏  

资源简介

用于WGS-84(地球坐标系)与GCJ-02(火星坐标系)的互转,并且纠偏转百度、高德

资源截图

代码片段和文件信息

package com.android.util;

public class BaiduGPSCorrect {
private static final double x_pi = 3.14159265358979324 * 3000.0 / 180.0;

public static double[] bd_encrypt(double gg_lat double gg_lon){
double x = gg_lon y = gg_lat;
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 bd_lon = z * Math.cos(theta) + 0.0065;
double bd_lat = z * Math.sin(theta) + 0.006;
double[] tmp = new double[2];
tmp[0] = bd_lat;
tmp[1] = bd_lon;
return tmp;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         572  2013-12-23 16:44  GPS转百度纠偏\BaiduGPSCorrect.java
     文件        1997  2013-12-23 16:41  GPS转百度纠偏\GpsCorrect.java
     文件        3538  2018-11-10 18:46  GPS转百度纠偏\GpsToGadMap.java

评论

共有 条评论