dbz_to_eta | R Documentation |
Converts reflectivity factor (dBZ) to reflectivity (eta).
dbz_to_eta(dbz, wavelength, K = sqrt(0.93))
dbz |
Numeric. Reflectivity factor, in dBZ. |
wavelength |
Numeric. Radar wavelength, in cm. |
K |
Numeric. Norm of the complex refractive index of water. |
Reflectivity, in cm^2/km^3.
eta_to_dbz()
# Calculate eta for a 7 dBZ reflectivity factor at C-band:
dbz_to_eta(7, 5)
# Calculate eta for a 7 dBZ reflectivity factor at S-band:
dbz_to_eta(7, 10)
# Calculate animal density for a 5 dBZ reflectivity factor, assuming a
# radar cross section of 11 cm^2 per individual
dbz_to_eta(7, 5) / 11 # C-band
dbz_to_eta(7, 10) / 11 # S-band
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.