欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Java 坐標(biāo)系相互轉(zhuǎn)換方式

 更新時(shí)間:2022年08月27日 10:02:54   作者:夢(mèng)里尋鄉(xiāng)  
這篇文章主要介紹了Java中的坐標(biāo)系相互轉(zhuǎn)換方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

Java坐標(biāo)系相互轉(zhuǎn)換

1. WGS-84原始坐標(biāo)系,一般用國(guó)際GPS紀(jì)錄儀記錄下來(lái)的經(jīng)緯度,通過(guò)GPS定位拿到的原始經(jīng)緯度,Google和高德地圖定位的的經(jīng)緯度(國(guó)外)都是基于WGS-84坐標(biāo)系的; 

* 但是在國(guó)內(nèi)是不允許直接用WGS84坐標(biāo)系標(biāo)注的,必須經(jīng)過(guò)加密后才能使用;

2. GCJ-02坐標(biāo)系,又名“火星坐標(biāo)系”,是我國(guó)國(guó)測(cè)局獨(dú)創(chuàng)的坐標(biāo)體系,由WGS-84加密而成,在國(guó)內(nèi),必須至少使用GCJ-02坐標(biāo)系,

或者使用在GCJ-02加密后再進(jìn)行加密的坐標(biāo)系,如百度坐標(biāo)系。高德和Google在國(guó)內(nèi)都是使用GCJ-02坐標(biāo)系,可以說(shuō),GCJ-02是國(guó)內(nèi)最廣泛使用的坐標(biāo)系;

3. 百度坐標(biāo)系:bd-09,百度坐標(biāo)系是在GCJ-02坐標(biāo)系的基礎(chǔ)上再次加密偏移后形成的坐標(biāo)系,只適用于百度地圖。

(目前百度API提供了從其它坐標(biāo)系轉(zhuǎn)換為百度坐標(biāo)系的API,但卻沒(méi)有從百度坐標(biāo)系轉(zhuǎn)為其他坐標(biāo)系的API) 

/**
 * 各GPS坐標(biāo)轉(zhuǎn)換工具類(lèi)
 */  
public class GPSUtil {
    public static double pi = 3.1415926535897932384626;  
    public static double x_pi = 3.14159265358979324 * 3000.0 / 180.0;  
    public static double a = 6378245.0;  
    public static double ee = 0.00669342162296594323;  
 
