aqiUtil.go 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. package common
  2. import (
  3. "fmt"
  4. "math"
  5. "strconv"
  6. )
  7. //计算空气质量转换等级
  8. func CalculateAirQuality(airQuality string) string {
  9. d, err := strconv.ParseFloat(airQuality, 64)
  10. if err != nil {
  11. panic(err.Error())
  12. }
  13. val := "-"
  14. if d <= 50 {
  15. val = "优"
  16. } else if d > 50 && d <= 100 {
  17. val = "良"
  18. } else if d > 100 && d <= 150 {
  19. val = "轻度污染"
  20. } else if d > 150 && d <= 200 {
  21. val = "中度污染"
  22. } else if d > 200 && d < 300 {
  23. val = "重度污染"
  24. } else if d > 300 {
  25. val = "严重污染"
  26. }
  27. return val
  28. }
  29. // 计算aqi值对应的等级
  30. func getPollutionDegree(aqi float64) int {
  31. pollutionDegree := 1
  32. if aqi <= 50 {
  33. pollutionDegree = 1
  34. } else if aqi > 50 && aqi <= 100 {
  35. pollutionDegree = 2
  36. } else if aqi > 100 && aqi <= 150 {
  37. pollutionDegree = 3
  38. } else if aqi > 150 && aqi <= 200 {
  39. pollutionDegree = 4
  40. } else if aqi > 200 && aqi <= 300 {
  41. pollutionDegree = 5
  42. } else if aqi > 300 {
  43. pollutionDegree = 6
  44. }
  45. return pollutionDegree
  46. }
  47. // 计算aqi值对应的等级
  48. func getDegree(pollutionDegree int) string {
  49. if pollutionDegree == 1 {
  50. return "优"
  51. } else if pollutionDegree == 2 {
  52. return "良"
  53. } else if pollutionDegree == 3 {
  54. return "轻度污染"
  55. } else if pollutionDegree == 4 {
  56. return "中度污染"
  57. } else if pollutionDegree == 5 {
  58. return "重度污染"
  59. } else if pollutionDegree == 6 {
  60. return "严重污染"
  61. }
  62. return "数据错误"
  63. }
  64. /**
  65. * 计算每种污染物项目 P的空气质量分指数
  66. *
  67. * @param cp 污染物项目P的质量浓度
  68. * @param r 污染物项目P所在数组中的行号
  69. * @return
  70. */
  71. func countPerIaqi(cp float64, r int) float64 {
  72. bph := 0 // 与 cp相近的污染物浓度限值的高位值
  73. bpl := 0 // 与 cp相近的污染物浓度限值的低位值
  74. iaqih := 0 // 与 bph对应的空气质量分指数
  75. iaqil := 0 // 与 bpl对应的空气质量分指数
  76. iaqip := 0 // 当前污染物项目P的空气质量分指数
  77. // 空气质量分指数及对应的污染物项目浓度限值
  78. aqiArr := [][]int{{0, 50, 100, 150, 200, 300, 400, 500}, {0, 35, 75, 115, 150, 250, 350, 500},
  79. {0, 50, 150, 250, 350, 420, 500, 600}, {0, 2, 4, 14, 24, 36, 48, 60},
  80. {0, 40, 80, 180, 280, 565, 750, 940}, {0, 160, 200, 300, 400, 800, 1000, 1200},
  81. {0, 50, 150, 475, 800, 1600, 2100, 2620}, {0, 100, 160, 215, 265, 800}}
  82. min := aqiArr[r][0]
  83. index := len(aqiArr[r]) - 1
  84. max := aqiArr[r][index]
  85. if cp <= float64(min) || cp >= float64(max) {
  86. return 0
  87. } else {
  88. // 对每种污染物的bph、bpl、iaqih、iaqil进行赋值
  89. for i := 0; i < r+1; i++ {
  90. for j := 0; j < len(aqiArr[0]); j++ {
  91. if cp < float64(aqiArr[i][j]) {
  92. bph = aqiArr[i][j]
  93. bpl = aqiArr[i][j-1]
  94. iaqih = aqiArr[0][j]
  95. iaqil = aqiArr[0][j-1]
  96. break
  97. }
  98. }
  99. }
  100. // 计算污染物项目 P的空气质量分指数
  101. iaqip = (iaqih-iaqil)/(bph-bpl)*(int(cp)-bpl) + iaqil
  102. bg := math.Ceil(float64(iaqip))
  103. float, err := strconv.ParseFloat(fmt.Sprintf("%.4f", bg), 64)
  104. if err != nil {
  105. panic(err.Error())
  106. }
  107. return float
  108. }
  109. }
  110. /**
  111. * 特别注意此方法 不能在这里使用
  112. * 根据提供污染物的各项指标,对AQI进行计算
  113. *
  114. * @param pmtw PM2.5
  115. * @param pmte PM10
  116. * @param co 一氧化碳浓度
  117. * @param no2 二氧化氮浓度
  118. * @param o3 臭氧浓度
  119. * @param so2 二氧化硫浓度
  120. * @return
  121. */
  122. //func CountAqi(pmtw float64, pmte float64, co float64, no2 float64, o3 float64, so2 float64) *dao.AqiData {
  123. // var pmtwIaqi float64 = getPm25IAQI(pmtw)
  124. // var pmteIaqi float64 = getPm10IAQI(pmte)
  125. // var coIaqi float64 = getCoIAQI(co)
  126. // var no2Iaqi float64 = getNo2IAQI(no2)
  127. // var o3Iaqi float64 = getO3OneHourIAQI(o3)
  128. // var so2Iaqi float64 = getSo2IAQI(so2)
  129. // var aList []dao.AqiData
  130. // //// 初始化对象数组
  131. // if pmtwIaqi != 0 {
  132. // aList = append(aList, dao.AqiData{Name: "PM2.5", Aqi: pmtwIaqi})
  133. // }
  134. // if pmteIaqi != 0 {
  135. // aList = append(aList, dao.AqiData{Name: "PM10", Aqi: pmteIaqi})
  136. // }
  137. // if coIaqi != 0 {
  138. // aList = append(aList, dao.AqiData{Name: "CO", Aqi: coIaqi})
  139. // }
  140. // if no2Iaqi != 0 {
  141. // aList = append(aList, dao.AqiData{Name: "NO2", Aqi: no2Iaqi})
  142. // }
  143. // if o3Iaqi != 0 {
  144. // aList = append(aList, dao.AqiData{Name: "O3", Aqi: o3Iaqi})
  145. // }
  146. // if so2Iaqi != 0 {
  147. // aList = append(aList, dao.AqiData{Name: "SO2", Aqi: so2Iaqi})
  148. // }
  149. // sort.Slice(aList, func(i, j int) bool {
  150. // f := aList[i].Aqi - aList[j].Aqi
  151. // if f > 0 {
  152. // return true
  153. // }
  154. // return false
  155. // })
  156. // var aqi dao.AqiData
  157. // if len(aList) > 0 {
  158. // aqi = aList[len(aList)-1]
  159. // } else {
  160. // aqi = dao.AqiData{"PM10", 0.0}
  161. // }
  162. // return &aqi
  163. //}
  164. func getPm25IAQI(pmtw float64) float64 {
  165. if pmtw > 0 {
  166. return countPerIaqi(pmtw, 1)
  167. }
  168. return 0
  169. }
  170. func getPm10IAQI(pmte float64) float64 {
  171. if pmte > 0 {
  172. return countPerIaqi(pmte, 2)
  173. }
  174. return 0
  175. }
  176. func getCoIAQI(co float64) float64 {
  177. if co > 0 {
  178. return countPerIaqi(co, 3)
  179. }
  180. return 0
  181. }
  182. func getNo2IAQI(no2 float64) float64 {
  183. if no2 > 0 {
  184. return countPerIaqi(no2, 4)
  185. }
  186. return 0
  187. }
  188. func getO3OneHourIAQI(o3One float64) float64 {
  189. if o3One > 0 {
  190. return countPerIaqi(o3One, 5)
  191. }
  192. return 0
  193. }
  194. func getSo2IAQI(so2 float64) float64 {
  195. if so2 > 0 {
  196. return countPerIaqi(so2, 6)
  197. }
  198. return 0
  199. }
  200. /**
  201. * 计算风向角度,转换成中文方向
  202. *
  203. * @param windDirection
  204. * @return
  205. */
  206. func CalculateDirection(windDirection string) string {
  207. d, _ := strconv.ParseFloat(windDirection, 64)
  208. val := "-"
  209. if d > 337.5 || d < 22.5 {
  210. //Namezh: "北", Name: "N", Center: 0, DirectionA: 337.5, DirectionB: 22.5
  211. val = "北"
  212. } else if d > 22.5 && d < 67.5 {
  213. //Direction{Namezh: "东北", Name: "NE", Center: 45, DirectionA: 22.5, DirectionB: 67.5}
  214. val = "东北"
  215. } else if d > 67.5 && d < 112.5 {
  216. //Namezh:"东", Name:"E", Center:90, DirectionA:67.5, DirectionB:112.5
  217. val = "东"
  218. } else if d > 112.5 && d < 157.5 {
  219. //Namezh: "东南", Name: "SN", Center: 135, DirectionA: 112.5, DirectionB: 157.5
  220. val = "东南"
  221. } else if d > 157.5 && d < 202.5 {
  222. //Namezh: "南", Name: "S", Center: 180, DirectionA: 157.5, DirectionB: 202.5
  223. val = "南"
  224. } else if d > 202.5 && d < 247.5 {
  225. //Namezh: "西南", Name: "SW", Center: 225, DirectionA: 202.5, DirectionB: 247.5
  226. val = "西南"
  227. } else if d > 247.5 && d < 292.5 {
  228. //Namezh: "西", Name: "W", Center: 270, DirectionA: 247.5, DirectionB: 292.5
  229. val = "西"
  230. } else if d > 292.5 && d < 337.5 {
  231. //Namezh: "西北", Name: "NW", Center: 315, DirectionA: 292.5, DirectionB: 337.5
  232. val = "西北"
  233. }
  234. return val
  235. }
  236. /**
  237. * 计算风速等级
  238. *
  239. * @param speed
  240. * @return
  241. */
  242. func CalculateSpeed(speed string) string {
  243. //风力等级范围
  244. d, _ := strconv.ParseFloat(speed, 64)
  245. val := "-"
  246. if d >= 0.0 && d <= 0.2 {
  247. val = "无风"
  248. } else if d >= 0.3 && d <= 1.5 {
  249. val = "软风(一级)"
  250. } else if d >= 1.6 && d <= 3.3 {
  251. val = "轻风(二级)"
  252. } else if d >= 3.4 && d <= 5.4 {
  253. val = "微风(三级)"
  254. } else if d >= 5.5 && d <= 7.9 {
  255. val = "和风(四级)"
  256. } else if d >= 8.0 && d <= 10.7 {
  257. val = "清劲风(五级)"
  258. } else if d >= 10.8 && d <= 13.8 {
  259. val = "强风(六级)"
  260. } else if d >= 13.9 && d <= 17.1 {
  261. val = "疾风(七级)"
  262. } else if d >= 17.2 && d <= 20.7 {
  263. val = "大风(八级)"
  264. } else if d >= 20.8 && d <= 24.4 {
  265. val = "烈风(九级)"
  266. } else if d >= 24.5 && d <= 28.4 {
  267. val = "狂风(十级)"
  268. } else if d >= 28.5 && d <= 32.6 {
  269. val = "暴风(11级)"
  270. } else if d > 32.6 {
  271. val = "台风(12级)"
  272. }
  273. return val
  274. }