Over A Century Of Indian Climate Data (1901–2017)
Monthly, Seasonal, and Annual Observations of Temperature & Rainfall from the In
@kaggle.richard47_weather_india_from_1901_to_2017
Monthly, Seasonal, and Annual Observations of Temperature & Rainfall from the In
@kaggle.richard47_weather_india_from_1901_to_2017
CREATE TABLE sub_division_rainfall_india (
"subdivision" VARCHAR,
"year" BIGINT,
"jan" DOUBLE,
"feb" DOUBLE,
"mar" DOUBLE,
"apr" DOUBLE,
"may" DOUBLE,
"jun" DOUBLE,
"jul" DOUBLE,
"aug" DOUBLE,
"sep" DOUBLE,
"oct" DOUBLE,
"nov" DOUBLE,
"dec" DOUBLE,
"annual" DOUBLE,
"jf" DOUBLE,
"mam" DOUBLE,
"jjas" DOUBLE,
"ond" DOUBLE
);
CREATE TABLE mean_temp_india (
"year" BIGINT,
"jan" DOUBLE,
"feb" DOUBLE,
"mar" DOUBLE,
"apr" DOUBLE,
"may" DOUBLE,
"jun" DOUBLE,
"jul" DOUBLE,
"aug" DOUBLE,
"sep" DOUBLE,
"oct" DOUBLE,
"nov" DOUBLE,
"dec" DOUBLE,
"annual" DOUBLE,
"jan_feb" DOUBLE,
"mar_may" DOUBLE,
"jun_sep" DOUBLE,
"oct_dec" DOUBLE
);
Anyone who has the link will be able to view this.