Bangladesh Weather Dataset (1901 - 2023)
Weather Data from 1901 to 2023
@kaggle.yakinrubaiat_bangladesh_weather_dataset
Weather Data from 1901 to 2023
@kaggle.yakinrubaiat_bangladesh_weather_dataset
This README document provides detailed information about a dataset that combines temperature đĄī¸ and rainfall đ§ī¸ data. The temperature data is sourced from NASA's POWER Project, and the rainfall data is obtained from the Humanitarian Data Exchange (HDX) website, specifically focusing on Bangladesh rainfall data.
The dataset is a combination of the temperature and rainfall data, aligned by date to facilitate joint analysis. The key components are:
tem): Represents the monthly average temperature, presumably in degrees Celsius.rain): Indicates monthly total rainfall, presumably measured in millimeters.The dataset is structured into a CSV file with the following columns:
tem: Average temperature for the month.Month: The month for the data point, ranging from 1 (January) to 12 (December).Year: The year of the data point.rain: Total rainfall for the month.This dataset is particularly useful for studying climatic patterns, seasonal changes, and long-term climate trends. Applications include but are not limited to:
For specific queries related to the temperature or rainfall data, users should contact the respective data providers through their official communication channels provided on their websites.
@misc{rubaiat2023bangladeshweather,
author = {Rubaiat, Sajratul Yakin},
title = {Bangladesh Weather Dataset},
year = {2023},
publisher = {Kaggle},
url = {https://www.kaggle.com/datasets/yakinrubaiat/bangladesh-weather-dataset},
note = {Kaggle dataset}
}
CREATE TABLE sorted_temp_and_rain_dataset (
"tem" DOUBLE,
"month" BIGINT,
"year" BIGINT,
"rain" DOUBLE
);CREATE TABLE temp_and_rain (
"tem" DOUBLE,
"month" BIGINT,
"year" BIGINT,
"rain" DOUBLE
);Anyone who has the link will be able to view this.