Changelog
Source:NEWS.md
worldmet (development version)
Bug Fixes
fix join problem due to dplyr updates.
fix spelling mistakes
worldmet 0.9.6
CRAN release: 2022-10-05
New Features
importNOAA()
will now display a progress bar when multiple years of met data are to be imported.Improved the formatting of the popups in
getMeta()
in line withopenairmaps::networkMap()
.Added the
provider
argument togetMeta()
, allowing for users to define one or moreleaflet
basemaps. Uses the same default asopenairmaps::networkMap()
.exportADMS()
now invisibly returns the input data, in line with, e.g.,readr::write_csv()
.
worldmet 0.9.5
CRAN release: 2021-04-20
Bug Fixes
do not add precip to
exportADMS()
Cloud cover data mostly spans 1 to 8 Oktas and no zero (clear sky); use
ceil_hgt = 220000
(unlimited) to indicate clear sky when cloud cover is reported as missing.Do not use ftp for site information.
worldmet 0.9.4
CRAN release: 2021-04-09
Bug Fixes
- Fix precipitation. The
precip_12
gives the sum of the precipitation over the past 12 hours and the sum of this column should be the annual total in mm.precip
spreads the 12-hour total evenly across the previous 12 hours. worldmet no longer tries to combine 12 and 6 hour totals.
worldmet 0.9.3
CRAN release: 2021-03-29
Bug Fixes
- Catch missing data error and report missing when importing data using
importNOAA()
worldmet 0.9.2
CRAN release: 2020-09-17
New Features
- Exporting
weatherCodes
so that everything works when used by other packages through “explicit namespacing”” (e.g.worldmet::importNOAA()
) without having tolibrary(worldmet)
.
worldmet 0.9.1
New Features
- Significant changes due to NOAA storage formats and different storage locations
- Remove options for precipitation and present weather in
importNOAA()
; just return everything - Return data as tibble
worldmet 0.8.8
CRAN release: 2020-02-12
New Features
- export
getMetaLive()
to allow users direct access to all meta data and easy re-use without re-downloading. - add option
path
to allow users to save met data as an rds file. - deprecate
fresh
option ingetMeta()
. - Assume
9999
is missing for visibility (was999999
)
worldmet 0.8.4
CRAN release: 2018-02-27
New Features
- query live meta data when using
getMeta()
- parallel processing for sites and years
- use
read_csv()
for meta data (read.csv()
seems very slow in R 3.4.3)
worldmet 0.8.0
CRAN release: 2017-12-18
New Features
- downloads now from webserver rather than ftp. Should be faster and allow more downloads. Thanks to Stuart Grange.
- add parallel processing using foreach
worldmet 0.7.4
Bug Fixes
- don’t use
closeAllConnections()
worldmet 0.6
New Features
- Add ability to return precipitation measurements, if available.
- Add precipitation to
exportADMS()