read_ncdf {stars} | R Documentation |
Read NetCDF into stars object
Description
Read data from a file (or source) using the NetCDF library directly.
Usage
read_ncdf(
.x,
...,
var = NULL,
ncsub = NULL,
curvilinear = character(0),
eps = sqrt(.Machine$double.eps),
ignore_bounds = FALSE,
make_time = TRUE,
make_units = TRUE,
proxy = NULL,
downsample = 0
)
Arguments
.x |
NetCDF file or source as a character vector or an nc_proxy object. |
... |
ignored |
var |
variable name or names (they must be on matching grids) |
ncsub |
matrix of start, count columns (see Details) |
curvilinear |
length two character named vector with names of variables holding longitude and latitude values for all raster cells. 'stars' attempts to figure out appropriate curvilinear coordinates if they are not supplied. |
eps |
numeric; dimension value increases are considered identical when they differ less than |
ignore_bounds |
logical; should bounds values for dimensions, if present, be ignored? |
make_time |
if |
make_units |
if |
proxy |
logical; if |
downsample |
integer; number of cells to omit between samples along each dimension.
e.g. |
Details
The following logic is applied to coordinates. If any coordinate axes have regularly spaced coordinate variables they are reduced to the offset/delta form with 'affine = c(0, 0)', otherwise the values of the coordinates are stored and used to define a rectilinear grid.
If the data has two or more dimensions and the first two are regular they are nominated as the 'raster' for plotting.
If the curvilinear
argument is used it specifies the 2D arrays
containing coordinate values for the first two dimensions of the data read. It is currently
assumed that the coordinates are 2D and that they relate to the first two dimensions in
that order.
If var
is not set the first set of variables on a shared grid is used.
start
and count
columns of ncsub must correspond to the variable dimension (nrows)
and be valid index using var.get.nc
convention (start is 1-based). If the count value
is NA
then all steps are included. Axis order must match that of the variable/s being read.
Examples
f <- system.file("nc/reduced.nc", package = "stars")
if (require(ncmeta, quietly = TRUE)) {
read_ncdf(f)
read_ncdf(f, var = c("anom"))
read_ncdf(f, ncsub = cbind(start = c(1, 1, 1, 1), count = c(10, 12, 1, 1)))
}
if (require(ncmeta, quietly = TRUE)) {
#' precipitation data in a curvilinear NetCDF
prec_file = system.file("nc/test_stageiv_xyt.nc", package = "stars")
prec = read_ncdf(prec_file, curvilinear = c("lon", "lat"), ignore_bounds = TRUE)
}
##plot(prec) ## gives error about unique breaks
## remove NAs, zeros, and give a large number
## of breaks (used for validating in detail)
qu_0_omit = function(x, ..., n = 22) {
x = units::drop_units(na.omit(x))
c(0, quantile(x[x > 0], seq(0, 1, length.out = n)))
}
if (require(dplyr, quietly = TRUE)) {
prec_slice = slice(prec, index = 17, along = "time")
plot(prec_slice, border = NA, breaks = qu_0_omit(prec_slice[[1]]), reset = FALSE)
nc = sf::read_sf(system.file("gpkg/nc.gpkg", package = "sf"), "nc.gpkg")
plot(st_geometry(nc), add = TRUE, reset = FALSE, col = NA)
}