dim.inq.nc | R Documentation |
Inquire about a NetCDF dimension.
dim.inq.nc(ncfile, dimension)
ncfile |
Object of class |
dimension |
Either the ID or the name of the dimension to be inquired. |
This function returns information about a NetCDF dimension. Information about a dimension include its name, its ID, its length and a flag if it is the unlimited dimension of this NetCDF dataset, if any. The length of the unlimited dimension, if any, is the number of records written so far.
A list containing the following components:
id |
Dimension ID. |
name |
Dimension name. |
length |
Length of dimension. For the unlimited dimension, this is the number of records written so far. |
unlim |
|
Pavel Michna, Milton Woods
https://www.unidata.ucar.edu/software/netcdf/
## Create a new NetCDF dataset and define two dimensions
file1 <- tempfile("dim.inq_", fileext=".nc")
nc <- create.nc(file1)
dim.def.nc(nc, "station", 5)
dim.def.nc(nc, "time", unlim=TRUE)
## Inquire about the dimensions
dim.inq.nc(nc, 0)
dim.inq.nc(nc, "time")
close.nc(nc)
unlink(file1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.