Weather Data Associated With Sugarcane And Sugar Beet Processing Seasons And Facilities In The United States
Department of Agriculture
@usgov.usda_gov_weather_associated_with_sugarcane_and_sugar_b_6000f1f2
Department of Agriculture
@usgov.usda_gov_weather_associated_with_sugarcane_and_sugar_b_6000f1f2
This data is a collection of publicly available weather data for sugarcane and sugar beet processing facilities in the U.S. Sugarcane weather parameters include high temperature, low temperature, dew point, relative humidity, rain, and wind for the preceding day ("D-1") and current day ("D") associated with the given date. Sugar beet weather includes high temperature, low temperature, and precipitation for the given date. This data is used on conjunction with studies of sugar crop processing parameters, to explore influences that weather conditions have on sugarcane and sugar beet factory manufacturing productivity and raw sugar quality. Publications will be linked when available. This work is supported by USDA-ARS (Southern Regional Research Center), the American Sugar Cane League, and the Beet Sugar Development Foundation.
Organization: Department of Agriculture
Last updated: 2025-10-02T22:09:57.367941
Tags: raw-sugar, sugar-beet, sugarcane, weather
CREATE TABLE sugar_crops_weather_beet (
"date" TIMESTAMP,
"max_temp" DOUBLE,
"min_temp" BIGINT,
"precipitation" DOUBLE,
"location" VARCHAR
);CREATE TABLE sugar_crops_weather_cane (
"date" TIMESTAMP,
"d_1_high_temp" BIGINT,
"d_1_low_temp" BIGINT,
"d_1_dew_point" DOUBLE,
"d_1_rel_hum" DOUBLE,
"d_1_rain" DOUBLE,
"d_1_wind" DOUBLE,
"d_high_temp" BIGINT,
"d_low_temp" BIGINT,
"d_dew_point" DOUBLE,
"d_rel_hum" DOUBLE,
"d_rain" DOUBLE,
"d_wind" DOUBLE,
"location" VARCHAR
);Anyone who has the link will be able to view this.