att.put.nc {RNetCDF} | R Documentation |
Put an attribute to a NetCDF dataset.
att.put.nc(ncfile, variable, name, type, value)
ncfile |
Object of class "NetCDF " which points to the NetCDF dataset (as returned from open.nc ). |
variable |
ID or name of the variable to which the attribute will be assigned or "NC_GLOBAL" for a global attribute. |
name |
Attribute name. Must begin with an alphabetic character, followed by zero or more alphanumeric characters including the underscore ("_ "). Case is significant. Attribute name conventions are assumed by some NetCDF generic applications, e.g., units as the name for a string attribute that gives the units for a NetCDF variable. |
type |
One of the set of predefined NetCDF external data types. The valid NetCDF external data types are NC_BYTE , NC_CHAR , NC_SHORT , NC_INT , NC_FLOAT , and NC_DOUBLE . |
value |
Attribute value. This can be either a single numeric value or a vector of numeric values, or alternatively a character string. |
Names commencing with underscore ("_
") are reserved for use by the NetCDF library. Most generic applications that process NetCDF datasets assume standard attribute conventions and it is strongly recommended that these be followed unless there are good reasons for not doing so.
NC_BYTE
is always interpreted as signed.
Pavel Michna
http://www.unidata.ucar.edu/packages/netcdf/
## Create a new NetCDF dataset and define two dimensions nc <- create.nc("foo.nc") dim.def.nc(nc, "station", 5) dim.def.nc(nc, "time", unlim=TRUE) ## Create two variables, one as coordinate variable var.def.nc(nc, "time", "NC_INT", "time") var.def.nc(nc, "temperature", "NC_DOUBLE", c(0,1)) ## Put some attributes att.put.nc(nc, "temperature", "missing_value", "NC_DOUBLE", -99999.9) att.put.nc(nc, "temperature", "long_name", "NC_CHAR", "air temperature") att.put.nc(nc, "NC_GLOBAL", "title", "NC_CHAR", "Data from Foo") att.put.nc(nc, "NC_GLOBAL", "history", "NC_CHAR", paste("Created on", date())) close.nc(nc)