| ¶Ô±ÈÐÂÎļþ | 
|  |  |  | 
|---|
|  |  |  | package com.doumee.core.utils; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.alibaba.fastjson.JSONObject; | 
|---|
|  |  |  | import com.alibaba.fastjson.TypeReference; | 
|---|
|  |  |  | import com.doumee.dao.business.web.request.LocaltionDTO; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.awt.geom.GeneralPath; | 
|---|
|  |  |  | import java.awt.geom.Point2D; | 
|---|
|  |  |  | import java.util.ArrayList; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * è®¡ç®è·ç¦» | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public class PositionUtil { | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static String getTxMapAddrByLatAndLng(Double lat,Double lng,String host,String mapkey){ | 
|---|
|  |  |  | try { | 
|---|
|  |  |  | if(lat == null || lng ==null){ | 
|---|
|  |  |  | return null; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | String url =host +"/ws/geocoder/v1/?key="+mapkey+"&location="+lat+","+lng; | 
|---|
|  |  |  | String res = HttpsUtil.get(url,false); | 
|---|
|  |  |  | JSONObject jsonObject = JSONObject.parseObject(res ); | 
|---|
|  |  |  | String r = null; | 
|---|
|  |  |  | if(jsonObject.getJSONObject("result")!=null){ | 
|---|
|  |  |  | if(jsonObject.getJSONObject("result").getJSONObject("formatted_addresses")!=null){ | 
|---|
|  |  |  | r =jsonObject.getJSONObject("result").getJSONObject("formatted_addresses").getString("recommend"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if(r==null || r.equals("")){ | 
|---|
|  |  |  | r =jsonObject.getJSONObject("result").getString("address"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return r; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | }catch (Exception e){ | 
|---|
|  |  |  | e.printStackTrace(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return null; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æ¤çåæ° | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private static double pi = 3.14159265358979324; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * å«ææ¤çåæ æå½±å°å¹³é¢å°å¾åæ ç³»çæå½±å å | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private static double a = 6378245.0; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * æ¤ççåå¿ç | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private static double ee = 0.00669342162296594323; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * ç»çº¬åº¦ GPS转é«å¾· | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param wgLon GPSç»åº¦ | 
|---|
|  |  |  | * @param wgLat GPS维度 | 
|---|
|  |  |  | * @return è½¬ååçç»çº¬åº¦åæ  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public static AMap transform(double wgLon, double wgLat) { | 
|---|
|  |  |  | if (outOfChina(wgLat, wgLon)) { | 
|---|
|  |  |  | return new AMap(wgLon, wgLat); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | double dLat = transformLat(wgLon - 105.0, wgLat - 35.0); | 
|---|
|  |  |  | double dLon = transformLon(wgLon - 105.0, wgLat - 35.0); | 
|---|
|  |  |  | double radLat = wgLat / 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 transLat = wgLat + dLat; | 
|---|
|  |  |  | double transLon = wgLon + dLon; | 
|---|
|  |  |  | return new AMap(transLon, transLat); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * å¤ææ¯å¦ä¸ºå½å¤åæ ï¼ï¼ä¸å¨å½å
ä¸ååç§» | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param lat | 
|---|
|  |  |  | * @param lon | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private 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; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * çº¬åº¦è½¬æ¢ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param x | 
|---|
|  |  |  | * @param y | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * ç»åº¦è½¬æ¢ | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param x | 
|---|
|  |  |  | * @param y | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private 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 class AMap { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * ç»åº¦ | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private double longitude; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * ç»´åº¦ | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private double latitude; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public AMap(double longitude, double latitude) { | 
|---|
|  |  |  | this.longitude = longitude; | 
|---|
|  |  |  | this.latitude = latitude; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public double getLongitude() { | 
|---|
|  |  |  | return longitude; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public double getLatitude() { | 
|---|
|  |  |  | return latitude; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | public static void main(String[] args) { | 
|---|
|  |  |  | //        System.out.println( | 
|---|
|  |  |  | //          PositionUtil.getTxMapAddrByLatAndLng(Double.valueOf("31.76792509"),Double.valueOf("117.23267758"),"https://apis.map.qq.com","3AYBZ-I5R3V-2BVP3-UWBDQ-ETBM5-B2BBQ") | 
|---|
|  |  |  | //        ); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //        String str ="[{\"lat\":31.732726766273103,\"lng\":117.37721605116087,\"height\":0},{\"lat\":31.72079687406289,\"lng\":117.39831914258241,\"height\":0},{\"lat\":31.714484720597493,\"lng\":117.39831914258241,\"height\":0},{\"lat\":31.71233192243245,\"lng\":117.39583137996954,\"height\":0},{\"lat\":31.71401037878662,\"lng\":117.3785457182995,\"height\":0}]"; | 
|---|
|  |  |  | //        TypeReference typeReference =  new TypeReference<List<LocaltionDTO>>(){}; | 
|---|
|  |  |  | //        List<LocaltionDTO> array = JSONObject.parseObject(str, typeReference.getType()); | 
|---|
|  |  |  | //        if(array == null || array.size() ==0){ | 
|---|
|  |  |  | //           System.out.println("================="); | 
|---|
|  |  |  | //        } | 
|---|
|  |  |  | //        System.out.println(isInPolygon(  117.39387876,31.71365546,array)); | 
|---|
|  |  |  | //        AMap aMap = transform( 117.38823300,  31.71550000); | 
|---|
|  |  |  | //        System.out.println(aMap.getLatitude()+""+aMap.getLongitude()); | 
|---|
|  |  |  | //        System.out.println(isInPolygon(  aMap.getLongitude(),aMap.getLatitude(),array)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | /* "latitude": 31.71553300, | 
|---|
|  |  |  | "longitude": 117.39, | 
|---|
|  |  |  | 117.393962,31.713690 | 
|---|
|  |  |  | 31.71550000   117.38823300 | 
|---|
|  |  |  | */ /** | 
|---|
|  |  |  | * å¤æåæ ç¹æ¯å¦å¨å¤è¾¹å½¢åºåå | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param pointLon è¦å¤æçç¹çç»åº¦ | 
|---|
|  |  |  | * @param pointLat è¦å¤æçç¹ç纬度 | 
|---|
|  |  |  | * @return trueï¼èå´å
; falseï¼èå´å¤ | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public static boolean isInPolygon(double pointLon, double pointLat, List<LocaltionDTO> list) { | 
|---|
|  |  |  | if(list==null ||list.size()==0){ | 
|---|
|  |  |  | return false; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | double[] lon = new double[list.size()]; | 
|---|
|  |  |  | double[] lat = new double[list.size()]; | 
|---|
|  |  |  | for (int i = 0; i < list.size(); i++) { | 
|---|
|  |  |  | lon[i] = list.get(i).getLng() ==null?0:list.get(i).getLng(); | 
|---|
|  |  |  | lat[i] = list.get(i).getLat() ==null?0:list.get(i).getLat(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // å°è¦å¤æçæ¨ªçºµåæ ç»æä¸ä¸ªç¹ | 
|---|
|  |  |  | Point2D.Double point = new Point2D.Double(pointLon, pointLat); | 
|---|
|  |  |  | // å°åºååé¡¶ç¹çæ¨ªçºµåæ æ¾å°ä¸ä¸ªç¹éåéé¢ | 
|---|
|  |  |  | List<Point2D.Double> pointList = new ArrayList<>(); | 
|---|
|  |  |  | double polygonPointToX; | 
|---|
|  |  |  | double polygonPointToY; | 
|---|
|  |  |  | for (int i = 0; i < lon.length; i++) { | 
|---|
|  |  |  | polygonPointToX = lon[i]; | 
|---|
|  |  |  | polygonPointToY = lat[i]; | 
|---|
|  |  |  | Point2D.Double polygonPoint = new Point2D.Double(polygonPointToX, polygonPointToY); | 
|---|
|  |  |  | pointList.add(polygonPoint); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return check(point, pointList); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * åæ ç¹æ¯å¦å¨å¤è¾¹å½¢å | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param point   è¦å¤æçç¹çæ¨ªçºµåæ  | 
|---|
|  |  |  | * @param polygon ç»æçé¡¶ç¹åæ éå | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private static boolean check(Point2D.Double point, List<Point2D.Double> polygon) { | 
|---|
|  |  |  | GeneralPath generalPath = new GeneralPath(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Point2D.Double first = polygon.get(0); | 
|---|
|  |  |  | // éè¿ç§»å¨å°æå®åæ ï¼ä»¥å精度æå®ï¼ï¼å°ä¸ä¸ªç¹æ·»å å°è·¯å¾ä¸ | 
|---|
|  |  |  | generalPath.moveTo(first.x, first.y); | 
|---|
|  |  |  | polygon.remove(0); | 
|---|
|  |  |  | for (Point2D.Double d : polygon) { | 
|---|
|  |  |  | // éè¿ç»å¶ä¸æ¡ä»å½ååæ å°æ°æå®åæ ï¼ä»¥å精度æå®ï¼çç´çº¿ï¼å°ä¸ä¸ªç¹æ·»å å°è·¯å¾ä¸ã | 
|---|
|  |  |  | generalPath.lineTo(d.x, d.y); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // å°å ä½å¤è¾¹å½¢å°é | 
|---|
|  |  |  | generalPath.lineTo(first.x, first.y); | 
|---|
|  |  |  | generalPath.closePath(); | 
|---|
|  |  |  | // æµè¯æå®ç Point2D æ¯å¦å¨ Shape çè¾¹çå
ã | 
|---|
|  |  |  | return generalPath.contains(point); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|