Temperature Data For Some Cities Ghana
Temperature data records for some Ghanaian cities collected over time (decades)
@kaggle.quarshiea_temperature_data_for_some_cities_ghana
Temperature data records for some Ghanaian cities collected over time (decades)
@kaggle.quarshiea_temperature_data_for_some_cities_ghana
If you are familiar with Ghanaian temperatures, you must know that is averagely a warm or relatively hot country. Do you ever wonder how the average temperatures have been over time and how the climate has changed with it? This is a dataset for two cities, Accra and Kumasi with their temperatures collected over time.
This dataset is as said the average monthly temperatures for both cities collected over time. This allows you to perform data analysis with the time-series data and forecast where those two cities' climate are headed with machine learning.
The content of the data is provided by NOAA GHCN V4 and then processed by NASA's GISTEMP V4.
The data files contain the cities' temperatures for the stations named in the files (Accra & Kumasi). The temperatures are the average for every month in the years collected. Some measurements are calculated in the dataset; metANN and D-J-F. No information is provided for these fields and it is better to refer to NASA GISTEMP for more information on it.
These datasets are provided through NASA's GISTEMP V4 and recorded by NOAA GHCN V4.
CREATE TABLE station_accra (
"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,
"d_j_f" DOUBLE,
"m_a_m" DOUBLE,
"j_j_a" DOUBLE,
"s_o_n" DOUBLE,
"metann" DOUBLE
);CREATE TABLE station_kumasi (
"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,
"d_j_f" DOUBLE,
"m_a_m" DOUBLE,
"j_j_a" DOUBLE,
"s_o_n" DOUBLE,
"metann" DOUBLE
);Anyone who has the link will be able to view this.