| | |
| | | if ((!map.containsKey("PM10C")) && map.containsKey("PM10")) {
|
| | | map.put("PM10C", map.get("PM10").toString());
|
| | | }
|
| | |
|
| | | if (map.get("windScale") != null) {
|
| | | String windScale = map.get("windScale").toString().replace("-", "~");
|
| | | map.put("windScale",windScale);
|
| | | }
|
| | | }
|
| | |
|
| | | //后4小时保良值
|
| | |
| | | cal.setTime(sdf1.parse(rtime));
|
| | | cal.add(Calendar.HOUR_OF_DAY, -7);
|
| | | Date startTime = cal.getTime();
|
| | | Date endTime=sdf1.parse(format);
|
| | | Date endTime = sdf1.parse(format);
|
| | | Map<String, Object> hashMap = new HashMap<>();
|
| | | hashMap.put("cityCode", Integer.valueOf(parameters.get("cityCode").toString()));
|
| | | hashMap.put("start", startTime);
|