Learn R Programming

ncmeta

The ncmeta package provides straightforward NetCDF metadata, with a set of consistent entity-based functions for extracting metadata from a file or online source. We aim to fill a gap in between the generality and power of the NetCDF framework and ease of use.

There are two main packages for using NetCDF in R, RNetCDF and ncdf4 and ncmeta uses both, where appropriate. Both packages are very close the native API of NetCDF itself, and ncmeta simply provides an easier high-level interpretation.

About NetCDF

NetCDF is both a data model and an API, and provides a very general framework for expressing data formats. The explicit entities in NetCDF are variables, dimensions and attributes and ncmeta provides functions nc_vars, nc_dims, and nc_atts to extract their names, order and other metadata. There are matching functions nc_var, nc_dim, and nc_att with an extra identifier to extract specific information about an individual variable, dimension, or attribute.

Also includes functions for implicit entities, these are grids and axes. These don’t exist in the NetCDF specification explicitly, but are meaningful and worth making explicit. Many NetCDF tools don’t explicitly present these concepts so grab hold of them with ncmeta!

A grid is an ordered set of dimensions, and the Unidata site refers informally to this concept as shape.

An axis is an instance of a dimension, the use of that dimension within a particular variable.

These functions provide a more developer-friendly scheme for working with the range of formats provided by the NetCDF ecosystem.

Installation

Install ncmeta from CRAN with:

install.packages("ncmeta")

You can install the development version of ncmeta from github with:

# install.packages("devtools")
devtools::install_github("hypertidy/ncmeta")

Example

This example shows some of the functions for extracting information from a NetCDF source.

library(ncmeta)
filename <- system.file("extdata", "S2008001.L3m_DAY_CHL_chlor_a_9km.nc", package = "ncmeta")
nc_inq(filename) # one-row summary of file

nc_dim(filename, 0)  ## first dimension
nc_dims(filename)  ## all dimensions

Get involved!

Please let us know if you have any feedback, see the Issues tab if you found a bug or have a question. Feel free to email the maintainer directly for other questions.


Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Copy Link

Version

Install

install.packages('ncmeta')

Monthly Downloads

1,843

Version

0.4.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Michael D. Sumner

Last Published

March 25th, 2024

Functions in ncmeta (0.4.0)

ncmeta-package

ncmeta: Straightforward 'NetCDF' Metadata
nc_grids

NetCDF grids
nc_meta

Top level NetCDF metadata.
nc_prj_to_gridmapping

Get NetCDF-CF grid mapping from projection
nc_inq

File info
nc_gm_to_prj

Get projection from NetCDF-CF Grid Mapping
nc_dims

NetCDF dimension
nc_axes

NetCDF axes
nc_coord_var

Get Coordinate Variables for Given Variable
nc_atts

NetCDF attributes
nc_axis

NetCDF axes
nc_att

NetCDF attributes
nc_dim

NetCDF variables Obtain information about a single dimension by index.
nc_grid_mapping_atts

Get Grid Mapping
nc_extended

NetCDF extended dimension attributes
nc_vars

NetCDF variables
nc_sources

NetCDF sources
nc_var

NetCDF variable