library(azmetr)
library(units)
#> udunits database from /usr/share/xml/udunits/udunits2.xml
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
You can add the correct units to data returned by
az_daily()
, az_hourly()
, or
az_heat()
by passing the resulting tibble to
az_add_units()
.
hourly <-
az_hourly() %>%
az_add_units()
#> Querying most recent hour of data ...
#> Returning data from 2024-11-19 20:00 through 2024-11-19 21:00
hourly %>%
select(-starts_with("meta_"), -starts_with("date_")) %>%
head()
#> # A tibble: 6 × 33
#> dwpt dwptF eto_azmet eto_azmet_in heatstress_cottonC heatstress_cottonF
#> [°C] [degF] [mm] [in] [°C] [degF]
#> 1 -3 26.6 0 0 3.3 38
#> 2 -4.7 23.5 0 0 9.4 48.9
#> 3 -8.2 17.3 0 0 -0.6 30.9
#> 4 -4.4 24 0 0 4.7 40.5
#> 5 -2.2 28 0 0 4.7 40.5
#> 6 -16.4 2.5 0 0 3.8 38.8
#> # ℹ 27 more variables: precip_total [mm], precip_total_in [in],
#> # relative_humidity [%], sol_rad_total [MJ/m^2], sol_rad_total_ly [langleys],
#> # temp_airC [°C], temp_airF [degF], temp_soil_10cmC [°C],
#> # temp_soil_10cmF [degF], temp_soil_50cmC [°C], temp_soil_50cmF [degF],
#> # vp_actual [kPa], vp_deficit [kPa], wind_2min_spd_max_mph [miles/h],
#> # wind_2min_spd_max_mps [m/s], wind_2min_spd_mean_mph [miles/h],
#> # wind_2min_spd_mean_mps [m/s], wind_2min_timestamp <dttm>, …
This requires that you have the units
package installed
and will prompt you to do so if you don’t have it installed. It may also
be helpful to explicitly load the package with
library(units)
so that the resulting tibble displays the
units correctly.
az_add_units()
converts numeric vectors to those of
class “units”. These units columns behave differently than ordinary
numeric vectors and have a few useful properties. First, you can do unit
conversion using set_units()
from the units
package.
hourly %>%
transmute(wind_spd_kph = set_units(wind_spd_mps, "km/h"),
sol_rad_total = set_units(sol_rad_total, "W h m-2"),
temp_airK = set_units(temp_airF, "Kelvins"))
#> # A tibble: 31 × 3
#> wind_spd_kph sol_rad_total temp_airK
#> [km/h] [W*h/m^2] [K]
#> 1 2.52 0 281.
#> 2 4.68 0 288.
#> 3 4.32 0 278.
#> 4 2.16 0 283.
#> 5 2.88 0 283.
#> 6 1.44 0 283.
#> 7 3.24 0 286.
#> 8 3.6 0 276.
#> 9 0 0 285.
#> 10 0 0 286.
#> # ℹ 21 more rows
Second, it won’t allow you to do math where the units aren’t compatible.
hourly %>%
transmute(wind_rain = wind_spd_mps + precip_total)
#> Error in `transmute()`:
#> ℹ In argument: `wind_rain = wind_spd_mps + precip_total`.
#> Caused by error:
#> ! cannot convert mm into m/s
That also means that you generally cannot add or subtract unitless constants.
The units
package works with ggplot2
to
automatically include units in axis labels.
library(ggplot2)
ggplot(hourly, aes(x = wind_spd_mps, y = sol_rad_total)) +
geom_point() +
labs(x = "wind speed",
y = "total solar radiation")
#> Warning: The `scale_name` argument of `continuous_scale()` is deprecated as of ggplot2
#> 3.5.0.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
#> generated.