diff --git a/dev/CODE_OF_CONDUCT.html b/dev/CODE_OF_CONDUCT.html index c1734b97..93dbb72f 100644 --- a/dev/CODE_OF_CONDUCT.html +++ b/dev/CODE_OF_CONDUCT.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/CONTRIBUTING.html b/dev/CONTRIBUTING.html index 4298dd01..16cf6da1 100644 --- a/dev/CONTRIBUTING.html +++ b/dev/CONTRIBUTING.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/LICENSE-text.html b/dev/LICENSE-text.html index 8656e707..a7164f5a 100644 --- a/dev/LICENSE-text.html +++ b/dev/LICENSE-text.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/articles/bioRad.html b/dev/articles/bioRad.html index 6c90108c..fb7bc228 100644 --- a/dev/articles/bioRad.html +++ b/dev/articles/bioRad.html @@ -35,7 +35,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/articles/index.html b/dev/articles/index.html index 4fe1c8fe..a023899e 100644 --- a/dev/articles/index.html +++ b/dev/articles/index.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/articles/rad_aero_22.html b/dev/articles/rad_aero_22.html index 910a7948..08d584ef 100644 --- a/dev/articles/rad_aero_22.html +++ b/dev/articles/rad_aero_22.html @@ -35,7 +35,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/articles/range_correction.html b/dev/articles/range_correction.html index f20df94d..1def2785 100644 --- a/dev/articles/range_correction.html +++ b/dev/articles/range_correction.html @@ -35,7 +35,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -111,10 +111,8 @@

1 Preparations
 options("sp_evolution_status" = 2L)
 library(bioRad)
-
## Welcome to bioRad version 0.7.3.9000
-
## Attempting to load MistNet from:/home/runner/work/_temp/Library/vol2birdR/lib
-
## MistNet successfully initialized.
-
## using vol2birdR version 1.0.3 (MistNet installed)
+
## Welcome to bioRad version 0.8.1.9000
+
## using vol2birdR version 1.0.4 (MistNet installed)

2 Beam propagation @@ -133,14 +131,14 @@

2 Beam propagation
+
 # define a range grid from 0 to 200 km:
 my_range <- seq(0, 200000, 1000)
 # plot the beam height for each range, for a 0.5 degree elevation beam:
 plot(my_range, beam_height(my_range, elev = .5), xlab = "range [m]", ylab = "beam height [m]")

The beam width also broadens with range:

-
+
 # plot the beam width, for a beam opening angle of 1 degree (typical for most weather radars):
 plot(my_range, beam_width(my_range, beam_angle = 1), xlab = "range [m]", ylab = "beam width [m]")

@@ -149,17 +147,17 @@

2 Beam propagation
+
 # plot the beam profile, for a 0.5 degree elevation beam at 50 km distance from the radar:
 plot(beam_profile(height = 0:4000, 50000, 0.5), 0:4000, xlab = "normalized radiated energy", ylab = "height [m]", main = "beam elevation: 0.5 deg, distance=50km")

-
+
 # plot the beam profile, for a 2 degree elevation beam at 50 km distance from the radar:
 plot(beam_profile(height = 0:4000, 50000, 2), 0:4000, xlab = "normalized radiated energy", ylab = "height [m]", main = "beam elevation: 2 deg, distance=50km")

We can also calculate the normalized radiation profile for the two beams combined:

-
+
 # plot the combined beam profile for a 0.5 and 2.0 degree elevation beam at 50 km distance from the radar:
 plot(beam_profile(height = 0:4000, 50000, c(0.5, 2)), 0:4000, xlab = "normalized radiated energy", ylab = "height [m]", main = "beam elevations: 0.5,2 deg, distance=50km")

@@ -169,7 +167,7 @@

3 Vertical profiles and polar volum

Let us now assume we have calculated a vertical profile (of birds) for a certain polar volume file. Let’s load an example

-
+
 # let's load an example polar volume:
 pvolfile <- system.file("extdata", "volume.h5", package = "bioRad")
 example_pvol <- read_pvolfile(file = pvolfile)
@@ -185,13 +183,13 @@ 

3 Vertical profiles and polar volum ## generated by: vol2bird 0.3.17

Let’s plot the vertical profile, for the quantity eta (the linear reflectivity):

-
+
 plot(example_vp, quantity = "eta")

Note that eta is directly related to reflectivity factor (DBZH), i.e. a reflectivity factor of 5 dBZ amounts to the following eta at a radar wavelength of 5.3 cm:

-
+
 dbz_to_eta(5, wavelength = 5.3)
## [1] 1140.588
@@ -253,7 +251,7 @@

4 Spatial estima

5 Example: estimating a VID image

Let’s first make a PPI plot of the lowest uncorrected scan:

-
+
 # extract the first scan from the polar volume:
 my_scan <- example_pvol$scans[[1]]
 # project it as a PPI on the ground:
@@ -262,7 +260,7 @@ 

5 Example: estimating a VID imageplot(my_ppi)

Now let’s calculate the range-corrected PPI

-
+
 # let's use a 500 metre spatial grid (res), and restrict to 100x100 km area
 my_corrected_ppi <- integrate_to_ppi(example_pvol, example_vp, res = 500, xlim = c(-100000, 100000), ylim = c(-100000, 100000))
 my_corrected_ppi
@@ -272,18 +270,20 @@

5 Example: estimating a VID image## dims: 400 x 400 pixels

