|
|
@ -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"); |
|
|
|