    public 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 double transformLon(double x, double y) {  
        double ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1  
                * 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(x * pi) + 40.0 * Math.sin(x / 3.0 * pi)) * 2.0 / 3.0;  
        ret += (150.0 * Math.sin(x / 12.0 * pi) + 300.0 * Math.sin(x / 30.0  
                * pi)) * 2.0 / 3.0;  
        return ret;  
    }  
    public static double[] transform(double lat, double lon) {  
        if (outOfChina(lat, lon)) {  
            return new double[]{lat,lon};  
        }  
        double dLat = transformLat(lon - 105.0, lat - 35.0);  
        double dLon = transformLon(lon - 105.0, lat - 35.0);  
        double radLat = lat / 180.0 * pi;  
        double magic = Math.sin(radLat);  
        magic = 1 - ee * magic * magic;  
        double sqrtMagic = Math.sqrt(magic);  
        dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * pi);  
        dLon = (dLon * 180.0) / (a / sqrtMagic * Math.cos(radLat) * pi);  
        double mgLat = lat + dLat;  
        double mgLon = lon + dLon;  
        return new double[]{mgLat,mgLon};  
    }  
    public static boolean outOfChina(double lat, double lon) {  
        if (lon < 72.004 || lon > 137.8347)  
            return true;  
        if (lat < 0.8293 || lat > 55.8271)  
            return true;  
        return false;  
    }  
    /** 
     * 84 to 火星坐標(biāo)系 (GCJ-02) World Geodetic System ==> Mars Geodetic System 
     * 
     * @param lat 
     * @param lon 
     * @return 
     */  
    public static double[] gps84_To_Gcj02(double lat, double lon) {  
        if (outOfChina(lat, lon)) {  
            return new double[]{lat,lon};  
        }  
        double dLat = transformLat(lon - 105.0, lat - 35.0);  
        double dLon = transformLon(lon - 105.0, lat - 35.0);  
        double radLat = lat / 180.0 * pi;  
        double magic = Math.sin(radLat);  
        magic = 1 - ee * magic * magic;  
        double sqrtMagic = Math.sqrt(magic);  
        dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * pi);  
        dLon = (dLon * 180.0) / (a / sqrtMagic * Math.cos(radLat) * pi);  
        double mgLat = lat + dLat;  
        double mgLon = lon + dLon;  
        return new double[]{mgLat, mgLon};  
    }  
 
    /** 
     * * 火星坐標(biāo)系 (GCJ-02) to 84 * * @param lon * @param lat * @return 
     * */  
    public static double[] gcj02_To_Gps84(double lat, double lon) {  
        double[] gps = transform(lat, lon);  
        double lontitude = lon * 2 - gps[1];  
        double latitude = lat * 2 - gps[0];  
        return new double[]{latitude, lontitude};  
    }  
    /** 
     * 火星坐標(biāo)系 (GCJ-02) 與百度坐標(biāo)系 (BD-09) 的轉(zhuǎn)換算法 將 GCJ-02 坐標(biāo)轉(zhuǎn)換成 BD-09 坐標(biāo) 
     * 
     * @param lat 
     * @param lon 
     */  
    public static double[] gcj02_To_Bd09(double lat, double lon) {  
        double x = lon, y = 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 tempLon = z * Math.cos(theta) + 0.0065;  
        double tempLat = z * Math.sin(theta) + 0.006;  
        double[] gps = {tempLat,tempLon};  
        return gps;  
    }  
 
    /** 
     * * 火星坐標(biāo)系 (GCJ-02) 與百度坐標(biāo)系 (BD-09) 的轉(zhuǎn)換算法 * * 將 BD-09 坐標(biāo)轉(zhuǎn)換成GCJ-02 坐標(biāo) * * @param 
     * bd_lat * @param bd_lon * @return 
     */  
    public static double[] bd09_To_Gcj02(double lat, double lon) {  
        double x = lon - 0.0065, y = 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 tempLon = z * Math.cos(theta);  
        double tempLat = z * Math.sin(theta);  
        double[] gps = {tempLat,tempLon};  
        return gps;  
    }  
 
    /**將gps84轉(zhuǎn)為bd09 
     * @param lat 
     * @param lon 
     * @return 
     */  
    public static double[] gps84_To_bd09(double lat,double lon){  
        double[] gcj02 = gps84_To_Gcj02(lat,lon);  
        double[] bd09 = gcj02_To_Bd09(gcj02[0],gcj02[1]);  
        return bd09;  
    }  
    public static double[] bd09_To_gps84(double lat,double lon){  
        double[] gcj02 = bd09_To_Gcj02(lat, lon);  
        double[] gps84 = gcj02_To_Gps84(gcj02[0], gcj02[1]);  
        //保留小數(shù)點(diǎn)后六位  
        gps84[0] = retain7(gps84[0]);  
        gps84[1] = retain7(gps84[1]);  
        return gps84;  
    }  
 
    /**保留小數(shù)點(diǎn)后六位 
     * @param num 
     * @return 
     */  
    private static double retain7(double num){  
        String result = String .format("%.7f", num);  
        return Double.valueOf(result);  
    }
}

Java任意兩個(gè)坐標(biāo)系轉(zhuǎn)換

這里需要兩個(gè)坐標(biāo)系的對(duì)應(yīng)兩個(gè)點(diǎn)

首先是實(shí)體類(lèi)

@Data
@NoArgsConstructor
@AllArgsConstructor
@Accessors(chain = true)
public class Point {
?
? ? private double x;
? ? private double y;
? ? private double z;
}

計(jì)算工具類(lèi)

@Component
@NoArgsConstructor
@Slf4j
public class transUtil {
 
