Daily Rainfall Data - India (2009-2024)
India's 15-year rainfall trends — Daily Data for Every State & Union Territory
@kaggle.wydoinn_daily_rainfall_data_india_2009_2024
India's 15-year rainfall trends — Daily Data for Every State & Union Territory
@kaggle.wydoinn_daily_rainfall_data_india_2009_2024
This dataset provides 15+ years of daily rainfall data across all Indian states and union territories, from January 2009 to July 2024. It has been sourced from the official India Water Resources Information System (India-WRIS) and is ideal for climate research, weather prediction, and agricultural analytics.
The dataset includes:
Column | Description |
---|---|
id |
Unique record identifier |
date |
Observation date (YYYY-MM-DD ) |
state_code |
Numerical code for state/UT |
state_name |
Name of state or union territory |
actual |
Actual rainfall recorded (in mm) |
rfs |
Rainfall forecast value (in mm) |
normal |
Historical average rainfall (in mm) |
deviation |
% Deviation from normal rainfall |
India Water Resources Information System (WRIS)
CREATE TABLE daily_rainfall_at_state_level (
"id" BIGINT,
"date" TIMESTAMP,
"state_code" BIGINT,
"state_name" VARCHAR,
"actual" DOUBLE,
"rfs" DOUBLE,
"normal" DOUBLE,
"deviation" DOUBLE
);
Anyone who has the link will be able to view this.