|
@@ -890,33 +890,26 @@ public class AnalysisDataImpl {
|
|
|
hashMap.put("time", time1);
|
|
|
BigDecimal tAve = conversion("t_ave", row, rows);
|
|
|
hashMap.put("tAve", tAve);
|
|
|
- CheckDataRecode.map.put("tAve" + "DeadDataStartTime", new DateTime(sdf.parse(time1)));
|
|
|
|
|
|
BigDecimal rhAve = conversion("rh_ave", row, rows);
|
|
|
hashMap.put("rhAve", rhAve);
|
|
|
- CheckDataRecode.map.put("rhAve" + "DeadDataStartTime", new DateTime(sdf.parse(time1)));
|
|
|
|
|
|
BigDecimal paAve = conversion("pa_ave", row, rows);
|
|
|
hashMap.put("paAve", paAve);
|
|
|
- CheckDataRecode.map.put("paAve" + "DeadDataStartTime", new DateTime(sdf.parse(time1)));
|
|
|
|
|
|
BigDecimal airDensity = BigDecimal.valueOf(1.293).multiply(new BigDecimal(273).divide(new BigDecimal(273).add(CalculationUtil.getBigDecimal(tAve)), 2, RoundingMode.HALF_UP)).multiply(CalculationUtil.getBigDecimal(paAve)).divide(new BigDecimal(1013), 2, RoundingMode.HALF_UP);
|
|
|
hashMap.put("airDensity", airDensity);
|
|
|
- CheckDataRecode.map.put("airDensity" + "DeadDataStartTime", new DateTime(sdf.parse(time1)));
|
|
|
|
|
|
for (Map.Entry<String, ArrayList<Double>> entry : wsStaMapList.entrySet()) {
|
|
|
|
|
|
BigDecimal wsAve = conversion("ws_Ave" + entry.getKey(), row, rows);
|
|
|
hashMap.put("wsAve_" + entry.getKey(), wsAve);
|
|
|
- CheckDataRecode.map.put("wsAve_" + entry.getKey() + "DeadDataStartTime", new DateTime(sdf.parse(time1)));
|
|
|
|
|
|
|
|
|
BigDecimal wdAve = conversion("wd_Ave" + entry.getKey(), row, rows);
|
|
|
hashMap.put("wdAve_" + entry.getKey(), wdAve);
|
|
|
- CheckDataRecode.map.put("wdAve_" + entry.getKey() + "DeadDataStartTime", new DateTime(sdf.parse(time1)));
|
|
|
|
|
|
hashMap.put("wsSta_" + entry.getKey(), CalculationUtil.calculateSD(entry.getValue()));
|
|
|
- CheckDataRecode.map.put("wsSta_" + entry.getKey() + "DeadDataStartTime", new DateTime(sdf.parse(time1)));
|
|
|
}
|
|
|
// if(firstBoolean){
|
|
|
// firstMap = hashMap;
|