The range corrected PPI has four parameters: VIR, VID, R, overlap. Let’s plot the adjustment factor R:

-
+
 # plot the adjustment factor R:
 plot(my_corrected_ppi, param = "R")

Let’s also plot the vertically integrated reflectivity:

-
+
 plot(my_corrected_ppi, param = "VIR")

Or plot the vertically integrated density on a map:

-
+
 bm <- "osm"
-map(my_corrected_ppi, map=bm, param = "VIR", alpha = .5)
+if (all(sapply(c("ggspatial","prettymapr", "rosm"), requireNamespace, quietly = TRUE))){ + map(my_corrected_ppi, map=bm, param = "VIR", alpha = .5) +}
## Warning in CPL_crs_from_input(x): GDAL Message 1: +init=epsg:XXXX syntax is
 ## deprecated. It might return a CRS with a non-EPSG compliant axis order.
## Zoom: 6
@@ -306,7 +306,7 @@

6 Overlap between ra

We can calculate overlap between emitted radiation and the biological profile as follows:

-
+
 # calculate overlap between vertical profile of birds
 # and the vertical radiation profile emitted by the radar:
 bpo <- beam_profile_overlap(example_vp, get_elevation_angles(example_pvol), seq(0, 100000, 1000), quantity = "eta")
@@ -326,7 +326,7 @@ 

6 Overlap between ra

The range-corrected PPI also contains a field overlap, which contains the same metric but then calculated on the grid of the PPI:

-
+
 plot(my_corrected_ppi, param = "overlap")

The overlap metric might be used in the future to show only certain diff --git a/dev/articles/range_correction_files/figure-html/unnamed-chunk-13-1.png b/dev/articles/range_correction_files/figure-html/unnamed-chunk-13-1.png index ef360eaa..2fcf18f4 100644 Binary files a/dev/articles/range_correction_files/figure-html/unnamed-chunk-13-1.png and b/dev/articles/range_correction_files/figure-html/unnamed-chunk-13-1.png differ diff --git a/dev/authors.html b/dev/authors.html index 1d36e8d8..7d81720d 100644 --- a/dev/authors.html +++ b/dev/authors.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000

diff --git a/dev/index.html b/dev/index.html index a1771e55..d107a0aa 100644 --- a/dev/index.html +++ b/dev/index.html @@ -37,7 +37,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000

@@ -168,8 +168,10 @@

Install bioRadThen load the package with:

 library(bioRad)
-#> Welcome to bioRad version 0.7.3
-#> using vol2birdR version 1.0.1 (MistNet installed)
+#> Welcome to bioRad version 0.8.1 +#> Attempting to load MistNet from:/Users/amd427/Library/R/x86_64/4.3/library/vol2birdR/lib +#> MistNet successfully initialized. +#> using vol2birdR version 1.0.3 (MistNet installed)

(optional) Enable MistNet diff --git a/dev/news/index.html b/dev/news/index.html index 53e27a97..37462700 100644 --- a/dev/news/index.html +++ b/dev/news/index.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000

@@ -69,21 +69,37 @@

Changelog

- -
-

Bugfixes

