This is a major release with new forecast functionality and breaking changes to wind data structure.
- Added MET Norway (Norwegian Meteorological Institute) forecast support with
get_metno_forecast()andget_metno_daily_forecast() - New vignette documenting forecast functionality and combining historical and forecast data
- Three new exported helper functions for advanced forecast data manipulation
- Wind data structure in
get_dpird_summaries()changed from long to wide format - Wind column names now include
_3mand_10msuffixes (e.g.,wind_max_speed_3m,wind_max_speed_10m) - Removed
wind_heightcolumn - Added new wind columns:
wind_max_dateandwind_max_time_of_dayfor each height - This change provides clearer data structure and eliminates issues with mixed-height rows
- Fixed critical timezone bug causing one-day gap when combining historical and forecast data
- Fixed wind time column parsing for mixed date/time formats
- Improved internal code structure with extracted helper functions (no user-facing impact)
- local macOS Sequoia 15.2, R 4.4.3
- GitHub Actions (ubuntu-latest, windows-latest, macOS-latest), R release and devel
There were no ERRORs or WARNINGs.
There was 1 NOTE:
* checking CRAN incoming feasibility ... NOTE
Maintainer: 'Rodrigo Pires <rodrigo.pires@dpird.wa.gov.au>'
The wind data structure change is a breaking change but necessary for several reasons:
- Previous long format with mixed heights per row caused data interpretation issues
- Aligns with common practices ie one row per observation with consistent column names
- All tests pass successfully
- New vignette provides examples for forecast functionality
- Migration guide included in NEWS.md for users upgrading from v2.x
- No changes to other API functions - only
get_dpird_summaries()wind data affected