From 13185d8188fb8bef6160b4d779040fa66476cb7c Mon Sep 17 00:00:00 2001 From: bczernecki Date: Wed, 23 Aug 2023 14:03:37 +0200 Subject: [PATCH] thunder 1.1.2 --- DESCRIPTION | 2 +- NEWS.md | 4 ++++ tests/testthat/test-get_sounding.R | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 925e97c..70f7f6a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: thunder Type: Package Title: Computation and Visualisation of Atmospheric Convective Parameters -Version: 1.1.1 +Version: 1.1.2 Authors@R: c(person("Bartosz", "Czernecki", email = "nwp@amu.edu.pl", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-6496-1386")), diff --git a/NEWS.md b/NEWS.md index 8bbe7a1..9930564 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# thundeR 1.1.2 + +* Allowing to keep NA values in `get_sounding()` which might be not harmful if missing data occur on higher altitudes + # thundeR 1.1.1 * Improvements in C++ algorithm responsible for more accurate computations of parcel trajectories and related thermodynamic indices diff --git a/tests/testthat/test-get_sounding.R b/tests/testthat/test-get_sounding.R index fbd0a95..efe24d7 100644 --- a/tests/testthat/test-get_sounding.R +++ b/tests/testthat/test-get_sounding.R @@ -6,7 +6,7 @@ test_that("Downloading sounding profile", { dd = 20, hh = 12) - expect_equal(nrow(profile), 72) + expect_equal(nrow(profile), 73) expect_true(is.data.frame(profile)) })