Climate Change: Extreme Rain Events Because of Global Warming?

Dor G
The Environment
Published in
6 min readFeb 17, 2024
Created by DALL-E

Hello, I’m Dor, holding a B.Sc in Water Engineering.

I’d like to share a segment of my final project, where I endeavored to predict the likelihood of intense storms.

The data I gathered revealed some intriguing findings. For my final project, I utilized the Python programming language to extract rainfall data obtained from the Israeli Meteorological Services API. Throughout Israel, various gauges are strategically placed, and I specifically focused on data from digital gauges all over Israel.

The gauges are on average 20 years of measurements. Allow me to present a noteworthy observation (AMS- annual maximum series of the intensity of a 10-minute duration storm) from the Tel Aviv Coast gauge data and delve into the statistical analysis derived from the information I collected. I’ll also discuss the connections between these findings and climate change.

In Figure 1, the Y-axis vividly illustrates the rain intensity measured in millimeters per hour during a concise 10-minute storm event. Meanwhile, the X-axis is dedicated to representing the annual probability of encountering the same or higher-intensity event. This graph seamlessly introduces us to another significant and closely related concept: the Return Period.

Figure 1: rain intensity observed data against the exceedance probability

This measure serves as a statistical gauge, estimating the average time between occurrences of a specific magnitude of events or those of a similar or higher intensity. The use of a return period expresses the level of risk and reliability of the system in dealing with extreme events. For example, an engineering structure built according to a flood event that will happen once every 100 years on average will have a probability of failure of 0.01 and hence a reliability of 0.99 (eq 1) [1]. For calculating the probability I used the ‘Plotting Position’ method(eq 0).

However, it is crucial to remember that the return period is an average expression, signifying that one occurred event every 100 years on average does not eliminate the possibility that the event will occur again in two or three consecutive years later.

In the context of our rainfall example, the Return Period provides valuable insights into how often we can anticipate storms of similar or higher intensity to take place over a given period. For instance, if the graph indicates a 5% probability for a particular rainfall intensity, the corresponding Return Period would be the reciprocal of this probability, suggesting that we can expect such a storm, or even more intense ones, on average, once every 20 years (eq 2).

The visualization of both probability and Return Period allows us to grasp the frequency and potential impact of these events, aiding in informed decision-making for urban planning, infrastructure resilience, and disaster preparedness.

The data spans from 2005 to 2022 and is arranged from the highest to lowest occurrences. Notably, the last five instances of the highest rainfall events transpired within the last seven years [Table 1]. This raises concerns about what the future may hold in terms of hydrological flood events and climate change.

Methodologies And Results

For the methodology part, I will show you what type of tests and tools I used. I used statistical analysis with the data in Python (SciPy), I was trying to find the best fit for this set of the observed data (AMS) I used the function ‘genextreme.fit’ to find out the parameters of the General Extreme Value (GEV) distribution Location, Scale and Shape.

input:

data = np.array([37.8, 42, 43.2, 46.2, 48, 48.6, 49.2, 49.2, 50.4, 51.6, 56.4, 60.6, 87.6, 90.6, 106.2, 110.4, 111.6])
loc, scale, shape = genextreme.fit(data)
print(f'Estimated Location: {round(loc,2)}')
print(f'Estimated Scale: {round(scale,2)}')
print(f'Estimated Shape: {round(shape,2)}')

output:

Estimated Location: -0.53
Estimated Scale: 49.28
Estimated Shape: 11.49

After finding those parameters I plotted the data with the probability density function (eq 3)

on figure 2 with the observed rain data on the x-axis and the density of the data on the y-axis with the histograms and the PDF in the red line.

Figure 2: The rain data histogram with the fitted GEV distribution (PDF) function.

the same thing did with a normal distribution (figure 3)(eq 4).

Figure 3: rain data histogram with the fitted normal distribution (PDF) function

After comparing figure 2 to figure 3 it was clear that a better fit for the set of AMS is GEV distribution.

figure 4 is the Cumulative Density Function (CDF) in red (eq 5) with the cumulative probability values for the data on the y-axis, and on the x-axis the values are quantiles of the data.

Figure 4: is the GEV distribution CDF with the ECDF of the data for the KS-test result

In this analysis, I conduct statistical test such as Kolmogorov-Smirnov (KS) which quantifies the maximum absolute distance between the empirical CDF (eq 6)

of the GEV function (eq 3) to the distribution function that has been tested. That test compares the overall fit of distributions. The same method was applied with normal distribution (figure 5).

Figure 5: normal distribution CDF with the ECDF of the data for the KS-test result

It becomes evident that the most fitting correlation for this dataset is the “Generalized Extreme Value”, with a result of 0.158 in KS test (a smaller result means less distance- better fit).

I wanted to conduct further analysis of the data, so I downloaded HEC-SSP (Hydrologic Engineering Center-Statistical software program), with that software I was able to see that on a product moment fitting method, the KS value was 0.184 for exponential distribution. (Table 1)

Table 2: Log results from the HEC-SSP analysis:

Selected Distribution: Shifted Exponential (PM)

Conclusions

As we delve into the intricate patterns of hydrological events, The results between the data presented here to the fitting distributions, showcasing short but intense storms with high precipitation rates, of rainfall occurrences in the last 18-years had the best fit of GEV distribution as we saw in figure 2, high density among the entire data set of 110 mm\hour rain intensity event.

This calls for a heightened awareness of the potential consequences that await us in the future. As we navigate these challenges, It seems there alot more understanding to explore with the interconnectedness between the rising temperatures [2] to those extreme rain events that suddenly occurred in the last few years.

In essence, the data serves not only as a record of the past but as a compass guiding us toward informed decisions for a more resilient future. It is our collective responsibility to address the implications of extreme rain events and strive for a harmonious coexistence with our ever-evolving environment. In my next posts, I will look at some of the temperature data and the correlation with extreme rain events.

Citations

[1] Vogel, Richard M., and Attilio Castellarin. “Risk, reliability, and return periods and hydrologic design.” Handbook of applied hydrology (2nd ed.)(pp. 78.1–78.10). New York, USA: McGraw-Hill Education (2017).

[2] Climate.nasa.gov global temperature data

Let me know what you think of the work I did here, on my website [Link]

--

--