Learn R Programming

⚠️There's a newer version (0.18.0) of this package.Take me there.

metR

metR packages several functions and utilities that make R better for handling meteorological data in the tidy data paradigm. It started mostly sa a packaging of assorted wrapers and tricks that I wrote for my day to day work as a researcher in atmospheric sciences. Since then, it has grown organically and for my own needs and feedback from users.

Conceptually it's divided into visualization tools and data tools. The former are geoms, stats and scales that help with plotting using ggplot2, such as stat_contour_fill() or scale_y_level(), while the later are functions for common data processing tools in the atmospheric sciences, such as Derivate() or EOF(); these are implemented to work in the data.table paradigm, but also work with regular data frames.

Currently metR is in developement but maturing. Most functions check arguments and there are some tests. However, some functions might change it's interface, and functionality can be moved to other packages, so please bear that in mind.

Installation

You can install metR from CRAN with:

install.packages("metR")

Or the developement version with:

# install.packages("devtools")
devtools::install_github("eliocamp/metR")

If you need to read netcdf files, you might need to install the netcdf and udunits2 libraries. On Ubuntu and it's derivatives this can be done by typing

sudo apt install libnetcdf-dev netcdf-bin libudunits2-dev

Examples

In this example we easily perform Principal Components Decomposition (EOF) on monthly geopotential height, then compute the geostrophic wind associated with this field and plot the field with filled contours and the wind with streamlines.

library(metR)
library(data.table)
library(ggplot2)
data(geopotential)
# Use Empirical Orthogonal Functions to compute the Antarctic Oscillation
geopotential <- copy(geopotential)
geopotential[, gh.t.w := Anomaly(gh)*sqrt(cos(lat*pi/180)),
      by = .(lon, lat, month(date))]
aao <- EOF(gh.t.w ~ lat + lon | date, data = geopotential, n = 1)
aao$left[, c("u", "v") := GeostrophicWind(gh.t.w, lon, lat)]

# AAO field
binwidth <- 0.01
ggplot(aao$left, aes(lon, lat, z = gh.t.w)) +
    geom_contour_fill(binwidth = binwidth, xwrap = c(0, 360)) +    # filled contours!
    geom_streamline(aes(dx = dlon(u, lat), dy = dlat(v)), 
                    size = 0.4, L = 80, skip = 3, xwrap = c(0, 360)) +
    scale_x_longitude() +
    scale_y_latitude(limits = c(-90, -20)) +
    scale_fill_divergent(name = "AAO pattern", 
                         breaks = MakeBreaks(binwidth),
                         guide = guide_colorstrip()) +
    coord_polar()
#> Warning in .check_wrap_param(list(...)): 'xwrap' and 'ywrap' will be
#> deprecated. Use ggperiodic::periodic insead.

# AAO signal
ggplot(aao$right, aes(date, gh.t.w)) +
    geom_line() +
    geom_smooth(span = 0.4)
#> `geom_smooth()` using method = 'loess' and formula 'y ~ x'

You can read more in the vignettes: Visualization tools and Working with data.

Copy Link

Version

Install

install.packages('metR')

Monthly Downloads

4,524

Version

0.3.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Elio Campitelli

Last Published

March 12th, 2019

Functions in metR (0.3.0)

ConvertLongitude

Converts between longitude conventions
geom_arrow

Arrows
geom_contour2

2d contours of a 3d surface
guide_colourstrip

Discretized continuous color guide
guide_vector

Reference arrow for magnitude scales
scale_mag

Scale for vector magnitudes
GeostrophicWind

Calculate geostrophic winds
season

Assign seasons to months
GetSMNData

Get Meteorological data
Percentile

Percentiles
ReadNetCDF

Read NetCDF files.
JumpBy

Skip observations
WrapCircular

Wrap periodic data to any range
Mag

Magnitude of a vector
as.path

Interpolates between locations
geom_label_contour

Label contours
metR

metR: Tools for Easier Analysis of Meteorological Fields
geopotential

Geopotential height
reverselog_trans

Reverse log transform
thermodynamics

Thermodynamics
waves

Fourier transform
Derivate

Derivate a discrete variable using finite differences
DivideTimeseries

Divides long timeseries for better reading
ImputeEOF

Impute missing values
Interpolate

Bilinear interpolation
coriolis

Effects of the Earth's rotation
cut.eof

Remove some principal components.
GetTopography

Get topographic data
Impute2D

Impute missing values by linear or constant interpolation
MakeBreaks

Functions for making breaks
MaskLand

Mask
geom_contour_fill

Filled 2d contours of a 3d surface
scale_divergent

Divergent color scales
scale_longitude

Helpful scales for maps
geom_contour_tanaka

Illuminated contours
stat_subset

Subset values
temperature

Air temperature
EOF

Empirical Orthogonal Function
FitLm

Fast estimates of linear regression
geom_relief

Relief Shading
geom_streamline

Streamlines
logic

Extended logical operators
map_labels

Label longitude and latitude
spherical

Transform between spherical coordinates and physical coordinates
stat_na

Filter only NA values.
Anomaly

Anomalies
Trajectory

Compute trajectories
WaveFlux

Calculate wave-activity flux