
1.2.6. Methane satellite observations completeness assessment for greenhouse gas monitoring#
Production date: 11-02-2026
Produced by: Davide Putero, Paolo Cristofanelli (CNR)
Note
Please note that this assessment also refers to the deprecated Level 2 XCH\(_4\) data products which won’t be extended after 2022.
🌍 Use case: Using satellite column-averaged XCH\(_4\) observations for investigating global and zonal methane growth rates#
❓ Quality assessment question#
Is the spatial coverage of XCH\(_4\) EMMA Level 2 merged dataset suitable to calculate the methane annual global and zonal growth rates?
Methane (CH\(_4\)) is the second most important anthropogenic greenhouse gas after carbon dioxide (CO\(_2\)), representing about 19% of the total radiative forcing by long-lived greenhouse gases [1]. Atmospheric CH\(_4\) also adversely affects human health as a precursor of tropospheric ozone [2]. Monitoring the long-term CH\(_4\) variability is therefore crucial for tracking the emission reductions [3]. Calculating growth rates is particularly important, as they provide a direct measure of how atmospheric CH\(_4\) responds to changing emissions and sinks, and help disentangle interannual variability from long-term trends ([4], [5], [6]).
In this assessment, atmospheric CH\(_4\) global and zonal growth rates are derived from the XCH\(_4\) merged Ensemble Median Algorithm (EMMA) Level 2 dataset (version 4.5), by adopting an approach similar to [4].
The EMMA Level 2 data product comprise individual soundings retrieved by algorithms that can change from grid box to grid box and from month to month. For more details see [7]. By analyzing an ensemble of different Level 2 datasets from various retrieval algorithms, the EMMA algorithm generates a dataset containing XCH\(_4\) from individual retrievals. In particular, for each month and 10°\(\times\)10° grid box, the algorithm with the grid box mean closest to the median is selected. The list of the considered retrieval algorithms is available from [7]. The various retrieval algorithms are optimized for different instruments (SCIAMACHY, GOSAT, GOSAT-2), which measure backscattered solar radiation in the near-infrared for O\(_2\) as well as the absorption bands of CO\(_2\) or CH\(_4\).
The code is included for transparency and learning purposes, giving users the chance to adapt it for their own analyses. Users should always refer to the official reports for scientific assessments related to atmospheric CH\(_4\) variability (e.g., [9], [10]).
📢 Quality assessment statements#
These are the key outcomes of this assessment
The dataset “Methane data from 2002 to present derived from satellite observations” (deprecated EMMA Level 2) can be used to evaluate XCH\(_4\) global and zonal growth rates.
For the high-latitude zonal bands ([70 °N-90 °N] and [90 °S-70 °S]), the few available data prevent a solid quantification of annual growth rates. In addition, for the latitude bands [70 °S-50 °S] and [50 °N-70 °N], the monthly growth rates before 2009 should be treated with extreme caution, as they are affected by non-uniform data coverage and high uncertainties in the data.
Before 2009, the global annual growth rates are characterised by higher standard deviations and thus must be considered with caution.
The different averaging methods do not particularly affect the growth rate distributions and growth rate anomalies, both globally and zonally.
As the EMMA Level 2 XCH\(_4\) data product will not be updated in the future, users can use the Level 3 XCH4_OBS4MIPS and MTCH4_OBS4MIPS data products to investigate global and zonal methane growth rates.
📋 Methodology#
In this notebook, we investigate whether the merged EMMA Level 2 product is suitable for calculating XCH\(_4\) growth rates, over 2003-2022. The input data are the XCH\(_4\) merged EMMA Level 2 files (version 4.5, see [7]). For the calculations, and following the approach presented in [4], the merged EMMA Level 2 data were first regridded onto a daily regular 2°\(\times\)2° grid, using spatially weighted mean. For the years 2003 and 2022, the annual growth rates were calculated over six-month periods (June–December and January–June, respectively), as the calculation method required rolling operations over a 12-month time window.
In this analysis, to estimate XCH\(_4\) global increases and zonal growth rates (in 20° latitude bands), we calculated the monthly growth rates as the centered rolling difference between the XCH\(_4\) value of month \(i\) and the XCH\(_4\) value of month \(i\)-12, following the approach presented in [11] and also further used in [6]. As done in [4], we also compare two different methods for calculating monthly averages, i.e.:
the “standard averaging”, defined as the area-weighted mean of all grid cells in the region of interest;
the “zonal-first averaging”, which is computed by first evaluating the \(m\) averages for all 2° latitude bands, and then averaging these \(m\) zonal averages. \(m\) can be equal to 90 for global data, or, e.g., 10 for a 20° zonal band.
The zonal-first average should ensure a consistent weighting of all the latitudes, regardless of their individual coverage ([4]).
For better investigating the differences between the hemispheres concerning growth rates, we also computed growth rate anomalies, defined as the difference between the zonal and the global growth rates.
The analysis and results are organized in the following steps, which are detailed in the sections below:
1. Choose the data to use and set-up the code
Import all the relevant packages.
Choose the temporal coverage for the analysis.
Cache needed functions.
2. Retrieve XCH_4 data (EMMA, Level 2)
In this section, we define the data request to CDS.
This section presents several results for the XCH\(_4\) growth rates, i.e.:
the calculation of global XCH\(_4\) increases
the calculation of the zonal XCH\(_4\) growth rates (into 20° latitude bands), to provide spatial information on the global CH\(_4\) increases
the computation of the zonal growth rate anomalies, defined as the differences between zonal and global growth rates, for the time periods 2003-2022 and 2018-2022
📈 Analysis and results#
1. Choose the data to use and set-up the code#
Import all relevant packages#
In this section, we import all the relevant packages needed for running the notebook and we define the style for plot appearance (“seaborn-v0_8-notebook”).
Choose the temporal coverage#
In this section, we define the temporal period of the analysis, that can be customized by the user. For this notebook, we selected the 2003-2022 period.
Cache needed functions#
In this section, we cached a list of functions used in the analyses.
The functions
spatial_weighted_meanandspatial_weighted_stdcompute the spatial XCH\(_4\) mean and standard deviation, respectively, over the selected domain. Through the function namedweight_dataset, they use spatial weighting to account for the latitudinal dependence of the grid size in the lon/lat grids. This is a common approach, e.g., in the treatment of reanalysis and forecast model data.The function
regridregrids the XCH\(_4\) Level 2 data onto a regular \(m \times n\) grid, where \(m\) and \(n\) can be customized by the user. It usesspatial_weighted_meanfor grouping data onto the regular grid.The function
daily_regriduses the aforementionedregridfunction for regridding the XCH\(_4\) data onto a regular \(m\)°\(\times\)\(n\)° grid, with a daily time resolution. Again, \(m\) and \(n\) can be customized by the user.The function
monthly_regrid_in_bandsresamples the input dataset into \(n\)° latitude bands, by using theregridfunction and a monthly time resolution. \(n\) is a parameter that can be specified by the user within the function. If the optionzonal_firstis selected, then the zonal-first averaging is calculated, following the methodology presented in [4] and described above.The function
compute_growth_ratecalculates the monthly resolved annual growth rates of XCH\(_4\), computed as the centered rolling difference of the XCH\(_4\) value of month \(i\) minus the XCH\(_4\) value of month \(i\)-12.The function
band_from_central_latitudeis used for explicitly specifying the latitude extremes rather than the central latitude for each band.
2. Retrieve XCH\(_4\) data (EMMA, Level 2)#
In this section, we define the data request to CDS (merged EMMA data product, Level 2, version 4.5, XCH\(_4\)) and download the dataset.
100%|██████████| 20/20 [00:19<00:00, 1.01it/s]
3. Data analysis#
Global annual XCH\(_4\) increases#
In this section, we present the global annual growth rates of XCH\(_4\), defined as the average of all monthly growth rates within each calendar year. Please note that the annual growth rate for 2022 is obtained by averaging the available monthly values for January to June, as the data for the first six months of 2023 are not available. For the calculation of growth rates, two different averaging methods were applied to the regridded (onto a daily regular 2°\(\times\)2° grid) Level 2 data, following the methodology presented in [4]. The “standard averaging” is defined as the spatially weighted average of all grid cells in a given region. This was compared to the so-called “zonal-first averaging”, which is computed as follows: (i) first, the 90 averages for all 2° latitude bands are computed; then (ii) the average of these 90 zonal averages is calculated, yielding each monthly value of the global time series. As shown in [4], the zonal-first averaging has the advantage of taking into account the inhomogeneous sampling at each latitude, which is influenced by both the distribution of land mass and the seasonal coverage of measurements.
In agreement with recent studies (e.g., [12]), the behavior of the global XCH\(_4\) growth rate has shown a near-zero growth until 2007, followed by a clear acceleration in subsequent years due to increased emissions from wetlands in the tropics and from anthropogenic sources at the mid-latitudes of the Northern Hemisphere ([1]), with maxima observed in the last three years of the time series. The highest global annual XCH\(_4\) increases were recorded in 2021, followed by 2022 and 2020. According to [12], most of the observed increase in atmospheric XCH\(_4\) during 2020 and 2021 was due to increased emissions, with a significant contribution from reduced levels of OH. A recent study ([13]) suggests a prominent role of biogenic emissions in Asian regions for the persistent high growth rate observed during 2020–2022. The results obtained using the two different averaging methods are comparable for all years, indicating that the choice of the averaging method does not significantly affect the estimated growth rates.
The global growth rates obtained by the EMMA data product are in very good agreement with those provided by the global network of in-situ observations coordinated by the Global Atmosphere Watch (GAW) programme by the World Meteorological Organization (WMO)[1]. Here, for comparison, we provided a plot of the WMO/GAW global growth rates as obtained by averaging the monthly values provided by the World Data Center for Greenhouse Gases (WDCGG)[14]. The general variability of the annual CH\(_4\) growth rates is generally consistent between the two datasets. The mean differences are 0.20 ppb/yr and 0.23 ppb/yr for the “standard” and “zonal-first” averaging methods, respectively. For the “standard averaging” method, only four years and for the “zonal-first averaging” method, only five years, reported differences exceeding ±2 ppb/yr. We should keep in mind that perfect agreement is not to be expected, as the EMMA product is column-averaged CH\(_4\), whereas WMO/GAW used near-surface data.
In the XCH\(_4\) plot, also uncertainties are reported, and these are computed as the annual standard deviation of all monthly growth rates within each calendar year. The most evident feature is the overall decrease in the uncertainties after 2009, likely due to the introduction of algorithms based on GOSAT observations used to calculate the median XCH\(_4\) data [8].
Global annual XCH\(_4\) increases over 2003-2022. The colors differentiate between the standard averaging (orange) and the zonal-first averaging (blue) methods. Bars indicate the uncertainties in the annual increases, computed as \(\pm\)1 standard deviation. Please note that the annual growth rates in 2003 and 2022 were obtained by averaging only six monthly values (June-December and January-June, respectively).

