Skip to content

Commit

Permalink
Merge pull request #40 from bczernecki/thunder-ver0_3_0
Browse files Browse the repository at this point in the history
thundeR ver. 0.3.0
  • Loading branch information
bczernecki authored Feb 19, 2022
2 parents 00a5655 + 8c8c06c commit 9e80b51
Show file tree
Hide file tree
Showing 110 changed files with 657 additions and 8,108 deletions.
4 changes: 4 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ LICENSE.md
_pkgdown.yml
docs
pkgdown
.Rhistory
^doc$
^Meta$
CITATION.cff
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ src/*.dll
inst/doc
.DS_Store
thunder.Rproj
tests/testthat/Rplots.pdf
tests/testthat/Rplots.pdf
docs/
doc
Meta
15 changes: 15 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
cff-version: 1.1.0
message: "If you use this software, please cite it as below."
authors:
- family-names: Czernecki
given-names: Bartosz
orcid: 0000-0001-6496-1386
- family-names: Taszarek
given-names: Mateusz
orcid: 0000-0001-9578-5872
- family-names: Szuster
given-names: Piotr
orcid: 0000-0001-7937-8046
title: "thundeR - Computation and Visualisation of Atmospheric Convective Parameters"
version: 0.3.0
date-released: 2022-02-19
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: thunder
Type: Package
Title: Computation and Visualisation of Atmospheric Convective Parameters
Version: 0.1.0
Version: 0.3.0
Authors@R: c(person("Bartosz", "Czernecki", email = "nwp@amu.edu.pl", role = c("aut", "cre"),comment = c(ORCID = "0000-0001-6496-1386")),
person("Mateusz", "Taszarek", email = "mateusz.taszarek@noaa.gov", role = c("aut"),comment = c(ORCID = "0000-0001-9578-5872")),
person("Piotr", "Szuster", email = "retsuz@gmail.com", role = c("aut"), comment = c(ORCID = "0000-0001-7937-8046")),
Expand Down
999 changes: 527 additions & 472 deletions R/sounding_plot.R

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion R/sounding_wind.R
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ sounding_wind = function(pressure, ws, ptop = 100, yaxs = TRUE, ...){

data$x1 = round(data$x)

data = dplyr::left_join(data, cols)
data = suppressMessages(dplyr::left_join(data, cols))

# clipping data beyond the ptop
data = data[data$y < ymin, ]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

<!-- badges: start -->
[![R-CMD-check](https://github.com/bczernecki/thunder/workflows/R-CMD-check/badge.svg)](https://github.com/bczernecki/thunder/actions)
[![Codecov test coverage](https://app.codecov.io/gh/bczernecki/thunder/branch/devel/graph/badge.svg)](https://app.codecov.io/gh/bczernecki/thunder)
[![Codecov test coverage](https://codecov.io/gh/bczernecki/thunder/branch/master/graph/badge.svg)](https://app.codecov.io/gh/bczernecki/thunder?branch=master)
[![CRAN status](https://www.r-pkg.org/badges/version/thunder)](https://cran.r-project.org/package=thunder)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/thunder)](https://cran.r-project.org/package=thunder)
[![](http://cranlogs.r-pkg.org/badges/grand-total/thunder?color=brightgreen)](https://cran.r-project.org/package=thunder)
<!-- badges: end -->



**`thundeR`** is a freeware R package and collection of functions for rapid computation and visualisation of convective parameters commonly used in the operational forecasting of severe convective storms. Core algorithm is based on C++ code implemented into R language via RCPP. This solution allows to compute over 100 thermodynamic and kinematic parameters in less than 0.02s per profile and process large datasets such as reanalyses or operational NWP models in a reasonable amount of time. Package has been developed since 2017 by research meteorologists specializing in severe convective storms and is constantly updated with new features.
**`thundeR`** is a freeware R package and collection of functions for rapid computation and visualisation of convective parameters commonly used in the operational forecasting of severe convective storms. Core algorithm is based on C++ code implemented into R language via `Rcpp`. This solution allows to compute over 100 thermodynamic and kinematic parameters in less than 0.02s per profile and process large datasets such as reanalyses or operational NWP models in a reasonable amount of time. Package has been developed since 2017 by research meteorologists specializing in severe convective storms and is constantly updated with new features.


### Online browser
Expand Down
165 changes: 0 additions & 165 deletions docs/404.html

This file was deleted.

Loading

0 comments on commit 9e80b51

Please sign in to comment.