NcToArray: Read Names of Variables in a NetCDF File

View source: R/NcToArray.R

NcToArrayR Documentation

Read Names of Variables in a NetCDF File

Description

Reads the names of the variables in a NetCDF file and returns them as a vector of character strings.

Usage

NcToArray(
  file_to_read,
  dim_indices = NULL,
  vars_to_read = NULL,
  drop_var_dim = FALSE,
  unlist = TRUE,
  expect_all_indices = FALSE,
  allow_out_of_range = TRUE
)

Arguments

file_to_read

Path to the file to be read or a NetCDF object as returned by easyNCDF::NcOpen or ncdf4::nc_open.

dim_indices

Named list with numeric vectors of indices to take for each dimension. The names should correspond to the dimension names which to take the indices for. Non-consecutive indices can be specified. If expect_all_indices = FALSE (default), it is not mandatory to specify the indices for all (or even any of) the dimensions. In that case all the indices along such dimensions will be read in. If expect_all_indices = TRUE, then indices for all the dimensions have to be specified for the function to return a data array. In that case, NA can be used to request all indices for a dimension if desired.

Since this function considers the variables in a NetCDF file are stored along a 'var' dimension, indices for the (actually non-existing) 'var'/'variable' dimension can be specified. They can be specified in 3 ways:
- A vector of numeric indices: e.g. list(var = c(1, 3, 5)) to take the 1st, 3rd and 5th found variables.
- A vector of character strings with variable names: e.g. list(var = c('foo', 'bar')).
- A list of vectors with numeric indices or character strings: e.g. list(var = list(c(1, 3, 'foo'), c(2, 'bar')))
Vectors with combined numeric indices and character strings are accepted.
Whereas the first two options will return a single extended array with the merged variables, the second option will return a list with an array for each requested variable.

vars_to_read

This parameter is a shortcut to (and has less priority than) specifying the requested variable names via dim_indices = list(var = ...). It is useful when all the indices for all the requested variables have to be taken, so the parameter dim_indices can be skipped, but still only a specific variable or set of variables have to be taken. Check the documentation for the parameter dim_indices to see the three possible ways to specify this parameter.

drop_var_dim

Whether to drop the 'var' dimension this function assumes (read description). If multiple variables are requested in a vector and unlist = TRUE, the drop won't be performed (not possible).

unlist

Whether to merge the resulting array variables into a single array if possible (default) or not. Otherwise a list with as many arrays as requested variables is returned.

expect_all_indices

Whether the function should stop if indices are not provided for all the dimensions of any of the requested variables (TRUE) rather than assuming that all the indices are requested for the unspecified dimensions (FALSE). By default the later is done (FALSE).

allow_out_of_range

Whether to allow indices out of range (simply disregard them) or to stop if indices out of range are found.

Value

Vector of character strings with the names of the variables in the NetCDF file.

Author(s)

N. Manubens, nicolau.manubens@bsc.es

Examples

# Create an array from R
file_path <- tempfile(fileext = '.nc')
a <- array(1:9, dim = c(member = 3, time = 3))
# Store into a NetCDF twice, as two different variables
ArrayToNc(list(var_1 = a, var_2 = a + 1), file_path)
# Read the dimensions and variables in the created file
fnc <- NcOpen(file_path)
fnc_dims <- NcReadDims(fnc)
var_names <- NcReadVarNames(fnc)
# Read the two variables from the file into an R array
a_from_file <- NcToArray(fnc, vars_to_read = var_names)
NcClose(fnc)
# Check the obtained array matches the original array
print(a)
print(a_from_file[1, , ])


easyNCDF documentation built on June 7, 2023, 5:59 p.m.