|
@@ -1086,7 +1086,9 @@ public class AnalysisDataImpl {
|
|
|
String s1 = this.assembleWind(str, wsHeight, wdHeight);
|
|
|
//修改表头
|
|
|
csvRow.set(i, s1);
|
|
|
-
|
|
|
+ if(str.equals("-")){
|
|
|
+ str = "-0.99";
|
|
|
+ }
|
|
|
hashMap.put(row.get(i), str);
|
|
|
}
|
|
|
//过滤数据
|
|
@@ -1199,13 +1201,13 @@ public class AnalysisDataImpl {
|
|
|
String height = "";
|
|
|
if (!s.contains("TI")) {
|
|
|
if(s.contains("K620Ab")){
|
|
|
- wsHeight.add("160A");
|
|
|
- }
|
|
|
- String[] strSp = wsAndType.split("_");
|
|
|
- if (strSp.length > 0) {
|
|
|
- height = CalculationUtil.getNumberFromString(strSp[1]);
|
|
|
+ height = "160A";
|
|
|
+ }else {
|
|
|
+ String[] strSp = wsAndType.split("_");
|
|
|
+ if (strSp.length > 0) {
|
|
|
+ height = CalculationUtil.getNumberFromString(strSp[1]);
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
wsHeight.add(height);
|
|
|
}
|
|
|
//ave/min/max/sta
|
|
@@ -1233,6 +1235,9 @@ public class AnalysisDataImpl {
|
|
|
} else if (s.contains("TEM")) {
|
|
|
String type = this.assembleProperty(s);
|
|
|
str = "t" + type;
|
|
|
+ }else if (s.contains("RH")) {
|
|
|
+ String type = this.assembleProperty(s);
|
|
|
+ str = "rh" + type;
|
|
|
}
|
|
|
return str;
|
|
|
}
|