Regional Frequency Analysis of Extreme Rainfall in Haryana Using L-Moments

ZDIST = [ τ4DISTτ_bar4 + B4 ] / S4

Where τ4DIST is the L-kurtosis of the fitted candidate distribution, τ_bar4 is the regional average sample L-kurtosis, B4 is the bias, and S4 is the standard deviation of τ_bar4 obtained via Monte Carlo simulations (usually 500+ trials). The fit is deemed acceptable if |ZDIST| ≤ 1.64 (at the 90% confidence level). If multiple models pass, the one with the smallest |ZDIST| is selected as the best-fit distribution.

Region Distribution Z-Statistic Value Location (ξ) Scale (α) Shape (k / γ) Fit Status
Region I GLO** -0.10 0.93240.2111-0.1869 Best Fit
GEV*-1.180.80990.3149-0.0262Satisfactory
GNO*-1.390.92540.3727-0.3856Satisfactory
Region II GLO*1.320.90380.2813-0.1985Satisfactory
GEV** -0.72 0.74140.4154-0.0439 Best Fit
GNO*-1.190.89390.4964-0.4100Satisfactory
Region III GEV*1.200.78660.39580.0398Satisfactory
GNO*1.080.93120.4523-0.2974Satisfactory
PE3** 0.44 1.00000.48080.8800 Best Fit
Table 5: Z-Statistics and Regional Parameters (* Satisfactory, ** Best-fitted)

6. Regional Growth Curves and Rainfall Quantile Estimates

Using the **index-flood method**, the regional growth curve q(F) for each homogeneous region is calculated using the best-fit distribution parameters. The site-specific rainfall quantile at return period T (non-exceedance probability F = 1 – 1/T) is then computed as:

Qi(F) = μi × q(F)

Where μi is the site-specific mean maximum monthly rainfall (the index flood). Table 6 presents the regional quantiles (in mm) scaled for a site with the average regional mean, and Table 7 details the station-wise estimated rainfall depths for various return periods (T = 2 to 100 years).

Region T = 2 yrs (F=0.5) T = 5 yrs (F=0.8) T = 10 yrs (F=0.9) T = 20 yrs (F=0.95) T = 50 yrs (F=0.98) T = 100 yrs (F=0.99) T = 200 yrs (F=0.995)
Region I (GLO)310.38421.61501.54586.46712.67822.24945.79
Region II (GEV)161.75250.49311.58372.12453.63516.71581.59
Region III (PE3)207.68306.16367.12422.50490.61539.52586.64
Table 6: Regional Quantile Estimates (mm) for Haryana Homogeneous Regions
Region Station T = 2 yrs T = 5 yrs T = 10 yrs T = 20 yrs T = 50 yrs T = 100 yrs
Region I
(GLO)
Ambala277.53376.99448.45524.38637.24735.21
Karnal259.43352.40419.20490.19595.68687.26
Jagadhari345.31469.06557.98652.46792.88914.77
Kalka360.29489.41582.19680.77827.28954.47
Region II
(GEV)
Sirsa139.18214.55265.42314.89379.78429.26
Hansi100.89155.52192.39228.26275.30311.16
Farukhnagar173.25267.06330.38391.96472.73534.32
Faridabad231.37356.66441.22523.47631.34713.58
Mahendragarh152.34234.84290.51344.67415.70469.85
Khol127.39196.38242.94288.22347.62392.91
Palwal190.58293.79363.44431.19520.04587.79
Bhiwani119.03183.48226.98269.30324.79367.10
Tohana132.24203.86252.18299.19360.85407.86
Sohana192.26296.38366.64434.99524.63592.97
Dujana189.01291.37360.44427.63515.75582.94
Salhawas151.32233.27288.57342.36412.92466.71
Beri186.22287.06355.12421.31508.13574.33
Region III
(PE3)
Hisar156.11230.14275.97317.60368.80405.56
Sonipat243.18358.50429.88494.73574.49631.75
Rohtak199.77294.49353.14406.41471.92518.96
Nuh239.59353.21423.54487.43566.01622.43
Jhajjar222.96328.68394.13453.59526.71579.21
Bawal221.12325.97390.87449.84522.36574.42
Panipat196.19289.22346.81399.13463.47509.67
Kurukshetra209.64309.05370.59426.49495.25544.61
Narwana186.02274.23328.84378.44439.45483.25
Kaithal202.61298.68358.16412.19478.63526.34
Table 7: Site-Specific Quantile Estimates (mm) for Rainfall return periods

7. Code Tutorial: Implementing L-Moments in Python and R

To enable researchers to perform these calculations, we provide two ready-to-use snippets demonstrating L-moment estimation and extreme-value fitting.

R Script (Using the `lmom` Package)

# Install and load the lmom library
if (!requireNamespace("lmom", quietly = TRUE)) install.packages("lmom")
library(lmom)

# Example: Maximum monthly rainfall data for a station
rainfall_data <- c(150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250)

# 1. Compute sample L-moments (L1, L2, L3, L4)
sam_lmom <- samlmu(rainfall_data)
cat("Sample L-Moments:\n")
print(sam_lmom)

# 2. Extract L-Cv, L-Cs (t_3), L-Ck (t_4)
# Note: samlmu returns L-location, L-scale, L-skewness (t_3), L-kurtosis (t_4), etc.
l_cv <- sam_lmom[2] / sam_lmom[1]
cat("L-Cv:", l_cv, "\nL-Cs (t_3):", sam_lmom[3], "\nL-Ck (t_4):", sam_lmom[4], "\n")

# 3. Fit a Generalized Extreme Value (GEV) distribution
gev_params <- pelgev(sam_lmom)
cat("\nFitted GEV Parameters:\n")
print(gev_params)

# 4. Estimate quantiles for T = 10, 50, and 100 years
return_periods <- c(10, 50, 100)
probabilities <- 1 - 1 / return_periods
quantiles <- quagev(probabilities, gev_params)

# Display results
results <- data.frame(ReturnPeriod_Yrs = return_periods, Quantile_mm = quantiles)
print(results)

Python Script (Using the `lmoments3` Package)

import numpy as np
# Note: install via: pip install lmoments3
import lmoments3 as lm
from lmoments3 import distr

# Example: Maximum monthly rainfall data
rainfall_data = [150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250]

# 1. Compute sample L-moments and ratios
lmom_ratios = lm.lmom_ratios(rainfall_data, nmom=4)
print("Sample L-moments and Ratios:")
print(f"Mean (L1): {lmom_ratios[0]:.4f}")
print(f"L-scale (L2): {lmom_ratios[1]:.4f}")
print(f"L-skewness (t3): {lmom_ratios[2]:.4f}")
print(f"L-kurtosis (t4): {lmom_ratios[3]:.4f}")

# 2. Fit a Generalized Extreme Value (GEV) distribution
fitted_gev = distr.gev.lmom_fit(rainfall_data)
print(f"\nFitted GEV Parameters: {fitted_gev}")

# 3. Compute return level quantiles for T = 10, 50, and 100 years
return_periods = [10, 50, 100]
for T in return_periods:
    F = 1 - 1 / T
    quantile = distr.gev.ppf(F, **fitted_gev)
    print(f"T = {T:3d} years (F = {F:.2f}) -> Quantile: {quantile:.2f} mm")

8. Agricultural and Engineering Implications

The results of this regional study have critical applications for the development and policy planning of Haryana:

  • Hydraulic Structures: For Region I (Wet zone, fitted to GLO), designs must accommodate larger return-period rainfall quantities, where a 100-year event can exceed 950 mm in Kalka.
  • Agricultural Drainage: In Region II (Dry zone, GEV) and Region III (Central zone, PE3), drainage infrastructure must cope with 50-year rainfall events ranging from 270 mm to 570 mm depending on the exact location. Over-designing can waste valuable rural infrastructure budget, while under-designing can cause widespread waterlogging of sensitive agricultural crops, ruining seasonal yields.
  • Water Harvesting: Estimating return levels helps calculate maximum design inflows for farm ponds, reservoirs, and check dams, helping farmers store surplus rainwater for dry season irrigation.

