1.联调
This commit is contained in:
parent
e95769e375
commit
0ee0703b50
|
@ -160,6 +160,9 @@ public class ReceiveController {
|
||||||
Integer status = value.getStatus();
|
Integer status = value.getStatus();
|
||||||
if(status == 1){//上电运行
|
if(status == 1){//上电运行
|
||||||
log.info("上电运行:" +logEntry.getDevName());
|
log.info("上电运行:" +logEntry.getDevName());
|
||||||
|
String lon = value.getLon();
|
||||||
|
String lat = value.getLat();
|
||||||
|
if(StrUtil.isNotBlank(lon) && StrUtil.isNotBlank(lat)){
|
||||||
//获取当前正在骑行中的订单
|
//获取当前正在骑行中的订单
|
||||||
EtOrder etOrder = etOrderService.getCurrentOrder(device.getSn());
|
EtOrder etOrder = etOrderService.getCurrentOrder(device.getSn());
|
||||||
JSONArray jsonArray;
|
JSONArray jsonArray;
|
||||||
|
@ -169,14 +172,14 @@ public class ReceiveController {
|
||||||
jsonArray = new JSONArray();
|
jsonArray = new JSONArray();
|
||||||
}
|
}
|
||||||
JSONArray newPoint = new JSONArray();
|
JSONArray newPoint = new JSONArray();
|
||||||
newPoint.add(value.getLon());
|
newPoint.add(new BigDecimal(lon));
|
||||||
newPoint.add(value.getLat());
|
newPoint.add(new BigDecimal(lat));
|
||||||
jsonArray.add(newPoint);
|
jsonArray.add(newPoint);
|
||||||
jsonArray.toJSONString();
|
jsonArray.toJSONString();
|
||||||
|
|
||||||
log.info("更新行程jsonArray:" +jsonArray.toJSONString());
|
log.info("更新行程jsonArray:" +jsonArray.toJSONString());
|
||||||
etOrder.setTripRouteStr(jsonArray.toJSONString());
|
etOrder.setTripRouteStr(jsonArray.toJSONString());
|
||||||
Geometry geometry = GeoUtils.toGeometry(jsonArray.toJSONString());
|
Geometry geometry = GeoUtils.toGeometryByLinearRing(jsonArray.toJSONString());
|
||||||
String wkt = GeoUtils.wkt(geometry);
|
String wkt = GeoUtils.wkt(geometry);
|
||||||
etOrder.setTripRoute(wkt);
|
etOrder.setTripRoute(wkt);
|
||||||
int updateEtOrder = etOrderService.updateEtOrder(etOrder);
|
int updateEtOrder = etOrderService.updateEtOrder(etOrder);
|
||||||
|
@ -186,7 +189,7 @@ public class ReceiveController {
|
||||||
log.info("更新行程线路失败==========================>" +logEntry.getDevName());
|
log.info("更新行程线路失败==========================>" +logEntry.getDevName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
/** 5.低于电量(%)不得骑行,声音播报 */
|
/** 5.低于电量(%)不得骑行,声音播报 */
|
||||||
if(electricQuantity <= model.getLowBatteryReminder()){
|
if(electricQuantity <= model.getLowBatteryReminder()){
|
||||||
//发送低电量播报指令
|
//发送低电量播报指令
|
||||||
|
|
|
@ -125,6 +125,34 @@ public class GeoUtils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* json转Geometry对象 直线
|
||||||
|
* 格式:[[120.356267,26.941506],[120.357168,26.941262],[120.35697,26.940564]]
|
||||||
|
* */
|
||||||
|
public Geometry toGeometryByLinearRing(String json) {
|
||||||
|
if (StringUtils.isBlank(json)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
// 将json转成二位数组
|
||||||
|
double[][] coordinates = transform(json);
|
||||||
|
log.info("coordinates:{}", JSON.toJSONString(coordinates));
|
||||||
|
// 构建坐标数组
|
||||||
|
Coordinate[] points = new Coordinate[coordinates.length];
|
||||||
|
for (int i = 0; i < coordinates.length; i++) {
|
||||||
|
double lon = coordinates[i][0];
|
||||||
|
double lat = coordinates[i][1];
|
||||||
|
points[i] = new Coordinate(lon, lat);
|
||||||
|
}
|
||||||
|
// 创建LineString对象
|
||||||
|
LineString lineString = GEOMETRY_FACTORY.createLineString(points);
|
||||||
|
return lineString;
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.warn(e.getMessage(), e);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将json转成二位数组
|
* 将json转成二位数组
|
||||||
* */
|
* */
|
||||||
|
|
|
@ -267,7 +267,7 @@ public class EtOrderServiceImpl implements IEtOrderService
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public EtOrder getCurrentOrder(String sn) {
|
public EtOrder getCurrentOrder(String sn) {
|
||||||
if(ObjectUtil.isNotNull(asDeviceService.selectAsDeviceBySn(sn))){
|
if(ObjectUtil.isNotNull(asDeviceMapper.selectAsDeviceBySn(sn))){
|
||||||
EtOrder etOrder = new EtOrder();
|
EtOrder etOrder = new EtOrder();
|
||||||
etOrder.setSn(sn);
|
etOrder.setSn(sn);
|
||||||
etOrder.setStatus(ServiceConstants.ORDER_STATUS_RIDING);
|
etOrder.setStatus(ServiceConstants.ORDER_STATUS_RIDING);
|
||||||
|
|
|
@ -76,7 +76,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
o.unlock_time,
|
o.unlock_time,
|
||||||
o.return_time,
|
o.return_time,
|
||||||
o.rule_end_time,
|
o.rule_end_time,
|
||||||
o.return_type
|
o.return_type,
|
||||||
|
AsText(o.trip_route),
|
||||||
|
o.trip_route_str
|
||||||
FROM
|
FROM
|
||||||
et_order o
|
et_order o
|
||||||
LEFT JOIN
|
LEFT JOIN
|
||||||
|
|
Loading…
Reference in New Issue
Block a user