Hernán Querbes
In this work, I will study the frequency and severity of meteorological and wind droughts, as well as extreme temperature episodes, over Uruguay for two future periods: Future 1 (2030s), covering 2025 to 2044, and Future 2 (2050s), covering 2045 to 2064. For this, I will use NASA’s NEX-GDDP-CMIP6 dataset and the SSP1-2.6 and SSP3-7.0 scenarios for future projections.
Between October 2020 and May 2023, Uruguay experienced one of its most severe meteorological droughts, leading to significant consequences, including a decline in drinking water quality due to low reserves in the Santa Lucía River, which supplies over half of the country’s population (1).
The Uruguayan Institute of Meteorology (INUMET) uses seven categories to monitor monthly rainfall. These categories are determined as follows:
- First, the monthly accumulated precipitation for the reference period (1985–2014) is divided into quintiles: much higher than normal (Category 5, 5th quintile), higher than normal (Category 4, 4th quintile), normal (Category 3, 3rd quintile), less than normal (Category 2, 2nd quintile), and much lower than normal (Category 1, 1st quintile).
- Then, Category 0 accounts for monthly accumulated precipitation lower than Category 1, while Category 6 accounts for monthly accumulated precipitation higher than Category 5 (2).
This is summarized in thee next Table:
Precip. Category | Name | Range values |
---|---|---|
0 | Extremely lower than normal | Lower than Quintile 1 |
1 | Much lower than normal | Quintile 1 |
2 | Less than normal | Quintile 2 |
3 | Normal | Quintile 3 |
4 | Higher than normal | Quintile 4 |
5 | Much higher than normal | Quintile 5 |
6 | Extremely higher than normal | Bigger than Quintile 5 |
INUMET defines a meteorological drought as three or more consecutive months with a precipitation category equal to or less than 2 (3). I will adopt an analogous definition for wind droughts and extreme temperature events. However, in the case of extreme temperature events, I will identify sequences of months with a category equal to or greater than 4, as I want to look for high temperature episodes.
For this project I chose EC-EARTH3 and TaiESM1-0 models, since previous studies concluded that they exhibit superior performance in Southeastern South America (4). Also, I selected two scenarios for future projections:
- SSP1–2.6: 1.8 °C predicts an estimated warming by the end of the century
- SSP3–7.0: 3.8 °C predicts an estimated warming by the end of the century
My current research focuses on assessing the impact of climate change on hydroelectric production in Uruguay, specifically how meteorological and wind droughts affect it. For this reason, the questions I plan to answer in this project are:
1- Will meteorological/wind droughts change in frequency and severity in the future?
2- How will the frequency and severity of extreme temperature events change in the future?
NASA’s NEX-GDDP-CMIP6 dataset: https://www.nccs.nasa.gov/services/data-collections/land-based-products/nex-gddp-cmip6
- Data Resolution:
- Latitude and Longitude resolution: 0.25 degrees (25 km)
- Temporal Resolution: daily
- Variables used:
- Precipitation (pr)
- Wind speed (sfcWind)
- Temperature (tas)
Matplotlib https://matplotlib.org/stable/
Numpy https://numpy.org/doc/stable/index.html
Xarray https://docs.xarray.dev/en/stable/
Rioxarray https://corteva.github.io/rioxarray/html/rioxarray.html
Geopandas https://geopandas.org/en/stable/index.html#
Seaborn https://seaborn.pydata.org/
- Filtered_data: Folder where the downloaded data is stored.
- Data: Notebook used to download data.
- Functions: Notebook used to perform the analysis.
- gddp-cmip6-thredds-fileserver: CSV file containing URLs for accessing the climate data (used by the Data notebook).
- ury_adm_2020_shp: File containing Uruguay's shape geometry.
- Clip Uruguay geometry to the dataset.
- Aggregate daily data into monthly data using:
- Precipitation: sum.
- Wind speed and temperature: mean.
- Divide data into three periods: historical, Future 1, and Future 2.
- Categorize each monthly value for the three variables and three periods using the INUMET method.
- Measure the duration of drought episodes (in months).
This last analysis was done in the next way:
-
A square array was created, with its sides equal to the total number of months in the dataset. This array was initialized with zeros
- Rows are the starting month of the consecutive count.
- Columns are the subsequent months.
-
For each starting month, meaning: (i,i) entries:
- Precipitation and Wind Speed:
- Each entry corresponding to a month that meets the condition (category ≤ 2) was replaced with a 1.
- Temperature:
- Each entry corresponding to a month that meets the condition (category ≥ 4) was replaced with a 1.
- Precipitation and Wind Speed:
-
Starting from each month, the code iterates through subsequent months:
- If the condition is still met, the corresponding entry remains 1.
- If the condition is not met, the counting stops for that starting month, and the loop moves to the next month.
-
Finally, we obtain the number of consecutive months with extreme values, summing the entries of each row.
-
Outputs:
- Episodes vector: tracks the index of the starting month.
- Severity vector: tracks the total number of consecutive months starting from each month.
The methodology is synthetized in the next figure:

