Sea Forecast And Waves Classification
Sea Forecast and Waves Classification for Florianopolis beaches
@kaggle.saurabhshahane_sea_forecast_and_waves_classification
Sea Forecast and Waves Classification for Florianopolis beaches
@kaggle.saurabhshahane_sea_forecast_and_waves_classification
CREATE TABLE beach (
"idbeach" BIGINT,
"name" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"country" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE
);
CREATE TABLE day_forecast (
"iddayforecast" BIGINT,
"date" TIMESTAMP,
"sunrise" VARCHAR,
"sunset" VARCHAR,
"moonset" VARCHAR,
"moonrise" VARCHAR,
"moon_phase" VARCHAR,
"moon_illumination" BIGINT,
"maxtemp" BIGINT,
"mintemp" BIGINT,
"idbeach" BIGINT
);
CREATE TABLE fact_shape (
"id" BIGINT,
"wind_direction" VARCHAR,
"spot" VARCHAR,
"wind_speed" VARCHAR,
"fact_shape" VARCHAR,
"date" TIMESTAMP,
"description" VARCHAR,
"wide_probability" DOUBLE,
"barrel_probability" DOUBLE,
"closing_probability" DOUBLE,
"lineup_probability" DOUBLE,
"period" DOUBLE,
"swell_direction" VARCHAR,
"swell_size" VARCHAR
);
CREATE TABLE fact_size (
"id" BIGINT,
"wind_direction" VARCHAR,
"spot" VARCHAR,
"wind_speed" VARCHAR,
"fact_size" VARCHAR,
"date" TIMESTAMP,
"description" VARCHAR,
"flat_probability" DOUBLE,
"small_probability" DOUBLE,
"medium_probability" DOUBLE,
"big_probability" DOUBLE,
"biggest_probability" DOUBLE,
"period" DOUBLE,
"swell_direction" VARCHAR,
"swell_size" VARCHAR
);
CREATE TABLE fact_texture (
"id" BIGINT,
"wind_direction" VARCHAR,
"spot" VARCHAR,
"wind_speed" VARCHAR,
"fact_texture" VARCHAR,
"date" TIMESTAMP,
"description" VARCHAR,
"flat_probability" DOUBLE,
"frizzy_probability" DOUBLE,
"stirred_probability" DOUBLE,
"restless_probability" DOUBLE
);
CREATE TABLE hour_forecast (
"idhourforecast" BIGINT,
"iddayforecast" BIGINT,
"time" BIGINT,
"temperature" BIGINT,
"windspeed" BIGINT,
"winddirdegree" BIGINT,
"preciptation" DOUBLE,
"humidity" BIGINT,
"pressure" BIGINT,
"cloundover" BIGINT,
"heatindex" BIGINT,
"dewpoint" BIGINT,
"windchill" BIGINT,
"windgust" BIGINT,
"feelslike" BIGINT,
"sigheight" DOUBLE,
"swellheight" DOUBLE,
"swelldir" BIGINT,
"period" DOUBLE,
"watertemp" BIGINT
);
CREATE TABLE sea_condition_fact (
"idseaconditionfact" BIGINT,
"bulk" BIGINT,
"texture" BIGINT,
"shape" BIGINT,
"uniformity" BIGINT,
"score" BIGINT,
"date" TIMESTAMP,
"idspot" BIGINT
);
CREATE TABLE spot (
"idspot" BIGINT,
"name" VARCHAR,
"spot_dir_degree" DOUBLE,
"sand_size" BIGINT,
"idbeach" BIGINT
);
CREATE TABLE tide (
"idtide" BIGINT,
"iddayforecast" BIGINT,
"time" TIMESTAMP,
"height" DOUBLE,
"type" VARCHAR
);
Anyone who has the link will be able to view this.