Skip to content

Commit 5db08bd

Browse files
committed
added DBZ, TH, T as scan parameters read by default
1 parent f7291fd commit 5db08bd

10 files changed

+15
-4
lines changed

R/map.R

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#' \code{summary(x)}. Commonly available parameters are:
3131
#' \describe{
3232
#' \item{"\code{DBZH}", "\code{DBZ}"}{(Logged) reflectivity factor [dBZ]}
33+
#' \item{"\code{TH}", "\code{T}"}{(Logged) uncorrected reflectivity factor [dBZ]}
3334
#' \item{"\code{VRADH}", "\code{VRAD}"}{Radial velocity [m/s]. Radial
3435
#' velocities towards the radar are negative, while radial velocities away
3536
#' from the radar are positive}

R/plot.ppi.R

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#' by \code{summary(x)}. Commonly available parameters are:
2121
#' \describe{
2222
#' \item{"\code{DBZH}", "\code{DBZ}"}{(Logged) reflectivity factor [dBZ]}
23+
#' \item{"\code{TH}", "\code{T}"}{(Logged) uncorrected reflectivity factor [dBZ]}
2324
#' \item{"\code{VRADH}", "\code{VRAD}"}{Radial velocity [m/s]. Radial
2425
#' velocities towards the radar are negative, while radial velocities away
2526
#' from the radar are positive}

R/plot.scan.R

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#' by \code{summary(x)}. Commonly available parameters are:
1919
#' \describe{
2020
#' \item{"\code{DBZH}", "\code{DBZ}"}{(Logged) reflectivity factor [dBZ]}
21+
#' \item{"\code{TH}", "\code{T}"}{(Logged) uncorrected reflectivity factor [dBZ]}
2122
#' \item{"\code{VRADH}", "\code{VRAD}"}{Radial velocity [m/s]. Radial
2223
#' velocities towards the radar are negative, while radial velocities away
2324
#' from the radar are positive}

R/ppi.R

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#' containing the georeferenced data. Commonly available parameters are:
1919
#' \describe{
2020
#' \item{"\code{DBZH}", "\code{DBZ}"}{(Logged) reflectivity factor [dBZ]}
21+
#' \item{"\code{TH}", "\code{T}"}{(Logged) uncorrected reflectivity factor [dBZ]}
2122
#' \item{"\code{VRADH}", "\code{VRAD}"}{Radial velocity [m/s]. Radial
2223
#' velocities towards the radar are negative, while radial velocities
2324
#' away from the radar are positive}

R/read_pvolfile.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#' Commonly available parameters are:
3535
#' \describe{
3636
#' \item{"\code{DBZH}", "\code{DBZ}"}{(Logged) reflectivity factor [dBZ]}
37+
#' \item{"\code{TH}", "\code{T}"}{(Logged) uncorrected reflectivity factor [dBZ]}
3738
#' \item{"\code{VRADH}", "\code{VRAD}"}{Radial velocity [m/s]. Radial
3839
#' velocities towards the radar are negative, while radial velocities away
3940
#' from the radar are positive}
@@ -60,7 +61,7 @@
6061
#' # print summary info for the new object:
6162
#' scan
6263
read_pvolfile <- function(file, param = c(
63-
"DBZH", "VRADH", "VRAD", "RHOHV",
64+
"DBZH", "DBZ", "VRADH", "VRAD", "TH", "T", "RHOHV",
6465
"ZDR", "PHIDP", "CELL"
6566
),
6667
sort = TRUE, lat, lon, height, elev_min = 0,

man/map.Rd

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/plot.ppi.Rd

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/plot.scan.Rd

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/read_pvolfile.Rd

+5-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/summary.ppi.Rd

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)