modifyNcdfDefAtts: Define a set netCDF attributes at once

Description Usage Arguments Details Author(s) See Also Examples

Description

Easily define a couple of attributes for a single netCDF variable in one step.

Usage

1
modifyNcdfDefAtts(file.con, var.id, atts)

Arguments

file.con

a NetCDF object pointing to the respective netCDF file.

var.id

the variable id (integer) or name (string) for which to define attributes.

atts

list: the attributes to define (see details or an example).

Details

The atts attribute should be a list with as many elements as attributes should be added to the variable in the netCDF file. The names of the attributes are taken from the names of the elements of this list and the attribute values are defined by the values of the list elements. The type/class of the attribute (values) is determined automatically.

Author(s)

Jannis v. Buttlar

See Also

att.put.nc

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## needs an open connection to a valid netCDF file pointed to by file.con
attributes.define <- list(LongName = 'This is the long name',
                          missingValue = -99999,
                          units = 'm/s')
library(RNetCDF)
file.con   <- create.nc('test.nc')
dim.def.nc(file.con, 'testdim')
var.def.nc(file.con, 'test', 'NC_CHAR', 'testdim')
modifyNcdfDefAtts(file.con, 'test', atts = attributes.define)

## show all attributes
infoNcdfAtts(file.con, 'test')

ncdf.tools documentation built on May 2, 2019, 5:16 p.m.