Rome Italy Weather Data
Monthly Rome Italy Weather Data from 1951 to 2022
@kaggle.jarredpriester_rome_italy_weather_data
Monthly Rome Italy Weather Data from 1951 to 2022
@kaggle.jarredpriester_rome_italy_weather_data
This data is monthly temperature and precipitation data from Rome Italy from 1951 to 2022.
The data was taken at a weather station in Ciampino which is located just outside the city.
All measurements are in metric units
STATION - The station ID used by NOAA
NAME - The name of the station
LATITUDE - Latitude of the station
LONGITUDE - Longitude of the station
ELEVATION - elevation of the station
DATE - month of observation
DP01 - Number of days with >= 0.01 inch/0.254 millimeter in the month
DP10 - Number of days with >= 0.1 inch/2.54 millimeters in the month
DT32 - Number of days with minimum temperature <= 32 degrees Fahrenheit/0 degrees Celsius DX32 - Number of days with maximum temperature <= 32 degrees Fahrenheit/0 degrees Celsius DX90 - Number of days with maximum temperature >= 90 degrees Fahrenheit/32.2 degrees Celsius
PRCP - Precipitation in mm
TAVG - Average Temperature in Celsius
TMAX - Maximum Temperature in Celsius
TMIN - Minimum Temperature in Celsius
This dataset could be used for:
Applying machine learning for forecasting,
data visualization,
data cleaning,
using data to decide when to visit Rome 😎
CREATE TABLE roma_weather (
"station" VARCHAR,
"name" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"elevation" DOUBLE,
"date" VARCHAR,
"dp01" DOUBLE,
"dp10" DOUBLE,
"dt32" DOUBLE,
"dx32" DOUBLE,
"dx90" DOUBLE,
"prcp" DOUBLE,
"tavg" DOUBLE,
"tmax" DOUBLE,
"tmin" DOUBLE
);Anyone who has the link will be able to view this.