    /**
     * 獲取兩點(diǎn)連線(xiàn)與y軸夾角
     *
     * @param p1 點(diǎn)1
     * @param p2 點(diǎn)2
     * @return 與y軸夾角(角度)
     */
    public  double getAngle(Point p1, Point p2) {
        double angle = Math.atan2(p2.getX() - p1.getX(), p2.getY() - p1.getY());
        return angle * (180 / Math.PI);
    }
 
    /**
     * 獲取縮放比例
     *
     * @param p1 源點(diǎn)1
     * @param b1 目標(biāo)點(diǎn)1
     * @param p2 源點(diǎn)2
     * @param b2 目標(biāo)點(diǎn)2
     * @return 縮放比例
     */
    public double getScale(Point p1, Point b1, Point p2, Point b2) {
        return getLength(b1, b2) / getLength(p1, p2);
    }
 
    /**
     * 獲取兩點(diǎn)之間連線(xiàn)的長(zhǎng)度
     *
     * @param p1 點(diǎn)1
     * @param p2 點(diǎn)2
     * @return 長(zhǎng)度
     */
    public static double getLength(Point p1, Point p2) {
        return Math.sqrt(Math.pow(p2.getX() - p1.getX(), 2) + Math.pow(p2.getY() - p1.getY(), 2));
    }
 
    /**
     * X方向偏移距離參數(shù)
     *
     * @param p1       源點(diǎn)1
     * @param b1       目標(biāo)點(diǎn)1
     * @param rotation 旋轉(zhuǎn)角度
     * @param scale    縮放比例
     * @return X方向偏移
     */
    public double getXTranslation(Point p1, Point b1, double rotation, double scale) {
        return (b1.getX() - scale * (p1.getX() * Math.cos(rotation) - p1.getY() * Math.sin(rotation)));
    }
 
    /**
     * Y方向偏移距離參數(shù)
     *
     * @param p1       源點(diǎn)1
     * @param b1       目標(biāo)點(diǎn)1
     * @param rotation 旋轉(zhuǎn)角度
     * @param scale    縮放比例
     * @return Y方向偏移
     */
    public double getYTranslation(Point p1, Point b1, double rotation, double scale) {
        return (b1.getY() - scale * (p1.getX() * Math.sin(rotation) + p1.getY() * Math.cos(rotation)));
    }
 
    /**
     * 轉(zhuǎn)換操作
     *
     * @param gp       源點(diǎn)
     * @param rotation 旋轉(zhuǎn)角度
     * @param scale    縮放比例
     * @param dx       X方向偏移
     * @param dy       Y方向偏移
     * @return 目標(biāo)點(diǎn)
     */
    public Point transformBoePoint(Point gp, double rotation, double scale, double dx, double dy) {
        double A = scale * Math.cos(rotation);
        double B = scale * Math.sin(rotation);
        return new Point(retain6(A * gp.getX() - B * gp.getY() + dx), retain6(B * gp.getX() + A * gp.getY() + dy), 0.0);
    }
 
 
    /**
     * 保留小數(shù)點(diǎn)后六位
     *
     * @param num
     * @return
     */
    public static double retain6(double num) {
        String result = String.format("%.6f", num);
        return Double.valueOf(result);
    }
}

這里用到了lombok的相關(guān),可以去除自行寫(xiě)相關(guān)方法

使用:四個(gè)點(diǎn)分別是 

Point1 Point2(原坐標(biāo)系兩個(gè)點(diǎn)) newPoint1 newPoint2(新坐標(biāo)系對(duì)應(yīng)的兩個(gè)點(diǎn)) 分別對(duì)應(yīng)Point1 -> newPoint1  Point2 -> newPoint2 

