Wunderground PWS Curitiba 2021
Weather data from Wunderground Personal Weather Stations near Curitiba, Brazil
@kaggle.lucashohmann_wunderground_pws_curitiba_2021
Weather data from Wunderground Personal Weather Stations near Curitiba, Brazil
@kaggle.lucashohmann_wunderground_pws_curitiba_2021
CREATE TABLE stations (
"unnamed_0" BIGINT,
"station_id" VARCHAR,
"name" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"altitude" BIGINT,
"country" VARCHAR,
"state" VARCHAR,
"city" VARCHAR,
"hardware" VARCHAR,
"software" VARCHAR,
"par_temp" BOOLEAN,
"par_temp_feel" BOOLEAN,
"par_dew_point" BOOLEAN,
"par_humidity" BOOLEAN,
"par_pressure" BOOLEAN,
"par_wind_speed" BOOLEAN,
"par_wind_gust" BOOLEAN,
"par_wind_bearing" BOOLEAN,
"par_wind_direction" BOOLEAN,
"par_precip_rate" BOOLEAN,
"par_precip_total" BOOLEAN,
"par_uv_index" BOOLEAN,
"par_radiation" BOOLEAN
);
CREATE TABLE wunderground_pws (
"station_id" VARCHAR,
"last_updated" BIGINT,
"timestamp" BIGINT,
"temp" DOUBLE,
"temp_feel" DOUBLE,
"dew_point" DOUBLE,
"humidity" BIGINT,
"pressure" DOUBLE,
"wind_speed" DOUBLE,
"wind_gust" DOUBLE,
"wind_direction" VARCHAR,
"wind_bearing" BIGINT,
"precip_rate" DOUBLE,
"precip_total" DOUBLE,
"uv_index" DOUBLE,
"radiation" DOUBLE
);
Anyone who has the link will be able to view this.