-
风速适宜度:
-
${data.windSpeedSuitability}
+
+
风速适宜度:
+
${data.windSpeedSuitability}
`;
if (data.hasMeasuredWindSpeed === true) {
html += `
-
-
实测风速:
-
${data.measuredWindSpeed} m/s
+
+
实测风速:
+
${data.measuredWindSpeed} m/s
-
-
转换风速:
-
${data.convertedWindSpeed} m/s
+
+
转换风速:
+
${data.convertedWindSpeed} m/s
`;
} else {
html += `
-
-
区域类型:
-
${AREA_TYPE_MAP[data.areaType] || data.areaType || "-"}
+
+
区域类型:
+
${AREA_TYPE_MAP[data.areaType] || data.areaType || "-"}
-
-
测点高度:
-
${data.pointHeight} m
+
+
测点高度:
+
${data.pointHeight} m
-
-
点位风速:
-
${data.pointWindSpeed} m/s
+
+
点位风速:
+
${data.pointWindSpeed} m/s
-
-
推算风速:
-
${data.calculatedWindSpeed} m/s
+
+
推算风速:
+
${data.calculatedWindSpeed} m/s
`;
}
html += `
-
-
平均风向:
-
${data.averageWindDirection}°
+
+
平均风向:
+
${data.averageWindDirection}°
-
-
风向标准差:
-
${data.windDirectionStandardDeviation}°
+
+
风向标准差:
+
${data.windDirectionStandardDeviation}°
-
-
风向适宜度:
-
${data.windDirectionSuitability}
+
+
风向适宜度:
+
${data.windDirectionSuitability}
-
-
大气稳定度:
-
${data.atmosphericStability}
+
+
大气稳定度:
+
${data.atmosphericStability}
-
-
稳定度适宜度:
-
${data.suitabilityDegree}
+
+
稳定度适宜度:
+
${data.suitabilityDegree}
-
-
总体适宜度:
-
${getSuitabilityText(data.overallSuitability, "overall")}
+
+
总体适宜度:
+
${getSuitabilityText(data.overallSuitability, "overall")}
-
-
-
十次风速值:
-
+
+
+
十次风速值:
+
${joinWithComma(data.windSpeed, 0, BASE_WIND_COUNT)}
-
-
十次风向值:
-
+
+
十次风向值:
+
${joinWithComma(data.windDirection, 0, BASE_WIND_COUNT)}
@@ -194,16 +195,16 @@ const WeatherReport = (function () {
if (data.hasSpotCheckWindSpeed) {
html += `
-
-
-
抽测风速值:
-
+
+
+
抽测风速值:
+
${joinWithComma(data.windSpeed, BASE_WIND_COUNT, BASE_WIND_COUNT + SPOT_CHECK_COUNT)}
-
-
抽测风向值:
-
+
+
抽测风向值:
+
${joinWithComma(data.windDirection, BASE_WIND_COUNT, BASE_WIND_COUNT + SPOT_CHECK_COUNT)}
@@ -211,10 +212,6 @@ const WeatherReport = (function () {
}
html += `
-
-
是否有抽测风速:${data.hasSpotCheckWindSpeed ? "是" : "否"}
-
-