Basic latitude-longitude netCDF ingest class#
Eva has the ability to read in simple netCDF files on a latitude-longitude or Gaussian grid that contain two and three dimensional variables as well as the latitude and longitude values needed for plotting on a map. One example type of file that can be read in using this class is a netCDF Gaussian grid increment file produced by the Gridpoint Statistical Interpolation (GSI) data assimilation software.
Latitude-longitude netCDF injest for batch processing#
An example YAML file may look like the following:
- name: experiment
type: LatLon
group: increment
filename: ./gdas.t00z.atminc.nc
variables: [T_inc, lat, lon]
The above keys are defined as follows:
name: the name of the dataset that gets propagated throughout evatype:LatLonto read in a Lat-Lon or Gaussian grid netCDF filegroup: the name of the group that gets propagated throughout evafilename: the path to the file you wish to read invariables: a list of all variables you wish to read in fromfilename
Following the eva convention, datasets will be available to the transforms and plots sections like so:
name::group::variable
where:
name=namedefined in the YAMLgroup=groupdefined in the YAMLvariableis the name of the variable specified in thevariableslist
Latitude-longitude netCDF injest for interactive processing#
This injest class is not yet implemented for eva interactive.