Figure 1: Methodology Illustration: First, the gridded data is converted into a monthly dataset with its corresponding classification. Then, the severity analysis is performed. The matrix shown is a mock example of the severity analysis.
- Construct Kernel density plots and returning period plots for the three variables.
There are two expected outcomes:
1- Kernel density plots for the three time periods.
2- Returning period plots for the three time periods.
The dataset consisted of daily values for precipitation, wind speed, and temperature. These variables were aggregated as follows:
- Precipitation: Aggregated by monthly sum.
- Wind speed and temperature: Aggregated by monthly mean.
This was done for all three variables across three time periods.
Then the analysis was performed, resulting in the next plots:
Analyzing Figure 2, we can see that the range of consecutive drought months during the historical period is larger than in both future periods, which have fairly similar kernel density plots. For lower values of consecutive months, Figure 3 shows comparable return periods across the three periods. However, in the historical period, we observe lower return period values for four consecutive months, along with episodes of five or more consecutive months, which are absent in the future periods. This indicates a future with fewer prolonged low-precipitation episodes compared to the historical period.
The kernel density plots for this model show similar distributions for the historical and future 1 periods, compared to future 2, which appears more dispersed in terms of the number of consecutive months. The return periods are similar up to four consecutive months, after which the differences become more pronounced. Future 2 exhibits the highest number of consecutive months, followed by the historical period and then future 1, suggesting that in the far future, extreme events may last longer than those observed during the historical period.
The kernel density distribution for the historical and Future 1 periods appears almost identical, while the Future 2 kernel plot shows a broader range of consecutive months. Regarding the return periods, the historical period seems to fall between Future 1 and Future 2. In Future 1, wind speed extremes occur for fewer consecutive months at higher return periods, and this pattern worsens in Future 2, with longer drought periods observed at lower return periods.
For the TaiESM1 model, we notice a reduction in the range of consecutive months over time (Historical > Future 1 > Future 2). Despite this, we observe similar return periods up to four consecutive months. Beyond that, Future 2 shows longer return periods than Future 1, and Future 1 shows longer return periods than the historical period.
For the EC-Earth3 model, the kernel density plots show very similar shapes. This similarity is also reflected in the return period plot, with a substantial difference only in the return period for six consecutive months. While the historical period shows a 15-year return period, the future periods show values of 3 and 5 years, indicating a higher frequency of extreme temperature events.
In contrast to the previous model, this one shows a similar density distribution for the historical period, but the future periods differ, being more concentrated at lower consecutive month values. However, we observe higher return periods for up to three consecutive months compared to the historical period, indicating fewer episodes and less severe extreme temperature events the opposite conclusion of the previous model.
Here, we observe a temporal trend where the historical period shows higher consecutive month values compared to Future 1, followed by Future 2, with values becoming more concentrated at lower levels over time. In the return period plot, we observe a similar pattern to the SSP126 scenario, where the future periods have longer return periods for the same number of consecutive months compared to the historical period.
In contrast, the TaiESM1 model provides conclusions similar to those for the SSP126 scenario, where the historical period shows fewer consecutive months and longer return periods, presenting conclusions that are almost the opposite of those from the EC-Earth3 model.
Here, we see that the historical and Future 1 periods have similar kernel density plots, while Future 2 concentrates on lower values of consecutive months. Despite this, Future 2 has the longest return periods, followed by Future 1 and then the historical period. This leads us to the conclusion that, in the future, we will experience less severe and less frequent wind drought events.
In the kernel density plots, we see how Future 2 appears to be midway between the historical period and Future 1, with Future 1 being more concentrated on lower consecutive month values. Despite this, as with the previous model, the historical period shows smaller return period values compared to the future scenarios.
Here, we see identical future distributions that are more dispersed in consecutive month values than the historical period, which is slightly more concentrated on lower values. However, the return period plots are almost identical up to five consecutive months, after which the historical period shows the highest return period values, indicating a future with more extreme temperature events.
We see Future 2 as being midway between Future 1 and the historical period, with the latter being more dispersed at higher values of consecutive months. This behavior is also reflected in the return period plots, where Future 1 shows the smallest consecutive month values and the highest return periods, while the historical period shows the largest consecutive month values and the lowest return periods. This indicates a future where, initially, such episodes will become less common and severe, but later, they will increase in both frequency and severity.
For each model, we observe similar density distributions and return period values across the different future scenarios. While the EC-Earth3 model suggests a future with less severe and less frequent drought episodes, the TaiESM1 model predicts slightly more frequent episodes in the future. No clear conclusion can be drawn from the comparison of these two models.
For the EC-Earth3 model, we observe that the behavior of Future 2 is more dependent on the scenario. In an optimistic future (SSP126), it exhibits fewer wind drought episodes than in the past, while in a less optimistic future (SSP370), it shows more frequent extreme events. On the other hand, the TaiESM1 model predicts a future with fewer episodes under both scenarios, suggesting a general trend toward fewer wind drought episodes in the future.
The plots appear similar for both future scenarios. The most noticeable differences are between the models. While the EC-Earth3 model exhibits very similar behavior across the three periods (except for the six consecutive months episode, which shows considerable differences in the return period), the TaiESM1 model predicts similar futures for the SSP126 scenario, where events are less frequent than in the past. A similar pattern occurs in the SSP370 scenario, although here the short-term future appears worse than the long-term future. No clear conclusion can be drawn from the comparison of these two models.
Conclusions are highly dependent on the models used:
- Drought Events:
- EC-Earth3: Predicts fewer drought episodes related to precipitation, indicating a wetter future. Wind droughts are projected to become more frequent under optimistic conditions (SSP126) but less frequent and severe under pessimistic conditions (SSP370).
- TaiESM1: Consistently predicts fewer and less severe drought episodes across both scenarios for both variables.
- Extreme Temperature Events:
- EC-Earth3: Projects an increase in both the frequency and severity of extreme temperature events.
- TaiESM1: Initially shows fewer extreme temperature episodes, but conditions are expected to worsen over time.
- Apply this analysis to other models also recommended by Bazzanella et al. (4).
- Look for spatial trends, specifically in the watershed where the hydroelectric dams in Uruguay are located.
(1) Andreoni, M. (2023, August 10). Uruguay wasn’t supposed to run out of water. The New York Times. https://www.nytimes.com/2023/08/10/climate/uruguay-wasnt-supposed-to-run-out-of-water.html
(2) INUMET. (n.d.). Quintiles de precipitación. https://www.inumet.gub.uy/clima/recursos-hidricos/quintiles-de-precipitacion
(3) Inumet (2024, January 17). Finalizó la sequía meteorológica 2020-2023 en todo el Uruguay. https://www.inumet.gub.uy/sala-de-prensa/noticias/finalizo-la-sequia-meteorologica-2020-2023-en-todo-el-uruguay
(4) Bazzanela, A. C., Dereczynski, C., Luiz‐Silva, W., & Regoto, P. (2024). Performance of CMIP6 models over South America. Climate Dynamics, 62, 1501-1516. https://doi.org/10.1007/s00382-023-06979-1
(5) Intergovernmental Panel on Climate Change. (2021). Summary for Policymakers. In: Climate Change 2021: The Physical Science Basis. Contribution of Working Group I to the Sixth Assessment Report of the Intergovernmental Panel on Climate Change. https://doi.org/10.1017/9781009157896.001