Global annual CH\(_4\) increases over 2003-2022 as obtained by the global in-situ dataset provided by the World Data Center for Greenhouse Gases [13]. Please note that the annual growth rates in 2003 and 2022 were obtained by averaging only six monthly values (June-December and January-June, respectively). The error bars show the standard deviation of the monthly growth rate values.
Zonal growth rates of XCH\(_4\) (2003-2022)#
In this section, we calculate and report the monthly growth rates of XCH\(_4\), divided into 20° latitude bands, to provide spatial context for the global growth rates presented above.
The figure shows the zonal growth rates for the nine 20° latitude bands, using the two different averaging methods described previously. Please note that the limits on the y-axis can be customized by the user.
For most latitude bands, the behavior is similar to that observed for the global growth rates. The [70 °N-90 °N] band, however, is characterized by almost no clear tendency throughout the years, and this is because the high-latitude regions are characterized by sparse sampling and higher uncertainties in the data. Data below 60 °S are only available until 2005, and this is the cause for almost completely missing data in the [70 °S-90 °S] latitude band ([7]). For the latitude bands [70 °S-50 °S] and [50 °N-70 °N], the monthly growth rates are characterised by a higher temporal variability before March 2009, as data over land is only available from the SCIAMACHY WFMD product in this period ([7]).
The two different averaging methods show better agreement after 2009, with nearly identical results across all zonal bands. Before 2009, the growth rates exhibit higher variability, with larger differences between standard and zonal-first averaging. The improvement of the agreement between the two calculation methods, likely reflects the introduction, after 2009, of algorithms incorporating GOSAT observations to calculate median XCH\(_4\) values [8]. This highlights that caution should be exercised when using the EMMA data product to derive zonal growth rates prior to 2009 and that results are sensitive to the calculation method adopted.
Zonal growth rates of XCH\(_4\), over 2003-2022. The panels indicate the 20° latitude bands selected for the analysis. The colors differentiate between the standard averaging (orange) and the zonal-first averaging (blue) methods.
Zonal growth rates of XCH\(_4\) (2018-2022)#
To better focus on the more recent years, characterised by the highest CH\(_4\) growth rates, in the following we provide a zoom on the monthly growth rates of XCH\(_4\) from 2018 to 2022. Interestingly, as also reported in [4], the reduction in global XCH\(_4\) growth in 2022 with respect to 2021 can be attributed to decreased growth rates in the Northern Hemisphere (particularly evident in the [10 °N-30 °N] and [30 °N-50 °N] latitude bands), while growth rates in the Southern Hemisphere remain high.
Zonal growth rates of XCH\(_4\), over 2018-2022. The panels indicate the 20° latitude bands selected for the analysis. The colors differentiate between the standard averaging (orange) and the zonal-first averaging (blue) methods.
Zonal growth rate anomalies of XCH\(_4\)#
In this section, we calculate and report the zonal growth rate anomalies, defined as the difference between the zonal and global growth rates for each of the 20° latitude bands presented above. As also indicated in [4], the zonal growth rate anomalies can help in better visualizing differences between the hemispheres. Moreover, the anomalies, together with the zonal growth rates, are important for better interpreting the changes in the global methane increases.
As already observed for the zonal growth rates presented above, the choice of the averaging method does not significantly affect the calculated anomalies.
From the heatmaps of the anomalies, several features are consistent with previous studies (e.g., [4]), indicating that the EMMA Level 2 dataset can be used to evaluate the time evolution of CH\(_4\) zonal growth rates. In 2019, a slowdown in growth rates was observed in the Southern Hemisphere, while growth rates in the Northern Hemisphere remained positive. This was followed by predominantly positive anomalies until 2022. In that year, as already noted for the zonal growth rates, the Northern Hemisphere showed a marked slowdown in XCH\(_4\) increases, as reflected by the negative anomalies.
Zonal growth rate anomalies of XCH\(_4\), for the 20° latitude bands presented above, over 2003-2022. The anomalies are defined as the differences between zonal and global growth rates. The top panel is for the standard averaging, while the bottom panel is for the zonal-first averaging.
ℹ️ If you want to know more#
Key resources#
The CDS catalogue entries for the data used were:
Methane data from 2002 to present derived from satellite observations: https://cds.climate.copernicus.eu/datasets/satellite-methane?tab=overview
Users interested in near-real time detection of hot-spot locations for methane emissions can consider to use the CAMS Methane Hotspot Explorer: https://atmosphere.copernicus.eu/ghg-services/cams-methane-hotspot-explorer?utm_source=press&utm_medium=referral&utm_campaign=CH4-app-2025
Code libraries used:
C3S EQC custom functions,
c3s_eqc_automatic_quality_control, prepared by B-Open
References#
[1] World Meteorological Organization (2023). WMO Greenhouse Gas Bulletin, No. 19, ISSN 2078-0796.
[2] West, J. J., Fiore, A. M., Horowitz, L. W., and Mauzerall, D. L. (2006). Global health benefits of mitigating ozone pollution with methane emission controls, Proceedings of the National Academy of Sciences USA, 103, 3988–3993.
[3] Saunois, M., Martinez, A., Poulter, B., Zhang, Z., Raymond, P. A., Regnier, P., Canadell, J. G., Jackson, R. B., Patra, P. K., Bousquet, P., Ciais, P., Dlugokencky, E. J., Lan, X., Allen, G. H., Bastviken, D., Beerling, D. J., Belikov, D. A., Blake, D. R., Castaldi, S., Crippa, M., Deemer, B. R., Dennison, F., Etiope, G., Gedney, N., Höglund-Isaksson, L., Holgerson, M. A., Hopcroft, P. O., Hugelius, G., Ito, A., Jain, A. K., Janardanan, R., Johnson, M. S., Kleinen, T., Krummel, P. B., Lauerwald, R., Li, T., Liu, X., McDonald, K. C., Melton, J. R., Mühle, J., Müller, J., Murguia-Flores, F., Niwa, Y., Noce, S., Pan, S., Parker, R. J., Peng, C., Ramonet, M., Riley, W. J., Rocher-Ros, G., Rosentreter, J. A., Sasakawa, M., Segers, A., Smith, S. J., Stanley, E. H., Thanwerdas, J., Tian, H., Tsuruta, A., Tubiello, F. N., Weber, T. S., van der Werf, G. R., Worthy, D. E. J., Xi, Y., Yoshida, Y., Zhang, W., Zheng, B., Zhu, Q., Zhu, Q., and Zhuang, Q. (2025). Global Methane Budget 2000–2020, Earth System Science Data, 17, 1873-1958.
[4] Hachmeister, J., Schneising, O., Buchwitz, M., Burrows, J. P., Notholt, J., and Buschmann, M. (2024). Zonal variability of methane trends derived from satellite data, Atmospheric Chemistry and Physics, 24, 577–595.
[5] Zhang, Z., Poulter, B., Feldman, A.F., Ying, Q., Ciais, P., Peng, S., and Li, X. (2023). Recent intensification of wetland methane feedback, Nature Climate Change, 13, 430–433.
[6] Reuter, M., Buchwitz, M., Schneising, O., Noël, S., Bovensmann, H., Burrows, J. P., Boesch, H., Di Noia, A., Anand, J., Parker, R. J., Somkuti, P., Wu, L., Hasekamp, O. P., Aben, I., Kuze, A., Suto, H., Shiomi, K., Yoshida, Y., Morino, I., Crisp, D., O’Dell, C. W., Notholt, J., Petri, C., Warneke, T., Velazco, V. A., Deutscher, N. M., Griffith, D. W. T., Kivi, R., Pollard, D. F., Hase, F., Sussmann, R., Te, Y. V., Strong, K., Roche, S., Sha, M. K., De Maziere, M., Feist, D. G., Iraci, L. T., Roehl, C. M., Retscher, C., and Schepers, D. (2020). Ensemble-based satellite-derived carbon dioxide and methane column-averaged dry-air mole fraction data sets (2003-2018) for carbon and climate applications, Atmospheric Measurement Techniques, 13, 789-819.
[7] Buchwitz, M. (2024). Product User Guide and Specification (PUGS) – Main document for Greenhouse Gas (GHG: CO\(_2\) & CH\(_4\)) data set CDR7 (01.2003-12.2022), C3S project 2021/C3S2_312a_Lot2_DLR/SC1, v7.3.
[8] Reuter, M., and Buchwitz, M. (2024). Algorithm Theoretical Basis Document (ATBD) – ANNEX D for products XCO2_EMMA, XCH4_EMMA, XCO2_OBS4MIPS, XCH4_OBS4MIPS (v4.5, CDR7, 2003-2022), C3S project 2021/C3S2_312a_Lot2_DLR/SC1, v7.1b.
[9] Copernicus Climate Change Service (C3S) and World Meteorological Organization (WMO). (2025). European State of the Climate 2024.
[10] Copernicus Climate Change Service (C3S). (2025). Global Climate Highlights 2024.
[11] Buchwitz, M., Reuter, M., Schneising, O., Noël, S., Gier, B., Bovensmann, H., Burrows, J. P., Boesch, H., Anand, J., Parker, R. J., Somkuti, P., Detmers, R. G., Hasekamp, O. P., Aben, I., Butz, A., Kuze, A., Suto, H., Yoshida, Y., Crisp, D., and O’Dell, C. (2018). Computation and analysis of atmospheric carbon dioxide annual mean growth rates from satellite observations during 2003-2016, Atmospheric Chemistry and Physics, 18, 17355-17370.
[12] Feng, L., Palmer, P. I., Parker, R. J., Lunt, M. F., and Bösch, H. (2023). Methane emissions are predominantly responsible for record-breaking atmospheric methane growth rates in 2020 and 2021, Atmospheric Chemistry and Physics, 23, 4863-4880.
[13] Niwa, Y., Tohjima, Y., Terao, Y., Saeki, T., Ito, A., Umezawa, T., Yamada, K., Sasakawa, M., Machida, T., Nakaoka, S.-I., Nara, H., Tanimoto, H., Mukai, H., Yoshida, Y., Morimoto, S., Takatsuji, S., Tsuboi, K., Sawa, Y., Matsueda, H., Ishijima, K., Fujita, R., Goto, D., Lan, X., Schuldt, K., Heliasz, M., Biermann, T., Chmura, L., Necki, J., Xueref-Remy, I., and Sferlazzo, D. (2025). Multi-observational estimation of regional and sectoral emission contributions to the persistent high growth rate of atmospheric CH\(_4\) for 2020–2022, Atmospheric Chemistry and Physics, 25, 6757–6785.
[14] World Meteorological Organization (2025). WMO Greenhouse Gas Bulletin, No. 21, 2025 (web site, last access: 16 January 2026).