Browse Source

获取上海城建坐标

songzhengming 3 months ago
parent
commit
72b3a4624f

+ 10 - 0
ghjg-item-datashare-server/src/main/java/com/shanghaichengdi/ghjgitem/service/impl/CommonServiceImpl.java

@@ -293,6 +293,16 @@ public class CommonServiceImpl implements CommonService {
                             latitudeBd = latitudeBd.setScale(8, RoundingMode.HALF_UP); // 保留8位小数
                             double latitude = latitudeBd.doubleValue();
 
+                            // 格式化纬度,保留两位小数
+                            BigDecimal mapxBd = new BigDecimal(Double.toString(row.getDouble("mapx")));
+                            mapxBd = mapxBd.setScale(8, RoundingMode.HALF_UP); // 保留8位小数
+                            double mapx = mapxBd.doubleValue();
+
+                            // 格式化纬度,保留两位小数
+                            BigDecimal mapyBd = new BigDecimal(Double.toString(row.getDouble("mapy")));
+                            mapyBd = mapyBd.setScale(8, RoundingMode.HALF_UP); // 保留8位小数
+                            double mapy = mapyBd.doubleValue();
+
                             BoatPathVo boatPathVo = new BoatPathVo();
                             boatPathVo.setMmsi(row.getString("deviceid"));
                             boatPathVo.setDirection(direction);

+ 7 - 0
ghjg-item-datashare-server/src/main/java/com/shanghaichengdi/ghjgitem/vo/BoatPathVo.java

@@ -29,4 +29,11 @@ public class BoatPathVo {
      * 时间
      */
     String time;
+
+    /**
+     * 上海城建2000坐标
+     */
+    String mapX;
+
+    String mapY;
 }

+ 1 - 1
ghjg-item-datashare-server/src/main/resources/mapper/CommonMapper.xml

@@ -354,7 +354,7 @@
   </select>
 
   <select id="selectBoatPathFromMvwHistory" resultType="com.shanghaichengdi.ghjgitem.vo.BoatPathVo">
-    select t.deviceid mmsi, t.VELOCITY,t.DIRECTION,t.LONGITUDE,t.LATITUDE,
+    select t.deviceid mmsi, t.VELOCITY,t.DIRECTION,t.LONGITUDE,t.LATITUDE,t.MAPX,t.MAPY
            to_char(t.GPSTIME,'yyyy-mm-dd hh24:mi:ss') time
     from nhdt.gpsinfo_history t
     where t.deviceid = #{mmsi}