Weather Data In Austin - 2016
Weather data for Austin in 2016
@kaggle.luca31394_weather_data_in_austin_2016
Weather data for Austin in 2016
@kaggle.luca31394_weather_data_in_austin_2016
Weather data are very important in data science for assessing different types of problems.
For example in Energy it's very important to have weather data to be able to develop predicting models on time series.
CREATE TABLE austinweather16 (
"localhour" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"tz_offset" BIGINT,
"summary" VARCHAR,
"ozone" DOUBLE,
"ozone_error" VARCHAR,
"temperature" DOUBLE,
"temperature_error" DOUBLE,
"dew_point" DOUBLE,
"dew_point_error" VARCHAR,
"humidity" DOUBLE,
"humidity_error" VARCHAR,
"visibility" DOUBLE,
"visibility_error" VARCHAR,
"apparent_temperature" DOUBLE,
"apparent_temperature_error" VARCHAR,
"pressure" DOUBLE,
"pressure_error" VARCHAR,
"wind_speed" DOUBLE,
"wind_speed_error" VARCHAR,
"cloud_cover" DOUBLE,
"cloud_cover_error" VARCHAR,
"wind_bearing" BIGINT,
"precip_intensity" DOUBLE,
"precip_intensity_error" VARCHAR,
"precip_probability" DOUBLE,
"precip_type" VARCHAR
);Anyone who has the link will be able to view this.