java實現百度座標的摩卡托座標與火星座標轉換的樣本_java

來源:互聯網
上載者:User

這是百度地圖的摩卡托座標與火星座標的相互轉換方法,大家參考使用吧

複製代碼 代碼如下:

/**
 * 百度摩卡拖座標與火星座標的加密解密演算法
 * @author XFan
 *
 */
public class Outer {
 private static double lat = 31.22997;
 private static double lon = 121.640756;
 public static double x_pi = lat * lon / 180.0;
 public static void main(String[] args) {
  System.out.println("摩卡座標經緯度:"+lat+","+lon);
  System.out.println("火星座標經緯度:"+bd_decrypt(lat,lon));
 }
 //解密成為火星座標
 public static String bd_decrypt(double bd_lat, double bd_lon)
 {
     double x = bd_lon - 0.0065, y = bd_lat - 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 gg_lon = z * Math.cos(theta);
     double gg_lat = z * Math.sin(theta);
     return gg_lat+","+gg_lon;
 }
 //加密成為摩卡托座標
 public static String 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;
     return gg_lat+","+gg_lon;
 }
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.