Browse Source

交通流拥堵

develop
王兴琳 4 months ago
parent
commit
7b4872691f
  1. 4
      zc-business/src/main/java/com/zc/business/service/impl/DcTrafficStatisticsServiceImpl.java

4
zc-business/src/main/java/com/zc/business/service/impl/DcTrafficStatisticsServiceImpl.java

@ -1161,11 +1161,11 @@ public class DcTrafficStatisticsServiceImpl implements IDcTrafficStatisticsServi
JSONObject jsonObject = (JSONObject) object;
Integer asOneRoad = jsonObject.getInteger("as_one_road");
if (jsonObject.getDouble("end_pile_no") != null) {
double endPileNo = jsonObject.getDouble("end_pile_no");
double endPileNo = jsonObject.getDouble("end_pile_no")>jsonObject.getDouble("start_pile_no")?jsonObject.getDouble("end_pile_no") : jsonObject.getDouble("start_pile_no");
String endMark = formatNumber(endPileNo);
jsonObject.put("endMark", endMark);//结束桩号
}
double startPileNo = jsonObject.getDouble("start_pile_no");
double startPileNo = jsonObject.getDouble("start_pile_no")>jsonObject.getDouble("end_pile_no")? jsonObject.getDouble("end_pile_no"):jsonObject.getDouble("start_pile_no");
String stakeMark = formatNumber(startPileNo);
jsonObject.put("stakeMark", stakeMark);//
String link_lng_lats = jsonObject.getString("link_lng_lats");

Loading…
Cancel
Save