|
|
|
@ -8,16 +8,17 @@ import com.air.applets.dto.CoordinatePoint;
|
|
|
|
|
import com.air.entity.PolygonGeom; |
|
|
|
|
import com.air.entity.PolygonPoint; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.locationtech.jts.geom.Coordinate; |
|
|
|
|
import org.locationtech.jts.geom.GeometryFactory; |
|
|
|
|
import org.locationtech.jts.geom.Point; |
|
|
|
|
import org.locationtech.jts.geom.Polygon; |
|
|
|
|
import org.springframework.web.context.request.RequestContextHolder; |
|
|
|
|
import org.springframework.web.context.request.ServletRequestAttributes; |
|
|
|
|
import org.springframework.web.util.WebUtils; |
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest; |
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.Arrays; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -49,7 +50,9 @@ public class GeomUtils {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static CoordinatePoint lonLatConvertPoint(String lonLat){ |
|
|
|
|
List<String> lonLatList = Arrays.asList(lonLat.split(";")); |
|
|
|
|
log.info("范围坐标=={}",lonLat); |
|
|
|
|
|
|
|
|
|
List<String> lonLatList = Arrays.asList(lonLat.split(";"));//将坐标转换为数组
|
|
|
|
|
|
|
|
|
|
CoordinatePoint coordinatePoint = new CoordinatePoint(); |
|
|
|
|
//绘图经纬度
|
|
|
|
@ -58,14 +61,22 @@ public class GeomUtils {
|
|
|
|
|
List<List<Double>> coordinates = new ArrayList<>(); |
|
|
|
|
//导航中间点
|
|
|
|
|
List<Double> cenPoint = new ArrayList<>(2); |
|
|
|
|
for (int i = 0;i<lonLatList.size();i++){ |
|
|
|
|
//
|
|
|
|
|
// log.info("中心lon经度==={}===中心lat纬度==={}",centerPoint.get("lon"),centerPoint.get("lat"));
|
|
|
|
|
Map<String, Double> centerPoint = getCenterPoint(lonLat);//有些中心不准
|
|
|
|
|
// Map<String, Double> centerPoint = getCenterOfGravityPoint4(lonLat);
|
|
|
|
|
log.info("中心lon经度==={}===中心lat纬度==={}",centerPoint.get("lon"),centerPoint.get("lat")); |
|
|
|
|
cenPoint.add(centerPoint.get("lon")); |
|
|
|
|
cenPoint.add(centerPoint.get("lat")); |
|
|
|
|
for (int i = 0;i<lonLatList.size();i++){ //处理坐标点
|
|
|
|
|
String[] lntlat = lonLatList.get(i).split(","); |
|
|
|
|
// log.info("lon经度==={}===lat纬度==={}",lntlat[0],lntlat[1]);
|
|
|
|
|
double lon = Double.parseDouble(lntlat[0]); |
|
|
|
|
double lat = Double.parseDouble(lntlat[1]); |
|
|
|
|
if (i == 0){ |
|
|
|
|
cenPoint.add(lon); |
|
|
|
|
cenPoint.add(lat); |
|
|
|
|
} |
|
|
|
|
// if (i == 0){
|
|
|
|
|
// cenPoint.add(lon);
|
|
|
|
|
// cenPoint.add(lat);
|
|
|
|
|
// }
|
|
|
|
|
PolygonPoint point = new PolygonPoint(); |
|
|
|
|
point.setLongitude(lon); |
|
|
|
|
point.setLatitude(lat); |
|
|
|
@ -75,12 +86,122 @@ public class GeomUtils {
|
|
|
|
|
polygonPoints.add(point); |
|
|
|
|
coordinates.add(coordinate); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
coordinatePoint.setCoordinates(coordinates); |
|
|
|
|
coordinatePoint.setPolygonPoints(polygonPoints); |
|
|
|
|
coordinatePoint.setCenPoint(cenPoint); |
|
|
|
|
return coordinatePoint; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据输入的地点坐标计算中心点 |
|
|
|
|
* |
|
|
|
|
* @param str ( 118.778076,30.905645;118.780764,30.914549;118.782928,30.9186;118.785621,30.92202; ) |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
public static Map<String,Double> getCenterPoint(String str) { |
|
|
|
|
String[] arr = str.split(";"); |
|
|
|
|
int total = arr.length; |
|
|
|
|
double X = 0, Y = 0, Z = 0; |
|
|
|
|
for (int i = 0; i < arr.length; i++) { |
|
|
|
|
double lat, lon, x, y, z; |
|
|
|
|
lon = Double.parseDouble(arr[i].split(",")[0]) * Math.PI / 180; |
|
|
|
|
lat = Double.parseDouble(arr[i].split(",")[1]) * Math.PI / 180; |
|
|
|
|
x = Math.cos(lat) * Math.cos(lon); |
|
|
|
|
y = Math.cos(lat) * Math.sin(lon); |
|
|
|
|
z = Math.sin(lat); |
|
|
|
|
X += x; |
|
|
|
|
Y += y; |
|
|
|
|
Z += z; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
X = X / total; |
|
|
|
|
Y = Y / total; |
|
|
|
|
Z = Z / total; |
|
|
|
|
double Lon = Math.atan2(Y, X); |
|
|
|
|
double Hyp = Math.sqrt(X * X + Y * Y); |
|
|
|
|
double Lat = Math.atan2(Z, Hyp); |
|
|
|
|
log.info("{}",Lat * 180 / Math.PI); |
|
|
|
|
log.info("{}", Lon * 180 / Math.PI); |
|
|
|
|
// return new GeoCoordinate(Lat * 180 / Math.PI, Lon * 180 / Math.PI);
|
|
|
|
|
Map<String,Double> map = new HashMap<String,Double>(); |
|
|
|
|
map.put("lon", Lon * 180 / Math.PI); |
|
|
|
|
map.put("lat", Lat * 180 / Math.PI); |
|
|
|
|
return map; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//计算内心、质心
|
|
|
|
|
public static Map<String,Double> getCenterOfGravityPoint4(String str ) { |
|
|
|
|
String[] arr = str.split(";"); |
|
|
|
|
// for (String s : arr) {
|
|
|
|
|
// String[] split = s.split(",");
|
|
|
|
|
// }
|
|
|
|
|
List<Coordinate> CoordinateList=new ArrayList<>(); |
|
|
|
|
//CoordinateList.add(new Coordinate("经度","纬度"));
|
|
|
|
|
for (String s : arr) { |
|
|
|
|
String[] split = s.split(","); |
|
|
|
|
String s1 = split[0]; |
|
|
|
|
String s2 = split[1]; |
|
|
|
|
Double doubleString = Double.parseDouble(s1); |
|
|
|
|
Double doubler = Double.parseDouble(s2); |
|
|
|
|
CoordinateList.add(new Coordinate(doubleString,doubler)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Coordinate[] coordinates = new Coordinate[CoordinateList.size()]; |
|
|
|
|
CoordinateList.toArray(coordinates); |
|
|
|
|
GeometryFactory geometryFactory = new GeometryFactory(); |
|
|
|
|
//MultiPoint mpoint=geometryFactory.createMultiPointFromCoords(coordinates);//创建多点
|
|
|
|
|
//Point pt=mpoint.getCentroid();//得到多点的质心
|
|
|
|
|
//Point pt=mpoint.getInteriorPoint();//多点内心
|
|
|
|
|
Polygon p=geometryFactory.createPolygon(coordinates);//创建多边形
|
|
|
|
|
//Point pt=p.getCentroid();//多边形质心
|
|
|
|
|
Point pt=p.getInteriorPoint();//多边形内心
|
|
|
|
|
Map<String,Double> map = new HashMap<String,Double>(); |
|
|
|
|
map.put("lon", pt.getX()); |
|
|
|
|
map.put("lat", pt.getY()); |
|
|
|
|
// log.info("{}",pt.getX());
|
|
|
|
|
// log.info("{}", pt.getY());
|
|
|
|
|
return map; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// /**
|
|
|
|
|
// * 根据输入的地点坐标计算中心点
|
|
|
|
|
// * @param str
|
|
|
|
|
// * @return
|
|
|
|
|
// */
|
|
|
|
|
// public static Map<String,Double> getCenterPoint(String str) {
|
|
|
|
|
// String[] arr = str.split(";");
|
|
|
|
|
// int total = arr.length;
|
|
|
|
|
// double X = 0, Y = 0, Z = 0;
|
|
|
|
|
// for(int i=0;i<arr.length;i++){
|
|
|
|
|
// double lat, lon, x, y, z;
|
|
|
|
|
// lon = Double.parseDouble(arr[i].split(",")[0]) * Math.PI / 180;
|
|
|
|
|
// lat = Double.parseDouble(arr[i].split(",")[1]) * Math.PI / 180;
|
|
|
|
|
// x = Math.cos(lat) * Math.cos(lon);
|
|
|
|
|
// y = Math.cos(lat) * Math.sin(lon);
|
|
|
|
|
// z = Math.sin(lat);
|
|
|
|
|
// X += x;
|
|
|
|
|
// Y += y;
|
|
|
|
|
// Z += z;
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// X = X / total;
|
|
|
|
|
// Y = Y / total;
|
|
|
|
|
// Z = Z / total;
|
|
|
|
|
// double Lon = Math.atan2(Y, X);
|
|
|
|
|
// double Hyp = Math.sqrt(X * X + Y * Y);
|
|
|
|
|
// double Lat = Math.atan2(Z, Hyp);
|
|
|
|
|
//
|
|
|
|
|
// Map<String,Double> map = new HashMap<String,Double>();
|
|
|
|
|
// map.put("lng", Lon * 180 / Math.PI);
|
|
|
|
|
// map.put("lat", Lat * 180 / Math.PI);
|
|
|
|
|
// return map;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static String computeColor(String color,Integer opaqueness){ |
|
|
|
|
if (StrUtil.isEmpty(color) || opaqueness == null){ |
|
|
|
|
return null; |
|
|
|
|