Description Usage Arguments Value Author(s) References Examples
Export a loadeR grid to NetCDF
1 2 3 4 |
data |
A climate4R grid data object (http://www.meteo.unican.es/climate4R) |
NetCDFOutFile |
Name of the file created by the function. (default to |
missval |
Missing value codification (default to |
globalAttributes |
Optional. A list of global attributes included in the NetCDF file. Same format as |
varAttributes |
Optional. List of attributes to be included in the variable written in the NetCDF file. Default to |
prec |
Precision to write the attribute. If not specified, the written precision is given by the variable's
corresponding attribute. This can be overridden by specifying the following argument values:
|
compression |
Integer value between 1 (less compression) and 9 (highest compression), enabling compression for the variable as it is written to the file. Note that turning compression on forces the output file to netcdf v4 format (the default), not compatible with older software that can only handle version 3 files. |
shuffle |
Logical. Turns on ( |
verbose |
Optional. If set to |
gridNorthPole |
Vector with the longitude and latitude. Default is c("39.25","-162.0") |
coordBounds |
Default is NULL. |
A NetCDF-4 file with the variable and attributes defined in the inputs.
S. Herrera, W. Franssen and J. Bedia
David Pierce dpierce@ucsd.edu, Interface to Unidata netCDF (version 4 or earlier) format data files, http://dwpierce.com/software
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
library(loadeR.2nc)
data(tx) # A climate4R grid
# Name of output file:
fileName <- "tasmax_WFDEI_JJA_W2001_2010.nc4"
# Including a global attribute:
globalAttributeList <- list("institution" = "SantanderMetGroup, http://www.meteo.unican.es/")
# Including two variable attributes:
varAttributeList <- list(var_attr1 = "one_attribute", var_attr2 = "another_attribute")
# Create file:
grid2nc(data = tx,
NetCDFOutFile = fileName,
missval = 1e20,
prec = "float",
globalAttributes = globalAttributeList,
varAttributes = varAttributeList)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.