Skip to content

Commit

Permalink
china formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vmcnally committed Aug 20, 2024
1 parent a047bee commit 1ee3590
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions docs/indices/china.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The China Air Quality Index consists of six categories:
colorScale(colorScaleReshape(data))
```

_Note_: Adapted from “What is the Air Quality Health Index?” (n.d.), [https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf) [^1]. Accessed 8 Aug. 2024.
_Note_: Adapted from “环境空气质量指数(AQI)技术规定(试行). Technical Regulation on Ambient Air Quality Index (on trial)” (1 Jan. 2016), [https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf) [^1]. Accessed 8 Aug. 2024.

## Methods

Expand All @@ -42,15 +42,18 @@ The pollutant breakpoint concentrations for the AQI are as follows:
breakpointsTable(data)
```

_Note_: Adapted from “What is the Air Quality Health Index?” (n.d.), [https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf) [^1]. Accessed 8 Aug. 2024.
_Note_: Adapted from “环境空气质量指数(AQI)技术规定(试行). Technical Regulation on Ambient Air Quality Index (on trial)” (1 Jan. 2016), [https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/W020120410332725219541.pdf) [^1]. Accessed 8 Aug. 2024.

<div class = 'note'>
No rounding or truncation conventions are stated for individual pollutant breakpoint concentrations and sub-index calculations. We have assumed that all pollutant values are rounded to the nearest integer except CO, which is rounded to one decimal place. This is assumed as numerous reported pollutant concentrations [^3] seem to follow this convention. Lower breakpoint limits were also assumed according to this rounding convention to avoid overlapping limit values.
No rounding or truncation conventions are stated for individual pollutant breakpoint concentrations and sub-index calculations. We have assumed that all pollutant values are rounded to the nearest integer except CO, which is rounded to one decimal place. This is assumed as numerous reported pollutant concentrations seem to follow this convention. Lower breakpoint limits were also assumed according to this rounding convention to avoid overlapping limit values.
</div>

If the 1 hour average concentration value for SO2 is greater than 800 μm/m3, the sub-index calculation is not performed. The sub-index for SO2 for the 24-hour average concentration is used instead [^1].
```tex
% above referenced source [^3] after "numerous reported pollutant concentrations
```
If the 1 hour average concentration value for SO<sub>2</sub> is greater than 800 μm/m<sup>3</sup>, the sub-index calculation is not performed. The sub-index for SO<sub>2</sub> for the 24-hour average concentration is used instead [^1].

If the 8-hour average concentration of O3 is greater than 800 μm/m3, the sub-index calculation is not performed. The sub-index for O3 for the 24-hour average concentration is used instead [^1].
If the 8-hour average concentration of O<sub>3</sub> is greater than 800 μm/m<sup>3</sup>, the sub-index calculation is not performed. The sub-index for O<sub>3</sub> for the 24-hour average concentration is used instead [^1].

The sub-index for individual pollutants is calculated using the following piecewise linear function:

Expand Down Expand Up @@ -79,7 +82,7 @@ There are different averaging periods for daily and real-time AQIs [^1]:
| Daily | 24 hr. | 24 hr. | 24 hr. | Max. 1hr. & rolling 8 hr. | 24 hr. | 24 hr. |
| Real-time | 1 hr. & rolling 24 hr. | 1 hr. & 24 hr. rolling | 1 hr. | 1 hr. | 1 hr. | 1 hr. |

The forecasting AQI evaluates PM2.5, PM10, CO, O3, NO2, and SO2 concentrations, AQI and levels, and primary pollutant [^4]. The forecast models 24 hours, 48 hours, and 72 hours in advance. There are three evaluation categories: single pollutant concentration forecast evaluation, air quality index forecast evaluation, and heavy pollution day forecast evaluation [^4].
The forecasting AQI evaluates PM<sub>2.5</sub>, PM<sub>10</sub>, CO, O<sub>3</sub>, NO<sub>2</sub> and SO<sub>2</sub> concentrations, AQI and levels, and primary pollutant [^4]. The forecast models 24 hours, 48 hours, and 72 hours in advance. There are three evaluation categories: single pollutant concentration forecast evaluation, air quality index forecast evaluation, and heavy pollution day forecast evaluation [^4].

The statistical evaluation of a single pollutant concentration forecast mainly includes the standardized mean deviation, root mean square error and correlation coefficient.

Expand Down Expand Up @@ -114,9 +117,9 @@ where
* ${tex`r`} - Correlation coefficient
* ${tex`N`} - Number of sample pairs involved in the calculation (a sample pair consists of a forecasted and predicted sample)
* ${tex`F_i`} - Numerical prediction concentration value of the pollutant in the i-th sample pair
* ${tex`bar{F}`} - Average value of the numerical forecast concentration of pollutants involved in the calculation
* ${tex`\bar{F}`} - Average value of the numerical forecast concentration of pollutants involved in the calculation
* ${tex`O_i`} - Actual concentration value of the pollutants in the i-th sample pair
* ${tex`bar{O}`} - Average actual concentration value of pollutants involved in the calculation
* ${tex`\bar{O}`} - Average actual concentration value of pollutants involved in the calculation

Forecasted AQI values undergo an evaluation process to ensure that it is accurate. Based on the AQI forecast value of the numerical model, the AQI forecast range is set to be plus of minus 25% [^4]. The true AQI value is within the forecast level, it is considered accurate. The percentage of the number of days with accurate AQI level forecasts annually should not be less than 60%, including both the accuracy of the sub-index and AQI values.

