diff --git a/DESCRIPTION b/DESCRIPTION index 99ba50313df997321b057c9a018b428dee5adf91..fa9b0be2e353cb6d46b16dbee2a4108d300ba1c1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: s2dverification Title: Set of Common Tools for Forecast Verification -Version: 2.9.0 +Version: 2.10.0 Authors@R: c( person("BSC-CNS", role = c("aut", "cph")), person("Virginie", "Guemas", , "virginie.guemas@bsc.es", role = "aut"), @@ -55,7 +55,7 @@ Imports: Suggests: easyVerification, testthat -License: LGPL-3 +License: Apache License 2.0 URL: https://earth.bsc.es/gitlab/es/s2dverification/-/wikis/home BugReports: https://earth.bsc.es/gitlab/es/s2dverification/-/issues LazyData: true diff --git a/NEWS.md b/NEWS.md index 5e12423059279e6f35db1e21f75cdca9a692ca7e..73ad3e02887a7ac95a2d9cc002071de5eef39559 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,13 @@ +# s2dverification 2.10.0 (Release date: 2021-06-15) +- Load(): Remove the last development for the first time step +- Load(): Modify the regrid criteria for the condition that only one data is retrieved and grid is specified and the data grids need to shift (e.g., first lon is 0.5 rather than 0.). Load() regrids the data as long as grid is specified. +- CDORemap(): able to transform irregular curvilinear grids to regular grids. +- StatsSeasAtlHurr(): Fix the statement & to | +- EOF(): Add check for NA handling to ensure the correct result +- PlotEquiMap(): Add parameter 'lake_color', 'contour_draw_label', 'lab_dist_x', and 'lab_dist_y' +- PlotEquiMap(): Bugfix of argument contour_label_scale; Fix the problem that the border grids were plotted half only +- PlotStereoMap(): Bugfix of dots feature; Add contour and arrow features + # s2dverification 2.9.0 (Release date: 2020-10-30) - Correct the time retrieval in Load() when start date and the first lead time in netCDF file do not match. In addition, when the lead time in each data set is not consistent, the retrieved data should change according to diff --git a/R/zzz.R b/R/zzz.R new file mode 100644 index 0000000000000000000000000000000000000000..ffae1da476c32ddfe16bfbf938afe7c0a7dca35d --- /dev/null +++ b/R/zzz.R @@ -0,0 +1,3 @@ +.onAttach <- function(libname, pkgname){ + packageStartupMessage("Warning: This package has been deprecated. Please consider using the package 's2dv' instead.") +} diff --git a/s2dverification-manual.pdf b/s2dverification-manual.pdf index 67373123d612604dcdd3746f955af9a30fe4f665..150ed6359212b3979fbf89c5523372f4147d7e18 100644 Binary files a/s2dverification-manual.pdf and b/s2dverification-manual.pdf differ