-
  • support for tidyverse select method for polar volume and polar scan objects (#668,#460)

  • -
  • Updated the default refractive index value used in conversion of linear reflectivity (eta) to logarithmic reflectivity (dBZ) (#642). The effect is a 7% increase in animal densities in output of functions integrate_to_ppi() and read_cajun() only.

  • + +
    +

    bugfixes

    +
    • dbz_all field in VPTS CSV files is now correctly mapped to DBZH field (#661)

    • +
    • non-standard data fields are now retained in vpts objects produced with as.vpts() (#661)

    • +
    • corrected the type of gap field in vpts objects to logical (#635)

- +
-

New features

-
  • Replaced the ggmap package with ggspatial for map visualizations. This change was made as ggmap no longer provides reliable open-source basemaps without the necessity to register for an API key (#638).
  • +

    New features

    +
    • ENRAM VPTS data exchange format added in package data as vpts_schema.rda

    • +
    • VPTS files are now able to be validated with validate_vpts() which uses the schema to check for min/max constraint violations for specific fields, regex and datetime formatting

    • +
    • speed up integrate_to_ppi() and project_as_ppi() by using native sf functions (#669)

    • +
    • support for tidyverse select method for polar volume and polar scan objects (#668,#460)

+

Bugfixes

+
  • Corrected the default refractive index value used in conversion of linear reflectivity (eta) to logarithmic reflectivity (dBZ). The effect is a 7% increase in animal densities in output of functions integrate_to_ppi() and read_cajun() only (#642).

  • +
  • Fixed the handling of empty numeric vectors when plotting clutter maps (#655)

  • +
  • Fixed warning when reading VPTS csv containing multiple values in lat, lon, ‘rcs’ or sd_vvp_threshold (#651)

  • +
  • Fixed enabling/disabling of single_pol flag in calculate_vp() (#646)

  • +
  • Updated the s3 source bucket of download_vpfiles() to https://aloftdata.s3-eu-west-1.amazonaws.com (#648)

  • +
  • Fixed an error in the idw method of composite_ppi() that emerged with the evolution of dependency package sp / deprecation of rgdal (#666)

  • +
+
+
+ +
  • Replaced the ggmap package with ggspatial for map visualizations. This change was made as ggmap no longer provides reliable open-source basemaps without the necessity to register for an API key (#638).
  • +

Bugfixes

  • Corrected incorrect mapping of to dbz_all data column in VPTS CSV format to corresponding DBZH data column in bioRad vpts object (#634).

  • Improved the polar volume downloads by download_pvolfiles(): now skips a day if there are issues with fetching instead of aborting the entire download (#636)

  • diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index 34185e9e..c7a40f0e 100644 --- a/dev/pkgdown.yml +++ b/dev/pkgdown.yml @@ -5,7 +5,7 @@ articles: bioRad: bioRad.html rad_aero_22: rad_aero_22.html range_correction: range_correction.html -last_built: 2024-07-20T17:37Z +last_built: 2024-08-27T16:18Z urls: reference: https://adriaandokter.com/bioRad/reference article: https://adriaandokter.com/bioRad/articles diff --git a/dev/reference/Ops.html b/dev/reference/Ops.html index c9050249..d35d8e6e 100644 --- a/dev/reference/Ops.html +++ b/dev/reference/Ops.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
diff --git a/dev/reference/add_expected_eta_to_scan.html b/dev/reference/add_expected_eta_to_scan.html index 717cb0e7..2d1a6920 100644 --- a/dev/reference/add_expected_eta_to_scan.html +++ b/dev/reference/add_expected_eta_to_scan.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
diff --git a/dev/reference/apply_mistnet.html b/dev/reference/apply_mistnet.html index 8c4fa983..653da534 100644 --- a/dev/reference/apply_mistnet.html +++ b/dev/reference/apply_mistnet.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
@@ -195,6 +195,7 @@

See also

Examples

# \donttest{
 # make sure you have installed the MistNet libraries and model, using:
+if (requireNamespace("vol2birdR", quietly = TRUE)){
 if(!vol2birdR::mistnet_exists()){
    vol2birdR::install_mistnet()
    vol2birdR::install_mistnet_model()
@@ -209,52 +210,50 @@ 

Examples

# Calculate MistNet segmentation mistnet_pvol <- apply_mistnet(tempfile) -#> Filename = /tmp/RtmpcO7UT4/KBGM_example1a1d708d9899, callid = KBGM -#> Reading RSL polar volume with nominal time 20191001-000542, source: RAD:KBGM,PLC:BINGHAMTON,state:NY,radar_name:KBGM -#> Running vol2birdSetUp -#> Warning: radial velocities will be dealiased... -#> Warning: disabling single-polarization precipitation filter for S-band data, continuing in DUAL polarization mode -#> Warning: using MistNet, disabling other segmentation methods -#> Running segmentScansUsingMistnet. -#> Warning: Requested elevation scan at 1.500000 degrees but selected scan at 1.318360 degrees -#> Warning: Requested elevation scan at 3.500000 degrees but selected scan at 3.120115 degrees -#> Warning: Requested elevation scan at 4.500000 degrees but selected scan at 3.999025 degrees -#> Warning: Ignoring scan(s) not used as MistNet input: 2 4 8 9 ... -#> Running MistNet...done # Print summary info for the segmented elevation scan at the 0.5 degree, # verify new parameters BIOLOGY, WEATHER, BACKGROUND and CELL have been added scan <- get_scan(mistnet_pvol, 0.5) scan -#> Polar scan (class scan) -#> -#> parameters: DBZH VRADH RHOHV WRADH WEATHER BACKGROUND CELL PHIDP BIOLOGY ZDR -#> elevation angle: 0.483395 deg -#> dims: 1201 bins x 720 rays # Project the scan as a ppi ppi <- project_as_ppi(scan, range_max = 100000) # Plot the reflectivity parameter plot(ppi, param = "DBZH") - # Plot the MistNet class probability [0-1] for weather plot(ppi, param = "WEATHER") - # Plot the MistNet class probability [0-1] for biology plot(ppi, param = "BIOLOGY") - # Plot the final segmentation result, with values >1 indicating # areas classified as weather, and value 1 pixels that fall within an # additional 5 km fringe around weather areas plot(ppi, param = "CELL") - # Remove file file.remove(tempfile) +} +#> Starting installation of MistNet... +#> Checking write permissions... +#> Installing MistNet libraries... +#> Initializing MistNet... +#> MistNet initialized successfully. +#> MistNet installation complete. +#> Filename = /tmp/RtmpkybTUi/KBGM_example5ec2616d29a8, callid = KBGM +#> Reading RSL polar volume with nominal time 20191001-000542, source: RAD:KBGM,PLC:BINGHAMTON,state:NY,radar_name:KBGM +#> Running vol2birdSetUp +#> Warning: radial velocities will be dealiased... +#> Warning: disabling single-polarization precipitation filter for S-band data, continuing in DUAL polarization mode +#> Warning: using MistNet, disabling other segmentation methods +#> Running segmentScansUsingMistnet. +#> Warning: Requested elevation scan at 1.500000 degrees but selected scan at 1.318360 degrees +#> Warning: Requested elevation scan at 3.500000 degrees but selected scan at 3.120115 degrees +#> Warning: Requested elevation scan at 4.500000 degrees but selected scan at 3.999025 degrees +#> Warning: Ignoring scan(s) not used as MistNet input: 2 4 8 9 ... +#> Running MistNet...done #> [1] TRUE # }
diff --git a/dev/reference/as.data.frame.vp.html b/dev/reference/as.data.frame.vp.html index 95fa5996..a8950b02 100644 --- a/dev/reference/as.data.frame.vp.html +++ b/dev/reference/as.data.frame.vp.html @@ -20,7 +20,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
diff --git a/dev/reference/as.vpts.html b/dev/reference/as.vpts.html index a0f368ce..775c54f6 100644 --- a/dev/reference/as.vpts.html +++ b/dev/reference/as.vpts.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
diff --git a/dev/reference/attribute_table.html b/dev/reference/attribute_table.html index 2c08103e..5a3d2911 100644 --- a/dev/reference/attribute_table.html +++ b/dev/reference/attribute_table.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
diff --git a/dev/reference/beam_distance.html b/dev/reference/beam_distance.html index 02900731..0fbc3f3d 100644 --- a/dev/reference/beam_distance.html +++ b/dev/reference/beam_distance.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
@@ -122,8 +122,8 @@

See also

Other beam_functions: beam_height(), -beam_profile_overlap(), beam_profile(), +beam_profile_overlap(), beam_range(), beam_width(), gaussian_beam_profile()

diff --git a/dev/reference/beam_height.html b/dev/reference/beam_height.html index fcd72c83..f1d4a810 100644 --- a/dev/reference/beam_height.html +++ b/dev/reference/beam_height.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
@@ -129,8 +129,8 @@

See also

Other beam_functions: beam_distance(), -beam_profile_overlap(), beam_profile(), +beam_profile_overlap(), beam_range(), beam_width(), gaussian_beam_profile()

diff --git a/dev/reference/beam_profile.html b/dev/reference/beam_profile.html index 98a58ab8..0dbef7fb 100644 --- a/dev/reference/beam_profile.html +++ b/dev/reference/beam_profile.html @@ -20,7 +20,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000

diff --git a/dev/reference/beam_profile_overlap.html b/dev/reference/beam_profile_overlap.html index c69fe091..7b196444 100644 --- a/dev/reference/beam_profile_overlap.html +++ b/dev/reference/beam_profile_overlap.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000

diff --git a/dev/reference/beam_range.html b/dev/reference/beam_range.html index b79f4165..51978aa2 100644 --- a/dev/reference/beam_range.html +++ b/dev/reference/beam_range.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -121,8 +121,8 @@

See also

Other beam_functions: beam_distance(), beam_height(), -beam_profile_overlap(), beam_profile(), +beam_profile_overlap(), beam_width(), gaussian_beam_profile()

diff --git a/dev/reference/beam_width.html b/dev/reference/beam_width.html index 88590f42..1cbc981c 100644 --- a/dev/reference/beam_width.html +++ b/dev/reference/beam_width.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -99,8 +99,8 @@

See also

Other beam_functions: beam_distance(), beam_height(), -beam_profile_overlap(), beam_profile(), +beam_profile_overlap(), beam_range(), gaussian_beam_profile()

diff --git a/dev/reference/bind_into_vpts.html b/dev/reference/bind_into_vpts.html index de0947df..1444984c 100644 --- a/dev/reference/bind_into_vpts.html +++ b/dev/reference/bind_into_vpts.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/bioRad-deprecated.html b/dev/reference/bioRad-deprecated.html index 1a1bccc6..805c1316 100644 --- a/dev/reference/bioRad-deprecated.html +++ b/dev/reference/bioRad-deprecated.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/bioRad-package.html b/dev/reference/bioRad-package.html index 254308b2..cfae1a1c 100644 --- a/dev/reference/bioRad-package.html +++ b/dev/reference/bioRad-package.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -97,7 +97,7 @@

See also

Author

-

Maintainer: Adriaan M. Dokter amd427@cornell.edu (ORCID)

+

Maintainer: Adriaan M. Dokter biorad@cornell.edu (ORCID)

Authors:

diff --git a/dev/reference/calculate_param.html b/dev/reference/calculate_param.html index e23548c3..eead8344 100644 --- a/dev/reference/calculate_param.html +++ b/dev/reference/calculate_param.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/calculate_vp.html b/dev/reference/calculate_vp.html index a557891b..fc05c0a3 100644 --- a/dev/reference/calculate_vp.html +++ b/dev/reference/calculate_vp.html @@ -21,7 +21,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -396,28 +396,26 @@

Examples

# Locate and read the polar volume example file
 pvolfile_source <- system.file("extdata", "volume.h5", package = "bioRad")
 
-# Copy the file to a home directory with read/write permissions
+# Copy the file to a temporary directory with read/write permissions
 pvolfile <- paste0(tempdir(),"/volume.h5")
 file.copy(pvolfile_source, pvolfile)
 #> [1] TRUE
 
 # Calculate the profile
+if (requireNamespace("vol2birdR", quietly = TRUE)) {
 vp <- calculate_vp(pvolfile)
-#> Running vol2birdSetUp
-#> Warning: radial velocities will be dealiased...
 
 # Get summary info
 vp
-#>                Vertical profile (class vp)
-#> 
-#>        radar:  seang 
-#>       source:  WMO:02606,RAD:SE50,PLC:Angelholm,NOD:seang,ORG:82,CTY:643,CMT:Swedish radar 
-#> nominal time:  2015-10-18 18:00:00 
-#> generated by:  vol2bird 0.6.0.9201 
 
 # Clean up
 file.remove(pvolfile)
+
+}
+#> Running vol2birdSetUp
+#> Warning: radial velocities will be dealiased...
 #> [1] TRUE
+
 
diff --git a/dev/reference/check_date_format.html b/dev/reference/check_date_format.html index 56d69694..25b0b116 100644 --- a/dev/reference/check_date_format.html +++ b/dev/reference/check_date_format.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/check_night.html b/dev/reference/check_night.html index b0be8c70..3c6994f6 100644 --- a/dev/reference/check_night.html +++ b/dev/reference/check_night.html @@ -20,7 +20,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/check_radar_codes.html b/dev/reference/check_radar_codes.html index 0f595ca5..a2453c2a 100644 --- a/dev/reference/check_radar_codes.html +++ b/dev/reference/check_radar_codes.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/composite_ppi.html b/dev/reference/composite_ppi.html index 279fd025..eebc8077 100644 --- a/dev/reference/composite_ppi.html +++ b/dev/reference/composite_ppi.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -214,7 +214,9 @@

Examples

composite <- composite_ppi(ppis, method = "max", res=1000) # Plot the calculated max product on the basemap +if (all(sapply(c("ggspatial","prettymapr", "rosm"), requireNamespace, quietly = TRUE))) { map(composite) +} #> Warning: GDAL Message 1: +init=epsg:XXXX syntax is deprecated. It might return a CRS with a non-EPSG compliant axis order. #> Zoom: 8 #> Fetching 4 missing tiles diff --git a/dev/reference/convert_legacy.html b/dev/reference/convert_legacy.html index 1f0262a5..009d6d49 100644 --- a/dev/reference/convert_legacy.html +++ b/dev/reference/convert_legacy.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/dbz_to_eta.html b/dev/reference/dbz_to_eta.html index f3e370d1..7f0a2206 100644 --- a/dev/reference/dbz_to_eta.html +++ b/dev/reference/dbz_to_eta.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/download_pvolfiles.html b/dev/reference/download_pvolfiles.html index 4699d9d6..4286db18 100644 --- a/dev/reference/download_pvolfiles.html +++ b/dev/reference/download_pvolfiles.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -128,6 +128,7 @@

Value

Examples

# create temporary directory
+if (requireNamespace("aws.s3", quietly = TRUE)) {
 temp_dir <- paste0(tempdir(),"/bioRad_tmp_files")
 dir.create(temp_dir)
 download_pvolfiles(
@@ -137,12 +138,13 @@ 

Examples

directory = temp_dir, overwrite = TRUE ) +# Clean up +unlink(temp_dir, recursive = TRUE) +} #> Downloading data from noaa-nexrad-level2 for radar KBRO spanning over 1 days #> #> Downloading pvol for 2002/10/01/KBRO/ #> | | | 0% | |======================================================================| 100% -# Clean up -unlink(temp_dir, recursive = TRUE)
diff --git a/dev/reference/download_vpfiles.html b/dev/reference/download_vpfiles.html index 52a617bb..bcbb0a08 100644 --- a/dev/reference/download_vpfiles.html +++ b/dev/reference/download_vpfiles.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -126,7 +126,8 @@

Value

See also

-
diff --git a/dev/reference/doy_noy.html b/dev/reference/doy_noy.html index ebd22a46..ec7267fc 100644 --- a/dev/reference/doy_noy.html +++ b/dev/reference/doy_noy.html @@ -21,7 +21,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/eta_to_dbz.html b/dev/reference/eta_to_dbz.html index 552fa712..24eb8e33 100644 --- a/dev/reference/eta_to_dbz.html +++ b/dev/reference/eta_to_dbz.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/example_scan.html b/dev/reference/example_scan.html index 5fc4138f..0fd877dd 100644 --- a/dev/reference/example_scan.html +++ b/dev/reference/example_scan.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/example_vp.html b/dev/reference/example_vp.html index abdcc347..a581f43e 100644 --- a/dev/reference/example_vp.html +++ b/dev/reference/example_vp.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/example_vpts.html b/dev/reference/example_vpts.html index 540d704e..c589c37d 100644 --- a/dev/reference/example_vpts.html +++ b/dev/reference/example_vpts.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/extract_string.html b/dev/reference/extract_string.html index 27e97c58..01835bb3 100644 --- a/dev/reference/extract_string.html +++ b/dev/reference/extract_string.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/filter_vpts.html b/dev/reference/filter_vpts.html index 56b13925..9ea35e5d 100644 --- a/dev/reference/filter_vpts.html +++ b/dev/reference/filter_vpts.html @@ -20,7 +20,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/gaussian_beam_profile.html b/dev/reference/gaussian_beam_profile.html index 8df0c573..a02e08c3 100644 --- a/dev/reference/gaussian_beam_profile.html +++ b/dev/reference/gaussian_beam_profile.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -147,8 +147,8 @@

See also

Other beam_functions: beam_distance(), beam_height(), -beam_profile_overlap(), beam_profile(), +beam_profile_overlap(), beam_range(), beam_width()

diff --git a/dev/reference/get_elevation_angles.html b/dev/reference/get_elevation_angles.html index 920ae12d..99fe85eb 100644 --- a/dev/reference/get_elevation_angles.html +++ b/dev/reference/get_elevation_angles.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/get_iris_raw_task.html b/dev/reference/get_iris_raw_task.html index a3ce359b..36078e7e 100644 --- a/dev/reference/get_iris_raw_task.html +++ b/dev/reference/get_iris_raw_task.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/get_odim_object_type.html b/dev/reference/get_odim_object_type.html index 5ccd21df..f518fb3c 100644 --- a/dev/reference/get_odim_object_type.html +++ b/dev/reference/get_odim_object_type.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/get_param.html b/dev/reference/get_param.html index 6fec8555..4c0927a8 100644 --- a/dev/reference/get_param.html +++ b/dev/reference/get_param.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/get_quantity.html b/dev/reference/get_quantity.html index 771fd8b4..60139acd 100644 --- a/dev/reference/get_quantity.html +++ b/dev/reference/get_quantity.html @@ -21,7 +21,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/get_scan.html b/dev/reference/get_scan.html index 024a3c81..80b72e0a 100644 --- a/dev/reference/get_scan.html +++ b/dev/reference/get_scan.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/index.html b/dev/reference/index.html index bc06f0e8..444a8fb7 100644 --- a/dev/reference/index.html +++ b/dev/reference/index.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -152,7 +152,7 @@

Manipulating radar scans select(<scan>)

+

select.scan()

Tidyverse methods for bioRad objects

diff --git a/dev/reference/integrate_profile.html b/dev/reference/integrate_profile.html index c75f9b22..a8c4ef55 100644 --- a/dev/reference/integrate_profile.html +++ b/dev/reference/integrate_profile.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/integrate_to_ppi.html b/dev/reference/integrate_to_ppi.html index 8c2d04d3..4542d4b5 100644 --- a/dev/reference/integrate_to_ppi.html +++ b/dev/reference/integrate_to_ppi.html @@ -24,7 +24,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -304,7 +304,9 @@

Examples

# Download a basemap and map the ppi +if (all(sapply(c("ggspatial","prettymapr", "rosm"), requireNamespace, quietly = TRUE))) { map(ppi) +} #> Zoom: 5 #> Fetching 4 missing tiles #> | | | 0% | |================== | 25% | |=================================== | 50% | |==================================================== | 75% | |======================================================================| 100% diff --git a/dev/reference/is.nan.data.frame.html b/dev/reference/is.nan.data.frame.html index 82ecf006..6da592d6 100644 --- a/dev/reference/is.nan.data.frame.html +++ b/dev/reference/is.nan.data.frame.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/is.pvolfile.html b/dev/reference/is.pvolfile.html index f1ae7785..00e21461 100644 --- a/dev/reference/is.pvolfile.html +++ b/dev/reference/is.pvolfile.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/is.vpfile.html b/dev/reference/is.vpfile.html index 64a47978..3d0ed6b9 100644 --- a/dev/reference/is.vpfile.html +++ b/dev/reference/is.vpfile.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/list_vpts_aloft.html b/dev/reference/list_vpts_aloft.html index 9622ca98..1aac3839 100644 --- a/dev/reference/list_vpts_aloft.html +++ b/dev/reference/list_vpts_aloft.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -125,30 +125,13 @@

Value

Examples

-
list_vpts_aloft(radars = "bejab")
-#> Warning: Radar data found between 2018-10 and 2024-07 but not every date has radar data
+    
# \donttest{
+if (requireNamespace("aws.s3", quietly = TRUE)) {
+list_vpts_aloft(radars = "bejab", date_min='2018-10-01', date_max = '2018-12-31')
+}# }
 #> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2018/bejab_vpts_201810.csv.gz
 #> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2018/bejab_vpts_201811.csv.gz
 #> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2018/bejab_vpts_201812.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2019/bejab_vpts_201901.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202302.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202303.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202304.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202305.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202306.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202307.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202308.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202309.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202310.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202311.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2023/bejab_vpts_202312.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2024/bejab_vpts_202401.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2024/bejab_vpts_202402.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2024/bejab_vpts_202403.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2024/bejab_vpts_202404.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2024/bejab_vpts_202405.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2024/bejab_vpts_202406.csv.gz
-#> https://aloftdata.s3-eu-west-1.amazonaws.com/baltrad/monthly/bejab/2024/bejab_vpts_202407.csv.gz
 
diff --git a/dev/reference/map-1.png b/dev/reference/map-1.png index a8ef7b6e..8867264a 100644 Binary files a/dev/reference/map-1.png and b/dev/reference/map-1.png differ diff --git a/dev/reference/map.html b/dev/reference/map.html index 774dc7d9..30d4325e 100644 --- a/dev/reference/map.html +++ b/dev/reference/map.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -192,46 +192,36 @@

Examples

# Project a scan as a ppi
 ppi <- project_as_ppi(example_scan)
 # \donttest{
+if (all(sapply(c("ggspatial","prettymapr", "rosm"), requireNamespace, quietly = TRUE))) {
 # Choose a basemap
 basemap <- rosm::osm.types()[1]
 
 # Map the radial velocity of the ppi onto the basemap
 map(ppi, map = basemap, param = "VRADH")
-#> Zoom: 8
-#> Fetching 4 missing tiles
-#> 
  |                                                                            
  |                                                                      |   0%
  |                                                                            
  |==================                                                    |  25%
  |                                                                            
  |===================================                                   |  50%
  |                                                                            
  |====================================================                  |  75%
  |                                                                            
  |======================================================================| 100%
-#> ...complete!
-
 
 # Extend the plotting range of velocities, from -50 to 50 m/s
 map(ppi, map = basemap, param = "VRADH", zlim = c(-50, 50))
-#> Zoom: 8
-
 
 # Map the reflectivity
 map(ppi, map = basemap, param = "DBZH")
-#> Zoom: 8
-
 
 # Change the color palette to Viridis colors
 map(ppi, map = basemap, param = "DBZH", palette = viridis::viridis(100), zlim=c(-10,10))
-#> Zoom: 8
-
 
 # Give the data more transparency
 map(ppi, map = basemap, param = "DBZH", alpha = 0.3)
-#> Zoom: 8
-
 
 # Change the appearance of the symbol indicating the radar location
 map(ppi, map = basemap, radar_size = 5, radar_color = "blue")
-#> Zoom: 8
-
 
 # Crop the map
 map(ppi, map = basemap, xlim = c(12.4, 13.2), ylim = c(56, 56.5))
+}
 #> Zoom: 8
-
+#> Fetching 4 missing tiles
+#> 
  |                                                                            
  |                                                                      |   0%
  |                                                                            
  |==================                                                    |  25%
  |                                                                            
  |===================================                                   |  50%
  |                                                                            
  |====================================================                  |  75%
  |                                                                            
  |======================================================================| 100%
+#> ...complete!
+
 # }
 
diff --git a/dev/reference/match_filenames.html b/dev/reference/match_filenames.html index 13fe5322..157cf05e 100644 --- a/dev/reference/match_filenames.html +++ b/dev/reference/match_filenames.html @@ -20,7 +20,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/nexrad_to_odim.html b/dev/reference/nexrad_to_odim.html index d81c45b0..eefc2bf9 100644 --- a/dev/reference/nexrad_to_odim.html +++ b/dev/reference/nexrad_to_odim.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -120,17 +120,20 @@

Examples

new_path = file.path(tempdir(), "KBGM_example.h5") +if (requireNamespace("vol2birdR", quietly = TRUE)) { nexrad_to_odim(path, new_path) -#> Filename = /tmp/RtmpcO7UT4/KBGM_example, callid = KBGM -#> Reading RSL polar volume with nominal time 20191001-000542, source: RAD:KBGM,PLC:BINGHAMTON,state:NY,radar_name:KBGM # verify that we have generated a polar volume in ODIM HDF5 format get_odim_object_type(new_path) -#> [1] "PVOL" # clean up -file.remove(path, new_path) -#> [1] TRUE TRUE +file.remove(new_path) +} +#> Filename = /tmp/RtmpkybTUi/KBGM_example, callid = KBGM +#> Reading RSL polar volume with nominal time 20191001-000542, source: RAD:KBGM,PLC:BINGHAMTON,state:NY,radar_name:KBGM +#> [1] TRUE +file.remove(path) +#> [1] TRUE # }
diff --git a/dev/reference/nyquist_velocity.html b/dev/reference/nyquist_velocity.html index ef888e85..c92ae2d4 100644 --- a/dev/reference/nyquist_velocity.html +++ b/dev/reference/nyquist_velocity.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/plot.ppi.html b/dev/reference/plot.ppi.html index 31e45998..77d44f0e 100644 --- a/dev/reference/plot.ppi.html +++ b/dev/reference/plot.ppi.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/plot.scan.html b/dev/reference/plot.scan.html index a3116ca9..9610e85d 100644 --- a/dev/reference/plot.scan.html +++ b/dev/reference/plot.scan.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/plot.vp.html b/dev/reference/plot.vp.html index 5c647aaa..7e3a21a8 100644 --- a/dev/reference/plot.vp.html +++ b/dev/reference/plot.vp.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/plot.vpi.html b/dev/reference/plot.vpi.html index d3be0c13..c13e62c6 100644 --- a/dev/reference/plot.vpi.html +++ b/dev/reference/plot.vpi.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/plot.vpts.html b/dev/reference/plot.vpts.html index 336795a1..e8505bd3 100644 --- a/dev/reference/plot.vpts.html +++ b/dev/reference/plot.vpts.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/proj_to_wgs.html b/dev/reference/proj_to_wgs.html index 8ea6dff1..35b7c35a 100644 --- a/dev/reference/proj_to_wgs.html +++ b/dev/reference/proj_to_wgs.html @@ -1,5 +1,5 @@ -A wrapper for spTransform(). Converts projected coordinates to geographic (WGS84) coordinates. — proj_to_wgs • bioRadA wrapper for sp::spTransform(). Converts projected coordinates to geographic (WGS84) coordinates. — proj_to_wgs • bioRadSkip test if no aws.s3 — skip_if_no_aws.s3 • bioRad + + +
+
+ + + +
+
+ + +
+

Some functions require package aws.s3 +This helper function allows to skip a test if aws.s3 is not available +Inspired by https://testthat.r-lib.org/articles/skipping.html#helpers.

+
+ +
+
skip_if_no_aws.s3()
+
+ +
+

Value

+

Invisibly returns TRUE if aws.s3 is available, otherwise skips the test with a message "Package aws.s3 not installed".

+
+ +
+ +
+ + +
+ + + + diff --git a/dev/reference/skip_if_no_mapping.html b/dev/reference/skip_if_no_mapping.html new file mode 100644 index 00000000..9653ec58 --- /dev/null +++ b/dev/reference/skip_if_no_mapping.html @@ -0,0 +1,122 @@ + +Skip test if missing dependencies for mapping — skip_if_no_mapping • bioRad + + +
+
+ + + +
+
+ + +
+

Function map depends on several spatial dependencies (ggspatial, prettymapr, rosm). +This helper function allows to skip a test if these dependencies are not available +Inspired by https://testthat.r-lib.org/articles/skipping.html#helpers.

+
+ +
+
skip_if_no_mapping()
+
+ +
+

Value

+

Invisibly returns TRUE if dependencies available, otherwise skips the test with a message "map() dependencies (ggspatial, prettymapr, rosm) not installed".

+
+ +
+ +
+ + +
+ + + + diff --git a/dev/reference/skip_if_no_mistnet.html b/dev/reference/skip_if_no_mistnet.html index 4db4e2cb..970123c3 100644 --- a/dev/reference/skip_if_no_mistnet.html +++ b/dev/reference/skip_if_no_mistnet.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/skip_if_no_tidyselect.html b/dev/reference/skip_if_no_tidyselect.html new file mode 100644 index 00000000..aed3ba42 --- /dev/null +++ b/dev/reference/skip_if_no_tidyselect.html @@ -0,0 +1,122 @@ + +Skip test if no tidyselect — skip_if_no_tidyselect • bioRad + + +
+
+ + + +
+
+ + +
+

dplyr select method require package tidyselect +This helper function allows to skip a test if tidyselect is not available +Inspired by https://testthat.r-lib.org/articles/skipping.html#helpers.

+
+ +
+
skip_if_no_tidyselect()
+
+ +
+

Value

+

Invisibly returns TRUE if tidyselect is available, otherwise skips the test with a message "Package tidyselect not installed".

+
+ +
+ +
+ + +
+ + + + diff --git a/dev/reference/skip_if_no_vol2birdR.html b/dev/reference/skip_if_no_vol2birdR.html index bdd601d1..224d60b4 100644 --- a/dev/reference/skip_if_no_vol2birdR.html +++ b/dev/reference/skip_if_no_vol2birdR.html @@ -19,7 +19,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/sub-.ppi.html b/dev/reference/sub-.ppi.html index 2ac51c3a..abe49a32 100644 --- a/dev/reference/sub-.ppi.html +++ b/dev/reference/sub-.ppi.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/summary.param.html b/dev/reference/summary.param.html index 64512dde..8db6e7cd 100644 --- a/dev/reference/summary.param.html +++ b/dev/reference/summary.param.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/summary.ppi.html b/dev/reference/summary.ppi.html index 26a57e5a..624b79d2 100644 --- a/dev/reference/summary.ppi.html +++ b/dev/reference/summary.ppi.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/summary.pvol.html b/dev/reference/summary.pvol.html index 66727327..7b96f21a 100644 --- a/dev/reference/summary.pvol.html +++ b/dev/reference/summary.pvol.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/summary.scan.html b/dev/reference/summary.scan.html index fb3031a3..97785b21 100644 --- a/dev/reference/summary.scan.html +++ b/dev/reference/summary.scan.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/summary.vp.html b/dev/reference/summary.vp.html index a07d7529..e077efac 100644 --- a/dev/reference/summary.vp.html +++ b/dev/reference/summary.vp.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/summary.vpi.html b/dev/reference/summary.vpi.html index 483f577e..7727e1c5 100644 --- a/dev/reference/summary.vpi.html +++ b/dev/reference/summary.vpi.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/summary.vpts.html b/dev/reference/summary.vpts.html index 751cfa7d..2a299970 100644 --- a/dev/reference/summary.vpts.html +++ b/dev/reference/summary.vpts.html @@ -20,7 +20,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/sunrise_sunset.html b/dev/reference/sunrise_sunset.html index 0275e361..0973470b 100644 --- a/dev/reference/sunrise_sunset.html +++ b/dev/reference/sunrise_sunset.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 diff --git a/dev/reference/tidyverse.html b/dev/reference/tidyverse.html index aadcc386..4d823ed5 100644 --- a/dev/reference/tidyverse.html +++ b/dev/reference/tidyverse.html @@ -17,7 +17,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000 @@ -74,8 +74,7 @@

Tidyverse methods for bioRad objects

-
# S3 method for class 'scan'
-select(.data, ...)
+
select.scan(.data, ...)
diff --git a/dev/reference/vplist_to_vpts.html b/dev/reference/vplist_to_vpts.html index 6f063feb..69e27346 100644 --- a/dev/reference/vplist_to_vpts.html +++ b/dev/reference/vplist_to_vpts.html @@ -18,7 +18,7 @@ bioRad - 0.7.3.9000 + 0.8.1.9000
diff --git a/dev/reference/vpts_schema.html b/dev/reference/vpts_schema.html new file mode 100644 index 00000000..efaaac24 --- /dev/null +++ b/dev/reference/vpts_schema.html @@ -0,0 +1,128 @@ + +ENRAM-defined VPTS schema — vpts_schema • bioRad + + +
+
+ + + +
+
+ + +
+

A dataset containing the schema definitions for VPTS data validation.

+
+ +
+
vpts_schema
+
+ +
+

Format

+

An object of class list of length 3.

+
+
+

Value

+

A list object containing the data model for the standard VPTS exchange format.

+
+ +
+

Examples

+
# Reload vpts_schema from package (e.g. in case it was altered)
+data(vpts_schema)
+
+
+
+ +
+ + +
+ + + + diff --git a/dev/reference/wgs_to_proj.html b/dev/reference/wgs_to_proj.html index 05c78600..bbc41524 100644 --- a/dev/reference/wgs_to_proj.html +++ b/dev/reference/wgs_to_proj.html @@ -1,5 +1,5 @@ -A wrapper for spTransform(). Converts geographic (WGS84) coordinates to a specified projection — wgs_to_proj • bioRadA wrapper for sp::spTransform(). Converts geographic (WGS84) coordinates to a specified projection — wgs_to_proj • bioRad