Expand All @@ -130,16 +133,16 @@ The evaluation of the accuracy for forecasts for primary pollutants depends on t
[^4]: [https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/202005/W020200518771113314010.pdf](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/202005/W020200518771113314010.pdf)
[^5]: [https://datadrivenlab.org/air-quality-2/chinas-new-air-quality-index-how-does-it-measure-up/](https://datadrivenlab.org/air-quality-2/chinas-new-air-quality-index-how-does-it-measure-up/)

“环境空气质量指数(AQI)技术规定(试行). Technical Regulation on Ambient Air Quality Index (on trial).” 中华人民共和国国家环境保护标准, HJ 633-2012, 1 Jan. 2016, [[www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/t20120302_224166.shtml](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/t20120302_224166.shtml)]([https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/t20120302_224166.shtml](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/t20120302_224166.shtml)).
“环境空气质量指数(AQI)技术规定(试行). Technical Regulation on Ambient Air Quality Index (on trial).” 中华人民共和国国家环境保护标准, HJ 633-2012, 1 Jan. 2016, [www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/t20120302_224166.shtml](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/201203/t20120302_224166.shtml).

“重点城市空气质量日报.” 国家环境保护总局 State Environmental Protection Administration of China, 25 Oct. 2004, [[web.archive.org/web/20041025222827/http://www.sepa.gov.cn/quality/air.php3?offset=60](https://web.archive.org/web/20041025222827/http://www.sepa.gov.cn/quality/air.php3?offset=60)]([https://web.archive.org/web/20041025222827/http://www.sepa.gov.cn/quality/air.php3?offset=60](https://web.archive.org/web/20041025222827/http://www.sepa.gov.cn/quality/air.php3?offset=60)).
“重点城市空气质量日报.” 国家环境保护总局 State Environmental Protection Administration of China, 25 Oct. 2004, [web.archive.org/web/20041025222827/http://www.sepa.gov.cn/quality/air.php3?offset=60](https://web.archive.org/web/20041025222827/http://www.sepa.gov.cn/quality/air.php3?offset=60).

“城市空气质量.” 全国城市空气质量实时发布平台, [[air.cnemc.cn:18007/](https://air.cnemc.cn:18007/)]([https://air.cnemc.cn:18007](https://air.cnemc.cn:18007/)).
“城市空气质量.” 全国城市空气质量实时发布平台, [air.cnemc.cn:18007/](https://air.cnemc.cn:18007/).

“环境空气质量数值预报技术规范 Technical guideline for numerical forecasting of ambient air quality(发布稿).” 中华人民共和国国家环境保护标准, HJ 1130-2020, 15 Aug. 2020, [[www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/202005/W020200518771113314010.pdf](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/202005/W020200518771113314010.pdf)](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/202005/W020200518771113314010.pdf).
“环境空气质量数值预报技术规范 Technical guideline for numerical forecasting of ambient air quality(发布稿).” 中华人民共和国国家环境保护标准, HJ 1130-2020, 15 Aug. 2020, [www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/202005/W020200518771113314010.pdf](https://www.mee.gov.cn/ywgz/fgbz/bz/bzwb/jcffbz/202005/W020200518771113314010.pdf).

Qinghua Sun, Huanhuan Zhu, Wanying Shi, Yu Zhong, Yingjian Zhang; Tiantian Li. “Preplanned Studies: Development of the National Air Quality Health Index — China, 2013−2018.” CCDC weekly, 22 Jan. 2021, [[weekly.chinacdc.cn/en/article/doi/10.46234/ccdcw2021.011](https://weekly.chinacdc.cn/en/article/doi/10.46234/ccdcw2021.011)](https://weekly.chinacdc.cn/en/article/doi/10.46234/ccdcw2021.011).
Qinghua Sun, Huanhuan Zhu, Wanying Shi, Yu Zhong, Yingjian Zhang; Tiantian Li. “Preplanned Studies: Development of the National Air Quality Health Index — China, 2013−2018.” CCDC weekly, 22 Jan. 2021, [weekly.chinacdc.cn/en/article/doi/10.46234/ccdcw2021.011](https://weekly.chinacdc.cn/en/article/doi/10.46234/ccdcw2021.011).

Hsu, Angel. “China's new Air Quality Index: How does it measure up?” Data Driven Envirolab, 28 Mar. 2012, [datadrivenlab.org/air-quality/chinas-new-air-quality-index-how-does-it-measure-up/](https://datadrivenlab.org/air-quality/chinas-new-air-quality-index-how-does-it-measure-up/)
Hsu, Angel. “China's new Air Quality Index: How does it measure up?” Data Driven Envirolab, 28 Mar. 2012, [datadrivenlab.org/air-quality/chinas-new-air-quality-index-how-does-it-measure-up/](https://datadrivenlab.org/air-quality/chinas-new-air-quality-index-how-does-it-measure-up/).

“城市空气质量形势.” 全国空气质量预报信息发布系统, [[air.cnemc.cn:18014/](https://air.cnemc.cn:18014/)](https://air.cnemc.cn:18014/](https://air.cnemc.cn:18014/)).
“城市空气质量形势.” 全国空气质量预报信息发布系统, [air.cnemc.cn:18014/](https://air.cnemc.cn:18014/).

0 comments on commit 1ee3590

Please sign in to comment.