weatherOz 3.0.0

Major release - New forecast functionality, breaking changes to wind data structure, and critical bug fixes

Breaking changes

Wind data structure changed in get_dpird_summaries()

Wind data is now returned in wide format with separate columns for each measurement height instead of long format with a wind_height column.

Before (v2.0.2 and earlier):

# multiple rows per station/date
wind_height                    # column indicating 3m or 10m
wind_avg_speed                 # single column
wind_max_speed                 # single column
wind_max_time                  # single column
wind_max_direction_degrees
wind_max_direction_compass_point

After (v3.0.0):

# single row per station/date
wind_avg_speed_3m              # separate column for 3m height
wind_avg_speed_10m             # separate column for 10m height
wind_max_speed_3m
wind_max_speed_10m
wind_max_time_3m
wind_max_time_10m
wind_max_date_3m               # NEW: date component
wind_max_date_10m              # NEW: date component
wind_max_time_of_day_3m        # NEW: time-of-day component
wind_max_time_of_day_10m       # NEW: time-of-day component
wind_max_direction_degrees_3m
wind_max_direction_degrees_10m
wind_max_direction_compass_point_3m
wind_max_direction_compass_point_10m

Agricultural bulletin functions removed

get_ag_bulletin() and parse_ag_bulletin() have now been removed from the package in v3.0.0.

New features

MET Norway forecast support

Bug fixes

Critical: Fixed one-day gap between historical and forecast data

When combining historical data (SILO/DPIRD) with MET Norway forecast data, there was a missing day causing a discontinuous timeline due to a timezone double-conversion bug in metno_resample_data_table().

MET.NO cache and fix

Wind data parsing improvements

Code improvements

Internal function refactoring

Extracted helper functions from get_dpird_summaries() (no user-facing changes):

Documentation

weatherOz 2.0.2

CRAN Re-submission - Maintenance release addressing archival issues

Bug fixes

Additional fixes and improvements:

weatherOz 2.0.1

Minor changes

Bug fixes

Breaking changes

Bug fixes

Additional fixes and improvements:

weatherOz 1.0.0.9000

Bug Fixes

weatherOz 1.0.0

Major Changes

Bug Fixes

weatherOz 0.0.1