References

  • Babu, V. B. and Hooda B. K. (2018). Fuzzy Majority Approach for Modeling Spatial and Temporal Distributions of Daily Rainfall in Western Zone of Haryana. International Journal of Agricultural and Statistical Sciences, 14(1), 57-67.
  • Greenwood, J. A., Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability weighted moments: Definition and relation to parameters of several distributions expressible in inverse form. Water Resources Research, 15(5), 1049-1054.
  • Hosking, J. R. M. (1990). L-moments: Analysis and Estimation of Distributions Using Linear Combinations of Order Statistics. Journal of the Royal Statistical Society (Series B), 52(1), 105-124.
  • Hosking, J. R. M. and Wallis, J. R. (1993). Some statistics useful in regional frequency analysis. Water Resources Research, 29(2), 271-281.
  • Hosking, J. R. M. and Wallis, J. R. (1997). Regional frequency analysis: An approach based on L-Moments. Cambridge University Press, United Kingdom.
  • Hooda, B. K. (2006). Probability Analysis of Monthly Rainfall for Agricultural Planning At Hisar. Indian Journal of Soil Conservation, 34(1), 12-14.
  • Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability-weighted moments compared with some traditional techniques in estimating Gumbel parameters and quantiles. Water Resources Research, 15, 1055-1064.
  • Malekinezhad, H. and Garizi, A. Z. (2014). Regional frequency analysis of daily rainfall extremes using L-moments approach. Atmosfera, 27(4), 411-427.
  • Majumder A., Patil S. G., Noman M. D., and Biswas S. (2015). Application of L-moments for regional frequency analysis of maximum monthly rainfall in West Bengal, India. Mausam, 66(2), 273-280.
  • Nain, M. and Hooda B. K. (2019). Probability and Trend Analysis of Monthly Rainfall in Haryana. International Journal of Agricultural and Statistical Sciences, 15(1), 221-229.
  • Sahrin S., Ismail N., and Alias N. E. (2018). Regional frequency analysis on peninsular Malaysia using L-moments. Far East Journal of Mathematical Sciences (FJMS), 103(8), 1379-1398.

br = n-1i=1n [ (i-1r) / (n-1r) ] Xi:n

L-Moments Definition

The first four L-moments (λr) are linear combinations of the PWMs:

  • L-Location (Mean): λ1 = β0
  • L-Scale: λ2 = 2β1 - β0
  • L-Skewness measure: λ3 = 6β2 - 6β1 + β0
  • L-Kurtosis measure: λ4 = 20β3 - 30β2 + 12β1 - β0

To characterize distributions independently of their scale, we define dimensionless L-moment ratios:

  • L-coefficient of variation (L-Cv, τ): τ = λ2 / λ1
  • L-coefficient of skewness (L-Cs, τ3): τ3 = λ3 / λ2
  • L-coefficient of kurtosis (L-Ck, τ4): τ4 = λ4 / λ2

2. Database and Initial Data Screening

The study utilizes maximum monthly rainfall data for the 48-year period (1970–2017) obtained from the National Data Centre, Indian Meteorological Department (IMD), Pune, covering 27 rain gauge stations in Haryana.

Before executing RFA, the assumptions of stationarity, randomness, and independence must be verified for all stations:

  • Stationarity: Tested using the Mann-Kendall trend test. Results showed that only 3 out of 27 sites (Karnal, Kaithal, and Bhiwani) had a statistically significant trend, meaning the regional maximum rainfall series can be treated as stationary.
  • Randomness: Tested using the Run test. Except for Rohtak, the rainfall series across all other sites were random.
  • Independence: Evaluated using the Autocorrelation Function (ACF). Only Rohtak and Kurukshetra showed significant autocorrelation at lag-1. Overall, it is highly reasonable to treat the data as time-independent and suitable for regional frequency analysis.
Station Name Mann-Kendall Trend (Tau) MK P-value Interpretation No. of Runs Run P-value
Sirsa-0.0240.810No Trend240.771
Narwana-0.1080.282No Trend200.145
Hisar-0.1260.210No Trend240.770
Karnal0.2850.005Trend180.054
Ambala-0.1620.106No Trend220.381
Jhajjar-0.1550.126No Trend200.233
Hansi-0.1430.060No Trend251.000
Sonipat-0.1600.112No Trend220.243
Rohtak-0.1090.074No Trend160.008 (Not Random)
Panipat-0.1210.230No Trend190.080
Farukhnagar-0.1140.259No Trend200.145
Faridabad0.1010.315No Trend220.381
Kurukshetra-0.0050.810No Trend180.074
Mahendragarh-0.1410.160No Trend260.770
Kaithal-0.2960.003Trend210.243
Khol0.0290.776No Trend240.780
Palwal-0.1640.110No Trend150.710
Bhiwani-0.2460.017Trend300.074
Tohana-0.0780.439No Trend251.000
Sohana-0.1530.129No Trend260.770
Bawal-0.0250.810No Trend200.145
Jagadhari0.1140.255No Trend210.243
Dujana-0.0410.693No Trend180.074
Salhawas-0.1760.080No Trend220.381
Nuh-0.0310.763No Trend200.145
Kalka-0.1960.053No Trend190.136
Beri-0.0120.915No Trend220.381
Table 1: Data Screening Results (Mann-Kendall Trend and Run Tests)

3. L-Moments and Station-Wise Characteristics

For each of the 27 sites, sample L-moments and L-moment ratios were computed. The values represent the mean maximum monthly rainfall (in mm), L-coefficient of variation (L-Cv), L-skewness (L-Cs), and L-kurtosis (L-Ck).

Station Mean (mm) L-Cv (τ) L-Cs (τ3) L-Ck (τ4)
Sirsa154.330.2700.1530.177
Narwana200.0210.2900.1530.084
Hisar167.8630.2490.1150.176
Karnal278.3560.2240.0970.071
Ambala297.7770.1850.2080.250
Jhajjar239.7390.2710.1300.047
Hansi111.7270.3120.2680.137
Sonipat261.4870.2540.1660.132
Rohtak214.8030.2760.1000.076
Panipat210.9580.2620.1430.099
Farukhnagar191.8560.3440.1970.217
Faridabad256.2240.2440.2050.216
Kurukshetra225.4200.2970.2220.116
Mahendragarh168.7080.3030.2360.238
Kaithal217.8580.2740.1410.067
Khol141.0790.3560.1690.161
Palwal211.0580.2570.3180.309
Bhiwani145.8720.2700.1720.096
Tohana151.3230.2830.1150.140
Sohana225.1580.2610.1490.100
Bawal237.7580.2130.1120.217
Jagadhari370.5040.2510.2890.241
Dujana209.3150.3080.1610.132
Salhawas167.5790.3470.2950.263
Nuh257.6270.2640.1670.215
Kalka386.5810.2340.1530.212
Beri206.2230.3220.1830.109
Table 2: Sample L-Moments and L-Moment Ratios for 27 Haryana Stations

4. Formation and Validation of Homogeneous Regions