//初始化4點(diǎn)
double rotation = Math.toRadians(Math.abs(transUtil .getAngle(Point1 , Point2 ) - transUtil .getAngle(newPoint1 , newPoint2 )));
//獲取到轉(zhuǎn)化后的坐標(biāo)
double scale = transUtil .getScale(newPoint1 , Point1 , newPoint2 , Point2 );
double tx = transUtil .getXTranslation(newPoint1 , Point1 , rotation, scale);
double ty = transUtil .getYTranslation(newPoint1 , Point1 , rotation, scale);
//需要轉(zhuǎn)換的坐標(biāo) x,y,z
Point transPoint = new Point(o.getX(), o.getZ(), 0.0);
Point resultPoint = coordinateUtil.transformBoePoint(new Point(o.getX(), o.getZ(), 0.0), rotation, scale, tx, ty);

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • SpringBoot整合canal實(shí)現(xiàn)數(shù)據(jù)緩存一致性解決方案

    SpringBoot整合canal實(shí)現(xiàn)數(shù)據(jù)緩存一致性解決方案

    canal主要用途是基于?MySQL?數(shù)據(jù)庫(kù)增量日志解析,提供增量數(shù)據(jù)訂閱和消費(fèi),canal是借助于MySQL主從復(fù)制原理實(shí)現(xiàn),本文將給大家介紹SpringBoot整合canal實(shí)現(xiàn)數(shù)據(jù)緩存一致性解決方案,需要的朋友可以參考下
    2024-03-03
  • JUnit5常用注解的使用

    JUnit5常用注解的使用

    注解是JUnit的標(biāo)志性技術(shù),本文就來(lái)對(duì)它的20個(gè)注解,以及元注解和組合注解進(jìn)行學(xué)習(xí),感興趣的可以了解一下
    2021-07-07
  • 一篇文章帶你深入了解Java基礎(chǔ)(5)

    一篇文章帶你深入了解Java基礎(chǔ)(5)

    這篇文章主要給大家介紹了關(guān)于Java中方法使用的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2021-08-08
  • Spring實(shí)現(xiàn)動(dòng)態(tài)修改時(shí)間參數(shù)并手動(dòng)開(kāi)啟關(guān)停操作

    Spring實(shí)現(xiàn)動(dòng)態(tài)修改時(shí)間參數(shù)并手動(dòng)開(kāi)啟關(guān)停操作

    spring實(shí)現(xiàn)定時(shí)任務(wù)的方式有三種,分別是java自帶的timer類(lèi)、spring task和quartz三種。本文只介紹spring自帶的task和第三方quartz,感興趣的朋友參考下吧
    2017-09-09
  • 深入理解Java反射

    深入理解Java反射

    在理解反射原理之前先要搞清類(lèi)型信息。接下來(lái)通過(guò)本文給大家介紹java反射的深入理解,非常不錯(cuò),具有參考借鑒價(jià)值,感興趣的朋友一起看下吧
    2016-07-07
  • Java多線(xiàn)程之同步鎖-lock詳解

    Java多線(xiàn)程之同步鎖-lock詳解

    這篇文章主要為大家詳細(xì)介紹了Java多線(xiàn)程中同步鎖-lock的原理與使用,文中的示例代碼講解詳細(xì),對(duì)我們了解線(xiàn)程有一定幫助,需要的可以參考一下
    2022-10-10
  • JavaWeb中Struts2攔截器深入分析(一)

    JavaWeb中Struts2攔截器深入分析(一)

    這篇文章主要為大家詳細(xì)介紹了JavaWeb中Struts2攔截器的功能,感興趣的小伙伴們可以參考一下
    2016-06-06
  • SpringBoot普通類(lèi)獲取spring容器中bean的操作

    SpringBoot普通類(lèi)獲取spring容器中bean的操作

    這篇文章主要介紹了SpringBoot普通類(lèi)獲取spring容器中bean的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2020-09-09
  • Sharding Jdbc批量操作引發(fā)fullGC解決

    Sharding Jdbc批量操作引發(fā)fullGC解決

    這篇文章主要為大家介紹了Sharding Jdbc批量操作引發(fā)fullGC解決,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11
  • 深入了解Java核心類(lèi)庫(kù)--Date,Calendar,DateFormat類(lèi)

    深入了解Java核心類(lèi)庫(kù)--Date,Calendar,DateFormat類(lèi)

    這篇文章主要為大家詳細(xì)介紹了javaDate,Calendar,DateFormat類(lèi)定義與使用的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下,希望能給你帶來(lái)幫助
    2021-07-07

最新評(píng)論