To define homogeneous regions, the mean monthly rainfall values were subjected to hierarchical cluster analysis (Ward's Method). The Elbow Method (analyzing the within-cluster sum of squares) indicated that the optimal number of regions is three.

  • Region I (Wet/Semi-humid zone - 4 stations): Ambala, Karnal, Jagadhari, and Kalka.
  • Region II (Dry/Semi-arid zone - 13 stations): Sirsa, Hansi, Farukhnagar, Faridabad, Mahendragarh, Khol, Palwal, Bhiwani, Tohana, Sohana, Dujana, Salhawas, and Beri.
  • Region III (Central/Transition zone - 10 stations): Hisar, Sonipat, Rohtak, Nuh, Jhajjar, Bawal, Panipat, Kurukshetra, Narwana, and Kaithal.

Discordancy Test (Di)

The discordancy measure Di (Hosking and Wallis, 1993) is a scaled Mahalanobis distance in a 3D space of L-moments (L-Cv, L-Cs, and L-Ck). A site is considered discordant if its Di exceeds the critical value (which is 3.0 for regions with ≥15 sites, and smaller for smaller regions, as shown in the table below).

No. of Sites (N) Critical Di No. of Sites (N) Critical Di
51.33102.49
61.65112.63
71.92122.76
82.14132.87
92.33142.97
≥153.00
Table 3: Critical Discordancy Values (Di) based on Region Size

Applying the discordancy test to our 3 homogeneous regions yielded the following site-specific discordancy values and regional average L-moments:

Region Station Name Discordancy Di Regional L-Moments
Region I
(N = 4)
Ambala1.00 L-Cv (τ) = 0.2237
L-Cs (τ3) = 0.1869
L-Ck (τ4) = 0.1935
Karnal1.00
Jagadhari1.00
Kalka1.00
Region II
(N = 13)
Sirsa0.64 L-Cv (τ) = 0.3004
L-Cs (τ3) = 0.1985
L-Ck (τ4) = 0.1724
Hansi1.97
Farukhnagar0.97
Faridabad0.96
Mahendragarh0.32
Khol1.12
Palwal2.15
Bhiwani0.89
Tohana0.94
Sohana0.82
Dujana0.22
Salhawas1.36
Beri0.64
Region III
(N = 10)
Hisar0.72 L-Cv (τ) = 0.2648
L-Cs (τ3) = 0.1446
L-Ck (τ4) = 0.1232
Sonipat0.77
Rohtak1.40
Nuh1.53
Jhajjar0.79
Bawal1.85
Panipat0.24
Kurukshetra1.79
Narwana0.54
Kaithal0.36
Table 4: Discordancy and Regional L-Moments across Haryana Regions

Since all computed Di values are strictly less than their respective regional critical bounds, no stations were flagged as discordant. This confirms that the regional clustering is robust and mathematically valid.

5. Regional Distribution Selection: Z-Statistic Goodness-of-Fit

Five candidate probability distributions were evaluated for each region using L-moment ratio diagrams and the Z-statistic goodness-of-fit measure (ZDIST). The candidate distributions were: Generalized Logistic (GLO), Generalized Extreme Value (GEV), Generalized Pareto (GPA), Generalized Normal (GNO), and Pearson Type-3 (PE3).

The goodness-of-fit measure is defined as:

ZDIST = [ τ4DIST - τ_bar4 + B4 ] / S4

Where τ4DIST is the L-kurtosis of the fitted candidate distribution, τ_bar4 is the regional average sample L-kurtosis, B4 is the bias, and S4 is the standard deviation of τ_bar4 obtained via Monte Carlo simulations (usually 500+ trials). The fit is deemed acceptable if |ZDIST| ≤ 1.64 (at the 90% confidence level). If multiple models pass, the one with the smallest |ZDIST| is selected as the best-fit distribution.

Region Distribution Z-Statistic Value Location (ξ) Scale (α) Shape (k / γ) Fit Status
Region I GLO** -0.10 0.93240.2111-0.1869 Best Fit
GEV*-1.180.80990.3149-0.0262Satisfactory
GNO*-1.390.92540.3727-0.3856Satisfactory
Region II GLO*1.320.90380.2813-0.1985Satisfactory
GEV** -0.72 0.74140.4154-0.0439 Best Fit
GNO*-1.190.89390.4964-0.4100Satisfactory
Region III GEV*1.200.78660.39580.0398Satisfactory
GNO*1.080.93120.4523-0.2974Satisfactory
PE3** 0.44 1.00000.48080.8800 Best Fit
Table 5: Z-Statistics and Regional Parameters (* Satisfactory, ** Best-fitted)

6. Regional Growth Curves and Rainfall Quantile Estimates

Using the **index-flood method**, the regional growth curve q(F) for each homogeneous region is calculated using the best-fit distribution parameters. The site-specific rainfall quantile at return period T (non-exceedance probability F = 1 - 1/T) is then computed as:

Qi(F) = μi × q(F)

Where μi is the site-specific mean maximum monthly rainfall (the index flood). Table 6 presents the regional quantiles (in mm) scaled for a site with the average regional mean, and Table 7 details the station-wise estimated rainfall depths for various return periods (T = 2 to 100 years).

Region T = 2 yrs (F=0.5) T = 5 yrs (F=0.8) T = 10 yrs (F=0.9) T = 20 yrs (F=0.95) T = 50 yrs (F=0.98) T = 100 yrs (F=0.99) T = 200 yrs (F=0.995)
Region I (GLO)310.38421.61501.54586.46712.67822.24945.79
Region II (GEV)161.75250.49311.58372.12453.63516.71581.59
Region III (PE3)207.68306.16367.12422.50490.61539.52586.64
Table 6: Regional Quantile Estimates (mm) for Haryana Homogeneous Regions
Region Station T = 2 yrs T = 5 yrs T = 10 yrs T = 20 yrs T = 50 yrs T = 100 yrs
Region I
(GLO)
Ambala277.53376.99448.45524.38637.24735.21
Karnal259.43352.40419.20490.19595.68687.26
Jagadhari345.31469.06557.98652.46792.88914.77
Kalka360.29489.41582.19680.77827.28954.47
Region II
(GEV)
Sirsa139.18214.55265.42314.89379.78429.26
Hansi100.89155.52192.39228.26275.30311.16
Farukhnagar173.25267.06330.38391.96472.73534.32
Faridabad231.37356.66441.22523.47631.34713.58
Mahendragarh152.34234.84290.51344.67415.70469.85
Khol127.39196.38242.94288.22347.62392.91
Palwal190.58293.79363.44431.19520.04587.79
Bhiwani119.03183.48226.98269.30324.79367.10
Tohana132.24203.86252.18299.19360.85407.86
Sohana192.26296.38366.64434.99524.63592.97
Dujana189.01291.37360.44427.63515.75582.94
Salhawas151.32233.27288.57342.36412.92466.71
Beri186.22287.06355.12421.31508.13574.33
Region III
(PE3)
Hisar156.11230.14275.97317.60368.80405.56
Sonipat243.18358.50429.88494.73574.49631.75
Rohtak199.77294.49353.14406.41471.92518.96
Nuh239.59353.21423.54487.43566.01622.43
Jhajjar222.96328.68394.13453.59526.71579.21
Bawal221.12325.97390.87449.84522.36574.42
Panipat196.19289.22346.81399.13463.47509.67
Kurukshetra209.64309.05370.59426.49495.25544.61
Narwana186.02274.23328.84378.44439.45483.25
Kaithal202.61298.68358.16412.19478.63526.34
Table 7: Site-Specific Quantile Estimates (mm) for Rainfall return periods

7. Code Tutorial: Implementing L-Moments in Python and R

To enable researchers to perform these calculations, we provide two ready-to-use snippets demonstrating L-moment estimation and extreme-value fitting.

R Script (Using the `lmom` Package)

# Install and load the lmom library
if (!requireNamespace("lmom", quietly = TRUE)) install.packages("lmom")
library(lmom)

# Example: Maximum monthly rainfall data for a station
rainfall_data <- c(150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250)

# 1. Compute sample L-moments (L1, L2, L3, L4)
sam_lmom <- samlmu(rainfall_data)
cat("Sample L-Moments:\n")
print(sam_lmom)

# 2. Extract L-Cv, L-Cs (t_3), L-Ck (t_4)
# Note: samlmu returns L-location, L-scale, L-skewness (t_3), L-kurtosis (t_4), etc.
l_cv <- sam_lmom[2] / sam_lmom[1]
cat("L-Cv:", l_cv, "\nL-Cs (t_3):", sam_lmom[3], "\nL-Ck (t_4):", sam_lmom[4], "\n")

# 3. Fit a Generalized Extreme Value (GEV) distribution
gev_params <- pelgev(sam_lmom)
cat("\nFitted GEV Parameters:\n")
print(gev_params)

# 4. Estimate quantiles for T = 10, 50, and 100 years
return_periods <- c(10, 50, 100)
probabilities <- 1 - 1 / return_periods
quantiles <- quagev(probabilities, gev_params)

# Display results
results <- data.frame(ReturnPeriod_Yrs = return_periods, Quantile_mm = quantiles)
print(results)

Python Script (Using the `lmoments3` Package)

import numpy as np
# Note: install via: pip install lmoments3
import lmoments3 as lm
from lmoments3 import distr

# Example: Maximum monthly rainfall data
rainfall_data = [150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250]

# 1. Compute sample L-moments and ratios
lmom_ratios = lm.lmom_ratios(rainfall_data, nmom=4)
print("Sample L-moments and Ratios:")
print(f"Mean (L1): {lmom_ratios[0]:.4f}")
print(f"L-scale (L2): {lmom_ratios[1]:.4f}")
print(f"L-skewness (t3): {lmom_ratios[2]:.4f}")
print(f"L-kurtosis (t4): {lmom_ratios[3]:.4f}")

# 2. Fit a Generalized Extreme Value (GEV) distribution
fitted_gev = distr.gev.lmom_fit(rainfall_data)
print(f"\nFitted GEV Parameters: {fitted_gev}")

# 3. Compute return level quantiles for T = 10, 50, and 100 years
return_periods = [10, 50, 100]
for T in return_periods:
    F = 1 - 1 / T
    quantile = distr.gev.ppf(F, **fitted_gev)
    print(f"T = {T:3d} years (F = {F:.2f}) -> Quantile: {quantile:.2f} mm")

8. Agricultural and Engineering Implications

The results of this regional study have critical applications for the development and policy planning of Haryana:

  • Hydraulic Structures: For Region I (Wet zone, fitted to GLO), designs must accommodate larger return-period rainfall quantities, where a 100-year event can exceed 950 mm in Kalka.
  • Agricultural Drainage: In Region II (Dry zone, GEV) and Region III (Central zone, PE3), drainage infrastructure must cope with 50-year rainfall events ranging from 270 mm to 570 mm depending on the exact location. Over-designing can waste valuable rural infrastructure budget, while under-designing can cause widespread waterlogging of sensitive agricultural crops, ruining seasonal yields.
  • Water Harvesting: Estimating return levels helps calculate maximum design inflows for farm ponds, reservoirs, and check dams, helping farmers store surplus rainwater for dry season irrigation.

References

  • Babu, V. B. and Hooda B. K. (2018). Fuzzy Majority Approach for Modeling Spatial and Temporal Distributions of Daily Rainfall in Western Zone of Haryana. International Journal of Agricultural and Statistical Sciences, 14(1), 57-67.
  • Greenwood, J. A., Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability weighted moments: Definition and relation to parameters of several distributions expressible in inverse form. Water Resources Research, 15(5), 1049-1054.
  • Hosking, J. R. M. (1990). L-moments: Analysis and Estimation of Distributions Using Linear Combinations of Order Statistics. Journal of the Royal Statistical Society (Series B), 52(1), 105-124.
  • Hosking, J. R. M. and Wallis, J. R. (1993). Some statistics useful in regional frequency analysis. Water Resources Research, 29(2), 271-281.
  • Hosking, J. R. M. and Wallis, J. R. (1997). Regional frequency analysis: An approach based on L-Moments. Cambridge University Press, United Kingdom.
  • Hooda, B. K. (2006). Probability Analysis of Monthly Rainfall for Agricultural Planning At Hisar. Indian Journal of Soil Conservation, 34(1), 12-14.
  • Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability-weighted moments compared with some traditional techniques in estimating Gumbel parameters and quantiles. Water Resources Research, 15, 1055-1064.
  • Malekinezhad, H. and Garizi, A. Z. (2014). Regional frequency analysis of daily rainfall extremes using L-moments approach. Atmosfera, 27(4), 411-427.
  • Majumder A., Patil S. G., Noman M. D., and Biswas S. (2015). Application of L-moments for regional frequency analysis of maximum monthly rainfall in West Bengal, India. Mausam, 66(2), 273-280.
  • Nain, M. and Hooda B. K. (2019). Probability and Trend Analysis of Monthly Rainfall in Haryana. International Journal of Agricultural and Statistical Sciences, 15(1), 221-229.
  • Sahrin S., Ismail N., and Alias N. E. (2018). Regional frequency analysis on peninsular Malaysia using L-moments. Far East Journal of Mathematical Sciences (FJMS), 103(8), 1379-1398.

βr = E[X {F(X)}r] = ∫01 x(F) Fr dF

Where x(F) is the inverse cumulative distribution (quantile) function, and r is a non-negative integer. Unbiased sample estimators br of βr are computed from an ordered sample X1:nX2:n ≤ ... ≤ Xn:n using:

br = n-1i=1n [ (i-1r) / (n-1r) ] Xi:n

L-Moments Definition

The first four L-moments (λr) are linear combinations of the PWMs:

  • L-Location (Mean): λ1 = β0
  • L-Scale: λ2 = 2β1 - β0
  • L-Skewness measure: λ3 = 6β2 - 6β1 + β0
  • L-Kurtosis measure: λ4 = 20β3 - 30β2 + 12β1 - β0

To characterize distributions independently of their scale, we define dimensionless L-moment ratios:

  • L-coefficient of variation (L-Cv, τ): τ = λ2 / λ1
  • L-coefficient of skewness (L-Cs, τ3): τ3 = λ3 / λ2
  • L-coefficient of kurtosis (L-Ck, τ4): τ4 = λ4 / λ2

2. Database and Initial Data Screening

The study utilizes maximum monthly rainfall data for the 48-year period (1970–2017) obtained from the National Data Centre, Indian Meteorological Department (IMD), Pune, covering 27 rain gauge stations in Haryana.

Before executing RFA, the assumptions of stationarity, randomness, and independence must be verified for all stations:

  • Stationarity: Tested using the Mann-Kendall trend test. Results showed that only 3 out of 27 sites (Karnal, Kaithal, and Bhiwani) had a statistically significant trend, meaning the regional maximum rainfall series can be treated as stationary.
  • Randomness: Tested using the Run test. Except for Rohtak, the rainfall series across all other sites were random.
  • Independence: Evaluated using the Autocorrelation Function (ACF). Only Rohtak and Kurukshetra showed significant autocorrelation at lag-1. Overall, it is highly reasonable to treat the data as time-independent and suitable for regional frequency analysis.
Station Name Mann-Kendall Trend (Tau) MK P-value Interpretation No. of Runs Run P-value
Sirsa-0.0240.810No Trend240.771
Narwana-0.1080.282No Trend200.145
Hisar-0.1260.210No Trend240.770
Karnal0.2850.005Trend180.054
Ambala-0.1620.106No Trend220.381
Jhajjar-0.1550.126No Trend200.233
Hansi-0.1430.060No Trend251.000
Sonipat-0.1600.112No Trend220.243
Rohtak-0.1090.074No Trend160.008 (Not Random)
Panipat-0.1210.230No Trend190.080
Farukhnagar-0.1140.259No Trend200.145
Faridabad0.1010.315No Trend220.381
Kurukshetra-0.0050.810No Trend180.074
Mahendragarh-0.1410.160No Trend260.770
Kaithal-0.2960.003Trend210.243
Khol0.0290.776No Trend240.780
Palwal-0.1640.110No Trend150.710
Bhiwani-0.2460.017Trend300.074
Tohana-0.0780.439No Trend251.000
Sohana-0.1530.129No Trend260.770
Bawal-0.0250.810No Trend200.145
Jagadhari0.1140.255No Trend210.243
Dujana-0.0410.693No Trend180.074
Salhawas-0.1760.080No Trend220.381
Nuh-0.0310.763No Trend200.145
Kalka-0.1960.053No Trend190.136
Beri-0.0120.915No Trend220.381
Table 1: Data Screening Results (Mann-Kendall Trend and Run Tests)

3. L-Moments and Station-Wise Characteristics

For each of the 27 sites, sample L-moments and L-moment ratios were computed. The values represent the mean maximum monthly rainfall (in mm), L-coefficient of variation (L-Cv), L-skewness (L-Cs), and L-kurtosis (L-Ck).

Station Mean (mm) L-Cv (τ) L-Cs (τ3) L-Ck (τ4)
Sirsa154.330.2700.1530.177
Narwana200.0210.2900.1530.084
Hisar167.8630.2490.1150.176
Karnal278.3560.2240.0970.071
Ambala297.7770.1850.2080.250
Jhajjar239.7390.2710.1300.047
Hansi111.7270.3120.2680.137
Sonipat261.4870.2540.1660.132
Rohtak214.8030.2760.1000.076
Panipat210.9580.2620.1430.099
Farukhnagar191.8560.3440.1970.217
Faridabad256.2240.2440.2050.216
Kurukshetra225.4200.2970.2220.116
Mahendragarh168.7080.3030.2360.238
Kaithal217.8580.2740.1410.067
Khol141.0790.3560.1690.161
Palwal211.0580.2570.3180.309
Bhiwani145.8720.2700.1720.096
Tohana151.3230.2830.1150.140
Sohana225.1580.2610.1490.100
Bawal237.7580.2130.1120.217
Jagadhari370.5040.2510.2890.241
Dujana209.3150.3080.1610.132
Salhawas167.5790.3470.2950.263
Nuh257.6270.2640.1670.215
Kalka386.5810.2340.1530.212
Beri206.2230.3220.1830.109
Table 2: Sample L-Moments and L-Moment Ratios for 27 Haryana Stations

4. Formation and Validation of Homogeneous Regions

To define homogeneous regions, the mean monthly rainfall values were subjected to hierarchical cluster analysis (Ward's Method). The Elbow Method (analyzing the within-cluster sum of squares) indicated that the optimal number of regions is three.

  • Region I (Wet/Semi-humid zone - 4 stations): Ambala, Karnal, Jagadhari, and Kalka.
  • Region II (Dry/Semi-arid zone - 13 stations): Sirsa, Hansi, Farukhnagar, Faridabad, Mahendragarh, Khol, Palwal, Bhiwani, Tohana, Sohana, Dujana, Salhawas, and Beri.
  • Region III (Central/Transition zone - 10 stations): Hisar, Sonipat, Rohtak, Nuh, Jhajjar, Bawal, Panipat, Kurukshetra, Narwana, and Kaithal.

Discordancy Test (Di)

The discordancy measure Di (Hosking and Wallis, 1993) is a scaled Mahalanobis distance in a 3D space of L-moments (L-Cv, L-Cs, and L-Ck). A site is considered discordant if its Di exceeds the critical value (which is 3.0 for regions with ≥15 sites, and smaller for smaller regions, as shown in the table below).

No. of Sites (N) Critical Di No. of Sites (N) Critical Di
51.33102.49
61.65112.63
71.92122.76
82.14132.87
92.33142.97
≥153.00
Table 3: Critical Discordancy Values (Di) based on Region Size

Applying the discordancy test to our 3 homogeneous regions yielded the following site-specific discordancy values and regional average L-moments:

Region Station Name Discordancy Di Regional L-Moments
Region I
(N = 4)
Ambala1.00 L-Cv (τ) = 0.2237
L-Cs (τ3) = 0.1869
L-Ck (τ4) = 0.1935
Karnal1.00
Jagadhari1.00
Kalka1.00
Region II
(N = 13)
Sirsa0.64 L-Cv (τ) = 0.3004
L-Cs (τ3) = 0.1985
L-Ck (τ4) = 0.1724
Hansi1.97
Farukhnagar0.97
Faridabad0.96
Mahendragarh0.32
Khol1.12
Palwal2.15
Bhiwani0.89
Tohana0.94
Sohana0.82
Dujana0.22
Salhawas1.36
Beri0.64
Region III
(N = 10)
Hisar0.72 L-Cv (τ) = 0.2648
L-Cs (τ3) = 0.1446
L-Ck (τ4) = 0.1232
Sonipat0.77
Rohtak1.40
Nuh1.53
Jhajjar0.79
Bawal1.85
Panipat0.24
Kurukshetra1.79
Narwana0.54
Kaithal0.36
Table 4: Discordancy and Regional L-Moments across Haryana Regions

Since all computed Di values are strictly less than their respective regional critical bounds, no stations were flagged as discordant. This confirms that the regional clustering is robust and mathematically valid.

5. Regional Distribution Selection: Z-Statistic Goodness-of-Fit

Five candidate probability distributions were evaluated for each region using L-moment ratio diagrams and the Z-statistic goodness-of-fit measure (ZDIST). The candidate distributions were: Generalized Logistic (GLO), Generalized Extreme Value (GEV), Generalized Pareto (GPA), Generalized Normal (GNO), and Pearson Type-3 (PE3).

The goodness-of-fit measure is defined as:

ZDIST = [ τ4DIST - τ_bar4 + B4 ] / S4

Where τ4DIST is the L-kurtosis of the fitted candidate distribution, τ_bar4 is the regional average sample L-kurtosis, B4 is the bias, and S4 is the standard deviation of τ_bar4 obtained via Monte Carlo simulations (usually 500+ trials). The fit is deemed acceptable if |ZDIST| ≤ 1.64 (at the 90% confidence level). If multiple models pass, the one with the smallest |ZDIST| is selected as the best-fit distribution.

Region Distribution Z-Statistic Value Location (ξ) Scale (α) Shape (k / γ) Fit Status
Region I GLO** -0.10 0.93240.2111-0.1869 Best Fit
GEV*-1.180.80990.3149-0.0262Satisfactory
GNO*-1.390.92540.3727-0.3856Satisfactory
Region II GLO*1.320.90380.2813-0.1985Satisfactory
GEV** -0.72 0.74140.4154-0.0439 Best Fit
GNO*-1.190.89390.4964-0.4100Satisfactory
Region III GEV*1.200.78660.39580.0398Satisfactory
GNO*1.080.93120.4523-0.2974Satisfactory
PE3** 0.44 1.00000.48080.8800 Best Fit
Table 5: Z-Statistics and Regional Parameters (* Satisfactory, ** Best-fitted)

6. Regional Growth Curves and Rainfall Quantile Estimates

Using the **index-flood method**, the regional growth curve q(F) for each homogeneous region is calculated using the best-fit distribution parameters. The site-specific rainfall quantile at return period T (non-exceedance probability F = 1 - 1/T) is then computed as:

Qi(F) = μi × q(F)

Where μi is the site-specific mean maximum monthly rainfall (the index flood). Table 6 presents the regional quantiles (in mm) scaled for a site with the average regional mean, and Table 7 details the station-wise estimated rainfall depths for various return periods (T = 2 to 100 years).

Region T = 2 yrs (F=0.5) T = 5 yrs (F=0.8) T = 10 yrs (F=0.9) T = 20 yrs (F=0.95) T = 50 yrs (F=0.98) T = 100 yrs (F=0.99) T = 200 yrs (F=0.995)
Region I (GLO)310.38421.61501.54586.46712.67822.24945.79
Region II (GEV)161.75250.49311.58372.12453.63516.71581.59
Region III (PE3)207.68306.16367.12422.50490.61539.52586.64
Table 6: Regional Quantile Estimates (mm) for Haryana Homogeneous Regions
Region Station T = 2 yrs T = 5 yrs T = 10 yrs T = 20 yrs T = 50 yrs T = 100 yrs
Region I
(GLO)
Ambala277.53376.99448.45524.38637.24735.21
Karnal259.43352.40419.20490.19595.68687.26
Jagadhari345.31469.06557.98652.46792.88914.77
Kalka360.29489.41582.19680.77827.28954.47
Region II
(GEV)
Sirsa139.18214.55265.42314.89379.78429.26
Hansi100.89155.52192.39228.26275.30311.16
Farukhnagar173.25267.06330.38391.96472.73534.32
Faridabad231.37356.66441.22523.47631.34713.58
Mahendragarh152.34234.84290.51344.67415.70469.85
Khol127.39196.38242.94288.22347.62392.91
Palwal190.58293.79363.44431.19520.04587.79
Bhiwani119.03183.48226.98269.30324.79367.10
Tohana132.24203.86252.18299.19360.85407.86
Sohana192.26296.38366.64434.99524.63592.97
Dujana189.01291.37360.44427.63515.75582.94
Salhawas151.32233.27288.57342.36412.92466.71
Beri186.22287.06355.12421.31508.13574.33
Region III
(PE3)
Hisar156.11230.14275.97317.60368.80405.56
Sonipat243.18358.50429.88494.73574.49631.75
Rohtak199.77294.49353.14406.41471.92518.96
Nuh239.59353.21423.54487.43566.01622.43
Jhajjar222.96328.68394.13453.59526.71579.21
Bawal221.12325.97390.87449.84522.36574.42
Panipat196.19289.22346.81399.13463.47509.67
Kurukshetra209.64309.05370.59426.49495.25544.61
Narwana186.02274.23328.84378.44439.45483.25
Kaithal202.61298.68358.16412.19478.63526.34
Table 7: Site-Specific Quantile Estimates (mm) for Rainfall return periods

7. Code Tutorial: Implementing L-Moments in Python and R

To enable researchers to perform these calculations, we provide two ready-to-use snippets demonstrating L-moment estimation and extreme-value fitting.

R Script (Using the `lmom` Package)

# Install and load the lmom library
if (!requireNamespace("lmom", quietly = TRUE)) install.packages("lmom")
library(lmom)

# Example: Maximum monthly rainfall data for a station
rainfall_data <- c(150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250)

# 1. Compute sample L-moments (L1, L2, L3, L4)
sam_lmom <- samlmu(rainfall_data)
cat("Sample L-Moments:\n")
print(sam_lmom)

# 2. Extract L-Cv, L-Cs (t_3), L-Ck (t_4)
# Note: samlmu returns L-location, L-scale, L-skewness (t_3), L-kurtosis (t_4), etc.
l_cv <- sam_lmom[2] / sam_lmom[1]
cat("L-Cv:", l_cv, "\nL-Cs (t_3):", sam_lmom[3], "\nL-Ck (t_4):", sam_lmom[4], "\n")

# 3. Fit a Generalized Extreme Value (GEV) distribution
gev_params <- pelgev(sam_lmom)
cat("\nFitted GEV Parameters:\n")
print(gev_params)

# 4. Estimate quantiles for T = 10, 50, and 100 years
return_periods <- c(10, 50, 100)
probabilities <- 1 - 1 / return_periods
quantiles <- quagev(probabilities, gev_params)

# Display results
results <- data.frame(ReturnPeriod_Yrs = return_periods, Quantile_mm = quantiles)
print(results)

Python Script (Using the `lmoments3` Package)

import numpy as np
# Note: install via: pip install lmoments3
import lmoments3 as lm
from lmoments3 import distr

# Example: Maximum monthly rainfall data
rainfall_data = [150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250]

# 1. Compute sample L-moments and ratios
lmom_ratios = lm.lmom_ratios(rainfall_data, nmom=4)
print("Sample L-moments and Ratios:")
print(f"Mean (L1): {lmom_ratios[0]:.4f}")
print(f"L-scale (L2): {lmom_ratios[1]:.4f}")
print(f"L-skewness (t3): {lmom_ratios[2]:.4f}")
print(f"L-kurtosis (t4): {lmom_ratios[3]:.4f}")

# 2. Fit a Generalized Extreme Value (GEV) distribution
fitted_gev = distr.gev.lmom_fit(rainfall_data)
print(f"\nFitted GEV Parameters: {fitted_gev}")

# 3. Compute return level quantiles for T = 10, 50, and 100 years
return_periods = [10, 50, 100]
for T in return_periods:
    F = 1 - 1 / T
    quantile = distr.gev.ppf(F, **fitted_gev)
    print(f"T = {T:3d} years (F = {F:.2f}) -> Quantile: {quantile:.2f} mm")

8. Agricultural and Engineering Implications

The results of this regional study have critical applications for the development and policy planning of Haryana:

  • Hydraulic Structures: For Region I (Wet zone, fitted to GLO), designs must accommodate larger return-period rainfall quantities, where a 100-year event can exceed 950 mm in Kalka.
  • Agricultural Drainage: In Region II (Dry zone, GEV) and Region III (Central zone, PE3), drainage infrastructure must cope with 50-year rainfall events ranging from 270 mm to 570 mm depending on the exact location. Over-designing can waste valuable rural infrastructure budget, while under-designing can cause widespread waterlogging of sensitive agricultural crops, ruining seasonal yields.
  • Water Harvesting: Estimating return levels helps calculate maximum design inflows for farm ponds, reservoirs, and check dams, helping farmers store surplus rainwater for dry season irrigation.

References

  • Babu, V. B. and Hooda B. K. (2018). Fuzzy Majority Approach for Modeling Spatial and Temporal Distributions of Daily Rainfall in Western Zone of Haryana. International Journal of Agricultural and Statistical Sciences, 14(1), 57-67.
  • Greenwood, J. A., Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability weighted moments: Definition and relation to parameters of several distributions expressible in inverse form. Water Resources Research, 15(5), 1049-1054.
  • Hosking, J. R. M. (1990). L-moments: Analysis and Estimation of Distributions Using Linear Combinations of Order Statistics. Journal of the Royal Statistical Society (Series B), 52(1), 105-124.
  • Hosking, J. R. M. and Wallis, J. R. (1993). Some statistics useful in regional frequency analysis. Water Resources Research, 29(2), 271-281.
  • Hosking, J. R. M. and Wallis, J. R. (1997). Regional frequency analysis: An approach based on L-Moments. Cambridge University Press, United Kingdom.
  • Hooda, B. K. (2006). Probability Analysis of Monthly Rainfall for Agricultural Planning At Hisar. Indian Journal of Soil Conservation, 34(1), 12-14.
  • Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability-weighted moments compared with some traditional techniques in estimating Gumbel parameters and quantiles. Water Resources Research, 15, 1055-1064.
  • Malekinezhad, H. and Garizi, A. Z. (2014). Regional frequency analysis of daily rainfall extremes using L-moments approach. Atmosfera, 27(4), 411-427.
  • Majumder A., Patil S. G., Noman M. D., and Biswas S. (2015). Application of L-moments for regional frequency analysis of maximum monthly rainfall in West Bengal, India. Mausam, 66(2), 273-280.
  • Nain, M. and Hooda B. K. (2019). Probability and Trend Analysis of Monthly Rainfall in Haryana. International Journal of Agricultural and Statistical Sciences, 15(1), 221-229.
  • Sahrin S., Ismail N., and Alias N. E. (2018). Regional frequency analysis on peninsular Malaysia using L-moments. Far East Journal of Mathematical Sciences (FJMS), 103(8), 1379-1398.

Extreme meteorological events, particularly intense rainfall, pose significant risks to human life, agriculture, and infrastructure. In states like Haryana, which is heavily reliant on agriculture, predicting the return periods of extreme rainfall is essential for designing resilient drainage systems, dams, highways, and bridges, as well as planning effective water resource management strategies. Without robust statistical modeling, infrastructure design can either be dangerously under-engineered (leading to failures) or uneconomically over-engineered.

In hydrological research, at-site frequency analysis often suffers from high sampling variability and instability, particularly when estimating return periods that exceed the available record lengths. To overcome these limitations, Regional Frequency Analysis (RFA) pools data from multiple hydrologically and climatologically homogeneous stations. This study reviews and applies an advanced L-moment-based RFA framework to 48 years (1970–2017) of maximum monthly rainfall data across 27 rain gauge stations in Haryana, India.

1. Core Methodology: The Power of L-Moments

Introduced by Hosking (1990), L-moments are linear combinations of ordered sample values. Unlike conventional moments (which square or cube data values, leading to extreme sensitivity to outliers and sample size bias), L-moments use linear weights. This makes them:

  • Highly robust to outliers and extreme values.
  • Unbiased and stable even for small sample sizes.
  • Exceptionally reliable for selecting and fitting extreme value distributions.

Probability Weighted Moments (PWMs)

L-moments are derived from Probability Weighted Moments (PWMs), defined by Greenwood et al. (1979). For a random variable X with cumulative distribution function F(x), the r-th PWM (denoted as βr) is given by:

βr = E[X {F(X)}r] = ∫01 x(F) Fr dF

Where x(F) is the inverse cumulative distribution (quantile) function, and r is a non-negative integer. Unbiased sample estimators br of βr are computed from an ordered sample X1:nX2:n ≤ ... ≤ Xn:n using:

br = n-1i=1n [ (i-1r) / (n-1r) ] Xi:n

L-Moments Definition

The first four L-moments (λr) are linear combinations of the PWMs:

  • L-Location (Mean): λ1 = β0
  • L-Scale: λ2 = 2β1 - β0
  • L-Skewness measure: λ3 = 6β2 - 6β1 + β0
  • L-Kurtosis measure: λ4 = 20β3 - 30β2 + 12β1 - β0

To characterize distributions independently of their scale, we define dimensionless L-moment ratios:

  • L-coefficient of variation (L-Cv, τ): τ = λ2 / λ1
  • L-coefficient of skewness (L-Cs, τ3): τ3 = λ3 / λ2
  • L-coefficient of kurtosis (L-Ck, τ4): τ4 = λ4 / λ2

2. Database and Initial Data Screening

The study utilizes maximum monthly rainfall data for the 48-year period (1970–2017) obtained from the National Data Centre, Indian Meteorological Department (IMD), Pune, covering 27 rain gauge stations in Haryana.

Before executing RFA, the assumptions of stationarity, randomness, and independence must be verified for all stations:

  • Stationarity: Tested using the Mann-Kendall trend test. Results showed that only 3 out of 27 sites (Karnal, Kaithal, and Bhiwani) had a statistically significant trend, meaning the regional maximum rainfall series can be treated as stationary.
  • Randomness: Tested using the Run test. Except for Rohtak, the rainfall series across all other sites were random.
  • Independence: Evaluated using the Autocorrelation Function (ACF). Only Rohtak and Kurukshetra showed significant autocorrelation at lag-1. Overall, it is highly reasonable to treat the data as time-independent and suitable for regional frequency analysis.
Station Name Mann-Kendall Trend (Tau) MK P-value Interpretation No. of Runs Run P-value
Sirsa-0.0240.810No Trend240.771
Narwana-0.1080.282No Trend200.145
Hisar-0.1260.210No Trend240.770
Karnal0.2850.005Trend180.054
Ambala-0.1620.106No Trend220.381
Jhajjar-0.1550.126No Trend200.233
Hansi-0.1430.060No Trend251.000
Sonipat-0.1600.112No Trend220.243
Rohtak-0.1090.074No Trend160.008 (Not Random)
Panipat-0.1210.230No Trend190.080
Farukhnagar-0.1140.259No Trend200.145
Faridabad0.1010.315No Trend220.381
Kurukshetra-0.0050.810No Trend180.074
Mahendragarh-0.1410.160No Trend260.770
Kaithal-0.2960.003Trend210.243
Khol0.0290.776No Trend240.780
Palwal-0.1640.110No Trend150.710
Bhiwani-0.2460.017Trend300.074
Tohana-0.0780.439No Trend251.000
Sohana-0.1530.129No Trend260.770
Bawal-0.0250.810No Trend200.145
Jagadhari0.1140.255No Trend210.243
Dujana-0.0410.693No Trend180.074
Salhawas-0.1760.080No Trend220.381
Nuh-0.0310.763No Trend200.145
Kalka-0.1960.053No Trend190.136
Beri-0.0120.915No Trend220.381
Table 1: Data Screening Results (Mann-Kendall Trend and Run Tests)

3. L-Moments and Station-Wise Characteristics

For each of the 27 sites, sample L-moments and L-moment ratios were computed. The values represent the mean maximum monthly rainfall (in mm), L-coefficient of variation (L-Cv), L-skewness (L-Cs), and L-kurtosis (L-Ck).

Station Mean (mm) L-Cv (τ) L-Cs (τ3) L-Ck (τ4)
Sirsa154.330.2700.1530.177
Narwana200.0210.2900.1530.084
Hisar167.8630.2490.1150.176
Karnal278.3560.2240.0970.071
Ambala297.7770.1850.2080.250
Jhajjar239.7390.2710.1300.047
Hansi111.7270.3120.2680.137
Sonipat261.4870.2540.1660.132
Rohtak214.8030.2760.1000.076
Panipat210.9580.2620.1430.099
Farukhnagar191.8560.3440.1970.217
Faridabad256.2240.2440.2050.216
Kurukshetra225.4200.2970.2220.116
Mahendragarh168.7080.3030.2360.238
Kaithal217.8580.2740.1410.067
Khol141.0790.3560.1690.161
Palwal211.0580.2570.3180.309
Bhiwani145.8720.2700.1720.096
Tohana151.3230.2830.1150.140
Sohana225.1580.2610.1490.100
Bawal237.7580.2130.1120.217
Jagadhari370.5040.2510.2890.241
Dujana209.3150.3080.1610.132
Salhawas167.5790.3470.2950.263
Nuh257.6270.2640.1670.215
Kalka386.5810.2340.1530.212
Beri206.2230.3220.1830.109
Table 2: Sample L-Moments and L-Moment Ratios for 27 Haryana Stations

4. Formation and Validation of Homogeneous Regions

To define homogeneous regions, the mean monthly rainfall values were subjected to hierarchical cluster analysis (Ward's Method). The Elbow Method (analyzing the within-cluster sum of squares) indicated that the optimal number of regions is three.

  • Region I (Wet/Semi-humid zone - 4 stations): Ambala, Karnal, Jagadhari, and Kalka.
  • Region II (Dry/Semi-arid zone - 13 stations): Sirsa, Hansi, Farukhnagar, Faridabad, Mahendragarh, Khol, Palwal, Bhiwani, Tohana, Sohana, Dujana, Salhawas, and Beri.
  • Region III (Central/Transition zone - 10 stations): Hisar, Sonipat, Rohtak, Nuh, Jhajjar, Bawal, Panipat, Kurukshetra, Narwana, and Kaithal.

Discordancy Test (Di)

The discordancy measure Di (Hosking and Wallis, 1993) is a scaled Mahalanobis distance in a 3D space of L-moments (L-Cv, L-Cs, and L-Ck). A site is considered discordant if its Di exceeds the critical value (which is 3.0 for regions with ≥15 sites, and smaller for smaller regions, as shown in the table below).

No. of Sites (N) Critical Di No. of Sites (N) Critical Di
51.33102.49
61.65112.63
71.92122.76
82.14132.87
92.33142.97
≥153.00
Table 3: Critical Discordancy Values (Di) based on Region Size

Applying the discordancy test to our 3 homogeneous regions yielded the following site-specific discordancy values and regional average L-moments:

Region Station Name Discordancy Di Regional L-Moments
Region I
(N = 4)
Ambala1.00 L-Cv (τ) = 0.2237
L-Cs (τ3) = 0.1869
L-Ck (τ4) = 0.1935
Karnal1.00
Jagadhari1.00
Kalka1.00
Region II
(N = 13)
Sirsa0.64 L-Cv (τ) = 0.3004
L-Cs (τ3) = 0.1985
L-Ck (τ4) = 0.1724
Hansi1.97
Farukhnagar0.97
Faridabad0.96
Mahendragarh0.32
Khol1.12
Palwal2.15
Bhiwani0.89
Tohana0.94
Sohana0.82
Dujana0.22
Salhawas1.36
Beri0.64
Region III
(N = 10)
Hisar0.72 L-Cv (τ) = 0.2648
L-Cs (τ3) = 0.1446
L-Ck (τ4) = 0.1232
Sonipat0.77
Rohtak1.40
Nuh1.53
Jhajjar0.79
Bawal1.85
Panipat0.24
Kurukshetra1.79
Narwana0.54
Kaithal0.36
Table 4: Discordancy and Regional L-Moments across Haryana Regions

Since all computed Di values are strictly less than their respective regional critical bounds, no stations were flagged as discordant. This confirms that the regional clustering is robust and mathematically valid.

5. Regional Distribution Selection: Z-Statistic Goodness-of-Fit

Five candidate probability distributions were evaluated for each region using L-moment ratio diagrams and the Z-statistic goodness-of-fit measure (ZDIST). The candidate distributions were: Generalized Logistic (GLO), Generalized Extreme Value (GEV), Generalized Pareto (GPA), Generalized Normal (GNO), and Pearson Type-3 (PE3).

The goodness-of-fit measure is defined as:

ZDIST = [ τ4DIST - τ_bar4 + B4 ] / S4

Where τ4DIST is the L-kurtosis of the fitted candidate distribution, τ_bar4 is the regional average sample L-kurtosis, B4 is the bias, and S4 is the standard deviation of τ_bar4 obtained via Monte Carlo simulations (usually 500+ trials). The fit is deemed acceptable if |ZDIST| ≤ 1.64 (at the 90% confidence level). If multiple models pass, the one with the smallest |ZDIST| is selected as the best-fit distribution.

Region Distribution Z-Statistic Value Location (ξ) Scale (α) Shape (k / γ) Fit Status
Region I GLO** -0.10 0.93240.2111-0.1869 Best Fit
GEV*-1.180.80990.3149-0.0262Satisfactory
GNO*-1.390.92540.3727-0.3856Satisfactory
Region II GLO*1.320.90380.2813-0.1985Satisfactory
GEV** -0.72 0.74140.4154-0.0439 Best Fit
GNO*-1.190.89390.4964-0.4100Satisfactory
Region III GEV*1.200.78660.39580.0398Satisfactory
GNO*1.080.93120.4523-0.2974Satisfactory
PE3** 0.44 1.00000.48080.8800 Best Fit
Table 5: Z-Statistics and Regional Parameters (* Satisfactory, ** Best-fitted)

6. Regional Growth Curves and Rainfall Quantile Estimates

Using the **index-flood method**, the regional growth curve q(F) for each homogeneous region is calculated using the best-fit distribution parameters. The site-specific rainfall quantile at return period T (non-exceedance probability F = 1 - 1/T) is then computed as:

Qi(F) = μi × q(F)

Where μi is the site-specific mean maximum monthly rainfall (the index flood). Table 6 presents the regional quantiles (in mm) scaled for a site with the average regional mean, and Table 7 details the station-wise estimated rainfall depths for various return periods (T = 2 to 100 years).

Region T = 2 yrs (F=0.5) T = 5 yrs (F=0.8) T = 10 yrs (F=0.9) T = 20 yrs (F=0.95) T = 50 yrs (F=0.98) T = 100 yrs (F=0.99) T = 200 yrs (F=0.995)
Region I (GLO)310.38421.61501.54586.46712.67822.24945.79
Region II (GEV)161.75250.49311.58372.12453.63516.71581.59
Region III (PE3)207.68306.16367.12422.50490.61539.52586.64
Table 6: Regional Quantile Estimates (mm) for Haryana Homogeneous Regions
Region Station T = 2 yrs T = 5 yrs T = 10 yrs T = 20 yrs T = 50 yrs T = 100 yrs
Region I
(GLO)
Ambala277.53376.99448.45524.38637.24735.21
Karnal259.43352.40419.20490.19595.68687.26
Jagadhari345.31469.06557.98652.46792.88914.77
Kalka360.29489.41582.19680.77827.28954.47
Region II
(GEV)
Sirsa139.18214.55265.42314.89379.78429.26
Hansi100.89155.52192.39228.26275.30311.16
Farukhnagar173.25267.06330.38391.96472.73534.32
Faridabad231.37356.66441.22523.47631.34713.58
Mahendragarh152.34234.84290.51344.67415.70469.85
Khol127.39196.38242.94288.22347.62392.91
Palwal190.58293.79363.44431.19520.04587.79
Bhiwani119.03183.48226.98269.30324.79367.10
Tohana132.24203.86252.18299.19360.85407.86
Sohana192.26296.38366.64434.99524.63592.97
Dujana189.01291.37360.44427.63515.75582.94
Salhawas151.32233.27288.57342.36412.92466.71
Beri186.22287.06355.12421.31508.13574.33
Region III
(PE3)
Hisar156.11230.14275.97317.60368.80405.56
Sonipat243.18358.50429.88494.73574.49631.75
Rohtak199.77294.49353.14406.41471.92518.96
Nuh239.59353.21423.54487.43566.01622.43
Jhajjar222.96328.68394.13453.59526.71579.21
Bawal221.12325.97390.87449.84522.36574.42
Panipat196.19289.22346.81399.13463.47509.67
Kurukshetra209.64309.05370.59426.49495.25544.61
Narwana186.02274.23328.84378.44439.45483.25
Kaithal202.61298.68358.16412.19478.63526.34
Table 7: Site-Specific Quantile Estimates (mm) for Rainfall return periods

7. Code Tutorial: Implementing L-Moments in Python and R

To enable researchers to perform these calculations, we provide two ready-to-use snippets demonstrating L-moment estimation and extreme-value fitting.

R Script (Using the `lmom` Package)

# Install and load the lmom library
if (!requireNamespace("lmom", quietly = TRUE)) install.packages("lmom")
library(lmom)

# Example: Maximum monthly rainfall data for a station
rainfall_data <- c(150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250)

# 1. Compute sample L-moments (L1, L2, L3, L4)
sam_lmom <- samlmu(rainfall_data)
cat("Sample L-Moments:\n")
print(sam_lmom)

# 2. Extract L-Cv, L-Cs (t_3), L-Ck (t_4)
# Note: samlmu returns L-location, L-scale, L-skewness (t_3), L-kurtosis (t_4), etc.
l_cv <- sam_lmom[2] / sam_lmom[1]
cat("L-Cv:", l_cv, "\nL-Cs (t_3):", sam_lmom[3], "\nL-Ck (t_4):", sam_lmom[4], "\n")

# 3. Fit a Generalized Extreme Value (GEV) distribution
gev_params <- pelgev(sam_lmom)
cat("\nFitted GEV Parameters:\n")
print(gev_params)

# 4. Estimate quantiles for T = 10, 50, and 100 years
return_periods <- c(10, 50, 100)
probabilities <- 1 - 1 / return_periods
quantiles <- quagev(probabilities, gev_params)

# Display results
results <- data.frame(ReturnPeriod_Yrs = return_periods, Quantile_mm = quantiles)
print(results)

Python Script (Using the `lmoments3` Package)

import numpy as np
# Note: install via: pip install lmoments3
import lmoments3 as lm
from lmoments3 import distr

# Example: Maximum monthly rainfall data
rainfall_data = [150, 220, 180, 290, 110, 310, 420, 95, 130, 210, 175, 250]

# 1. Compute sample L-moments and ratios
lmom_ratios = lm.lmom_ratios(rainfall_data, nmom=4)
print("Sample L-moments and Ratios:")
print(f"Mean (L1): {lmom_ratios[0]:.4f}")
print(f"L-scale (L2): {lmom_ratios[1]:.4f}")
print(f"L-skewness (t3): {lmom_ratios[2]:.4f}")
print(f"L-kurtosis (t4): {lmom_ratios[3]:.4f}")

# 2. Fit a Generalized Extreme Value (GEV) distribution
fitted_gev = distr.gev.lmom_fit(rainfall_data)
print(f"\nFitted GEV Parameters: {fitted_gev}")

# 3. Compute return level quantiles for T = 10, 50, and 100 years
return_periods = [10, 50, 100]
for T in return_periods:
    F = 1 - 1 / T
    quantile = distr.gev.ppf(F, **fitted_gev)
    print(f"T = {T:3d} years (F = {F:.2f}) -> Quantile: {quantile:.2f} mm")

8. Agricultural and Engineering Implications

The results of this regional study have critical applications for the development and policy planning of Haryana:

  • Hydraulic Structures: For Region I (Wet zone, fitted to GLO), designs must accommodate larger return-period rainfall quantities, where a 100-year event can exceed 950 mm in Kalka.
  • Agricultural Drainage: In Region II (Dry zone, GEV) and Region III (Central zone, PE3), drainage infrastructure must cope with 50-year rainfall events ranging from 270 mm to 570 mm depending on the exact location. Over-designing can waste valuable rural infrastructure budget, while under-designing can cause widespread waterlogging of sensitive agricultural crops, ruining seasonal yields.
  • Water Harvesting: Estimating return levels helps calculate maximum design inflows for farm ponds, reservoirs, and check dams, helping farmers store surplus rainwater for dry season irrigation.

References

  • Babu, V. B. and Hooda B. K. (2018). Fuzzy Majority Approach for Modeling Spatial and Temporal Distributions of Daily Rainfall in Western Zone of Haryana. International Journal of Agricultural and Statistical Sciences, 14(1), 57-67.
  • Greenwood, J. A., Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability weighted moments: Definition and relation to parameters of several distributions expressible in inverse form. Water Resources Research, 15(5), 1049-1054.
  • Hosking, J. R. M. (1990). L-moments: Analysis and Estimation of Distributions Using Linear Combinations of Order Statistics. Journal of the Royal Statistical Society (Series B), 52(1), 105-124.
  • Hosking, J. R. M. and Wallis, J. R. (1993). Some statistics useful in regional frequency analysis. Water Resources Research, 29(2), 271-281.
  • Hosking, J. R. M. and Wallis, J. R. (1997). Regional frequency analysis: An approach based on L-Moments. Cambridge University Press, United Kingdom.
  • Hooda, B. K. (2006). Probability Analysis of Monthly Rainfall for Agricultural Planning At Hisar. Indian Journal of Soil Conservation, 34(1), 12-14.
  • Landwehr, J. M., Matalas, N. C., and Wallis, J. R. (1979). Probability-weighted moments compared with some traditional techniques in estimating Gumbel parameters and quantiles. Water Resources Research, 15, 1055-1064.
  • Malekinezhad, H. and Garizi, A. Z. (2014). Regional frequency analysis of daily rainfall extremes using L-moments approach. Atmosfera, 27(4), 411-427.
  • Majumder A., Patil S. G., Noman M. D., and Biswas S. (2015). Application of L-moments for regional frequency analysis of maximum monthly rainfall in West Bengal, India. Mausam, 66(2), 273-280.
  • Nain, M. and Hooda B. K. (2019). Probability and Trend Analysis of Monthly Rainfall in Haryana. International Journal of Agricultural and Statistical Sciences, 15(1), 221-229.
  • Sahrin S., Ismail N., and Alias N. E. (2018). Regional frequency analysis on peninsular Malaysia using L-moments. Far East Journal of Mathematical Sciences (FJMS), 103(8), 1379-1398.
Written by

Dr. B.K. Hooda

Professor of Statistics & Head, Dept. of Mathematics & Statistics, CCS HAU Hisar.

← Previous
The Multivariate Behrens-Fisher Problem: Comparing Mean Vectors under Unequal Covariances
Next →
Independent and Paired t-Test: Relative Efficiency and Critical Correlation Implications

Leave a Comment

Your email address will not be published.