cfdm.read¶
- cfdm.read(datasets, external=None, extra=None, verbose=None, warnings=False, warn_valid=False, mask=True, unpack=True, domain=False, netcdf_backend=None, storage_options=None, cache=True, dask_chunks='storage-aligned', store_dataset_chunks=True, cfa=None, cfa_write=None, to_memory=False, squeeze=False, unsqueeze=False, dataset_type=None, recursive=False, followlinks=False, cdl_string=False, extra_read_vars=None, **kwargs)[source]¶
Read field or domain constructs from a dataset.
The following file formats are supported: netCDF, CDL, and Zarr.
NetCDF and Zarr datasets may be on local disk, on an OPeNDAP server, or in an S3 object store.
CDL files must be on local disk.
Any amount of files of any combination of file types may be read.
The returned constructs are sorted by the netCDF variable names of their corresponding data or domain variables.
NetCDF unlimited dimensions
Domain axis constructs that correspond to NetCDF unlimited dimensions may be accessed with the
nc_is_unlimited
andnc_set_unlimited
methods of a domain axis construct.NetCDF hierarchical groups
Hierarchical groups in CF provide a mechanism to structure variables within netCDF4 datasets. Field constructs are constructed from grouped datasets by applying the well defined rules in the CF conventions for resolving references to out-of-group netCDF variables and dimensions. The group structure is preserved in the field construct’s netCDF interface. Groups were incorporated into CF-1.8. For files with groups that state compliance to earlier versions of the CF conventions, the groups will be interpreted as per the latest release of the CF conventions.
CF-compliance
If the dataset is partially CF-compliant to the extent that it is not possible to unambiguously map an element of the netCDF dataset to an element of the CF data model, then a field construct is still returned, but may be incomplete. This is so that datasets which are partially conformant may nonetheless be modified in memory and written to new datasets.
Such “structural” non-compliance would occur, for example, if the “coordinates” attribute of a CF-netCDF data variable refers to another variable that does not exist, or refers to a variable that spans a netCDF dimension that does not apply to the data variable. Other types of non-compliance are not checked, such whether or not controlled vocabularies have been adhered to. The structural compliance of the dataset may be checked with the
dataset_compliance
method of the returned constructs, as well as optionally displayed when the dataset is read by setting the warnings parameter.CDL files
A file is considered to be a CDL representation of a netCDF dataset if it is a text file whose first non-comment line starts with the seven characters “netcdf “ (six letters followed by a space). A comment line is identified as one which starts with any amount white space (including none) followed by “//” (two slashes). It is converted to a temporary netCDF4 file using the external
ncgen
command, and the temporary file persists until the end of the Python session, at which time it is automatically deleted. The CDL file may omit data array values (as would be the case, for example, if the file was created with the-h
or-c
option toncdump
), in which case the the relevant constructs in memory will be created with data with all missing values.Performance
Descriptive properties are always read into memory, but lazy loading is employed for all data arrays, unless the to_memory parameter has been set.
Added in version (cfdm): 1.7.0
See also
- Parameters:
- dataset: (arbitrarily nested sequence of)
str
A string, or arbitrarily nested sequence of strings, giving the dataset names, or directory names, from which to read field or domain constructs.
Local names may be relative paths and will have tilde and shell environment variables expansions applied to them, followed by the replacement of any UNIX wildcards (such as
*
,?
,[a-z]
, etc.) with the list of matching names. Remote names (i.e. those with an http or s3 schema), however, are not transformed in any way.Directories will be walked through to find their contents (recursively if recursive is True), unless the directory defines a Zarr dataset (which is ascertained by presence in the directory of appropriate Zarr metadata files).
Remote datasets (i.e. those with an http or s3 schema) are assumed to be netCDF files, or else Zarr datasets if the dataset_type parameter is set to
'Zarr'
.As a special case, if the cdl_string parameter is True, then interpretation of datasets changes so that each string is assumed to be an actual CDL representation of a dataset, rather than a than a file or directory name.
- Example:
The local dataset
file.nc
in the user’s home directory could be described by any of the following:'$HOME/file.nc'
,'${HOME}/file.nc'
,'~/file.nc'
,'~/tmp/../file.nc'
- Example:
The local datasets
file1.nc
andfile2.nc
could be described by any of the following:['file1.nc', 'file2.nc']
,'file[12].nc'
- recursive:
bool
, optional If True then recursively read sub-directories of any directories specified with the datasets parameter.
Added in version (cfdm): 1.12.2.0
- followlinks:
bool
, optional If True, and recursive is True, then also search for datasets in sub-directories which resolve to symbolic links. By default directories which resolve to symbolic links are ignored. Ignored of recursive is False. Datasets which are symbolic links are always followed.
Note that setting
recursive=True, followlinks=True
can lead to infinite recursion if a symbolic link points to a parent directory of itself.Added in version (cfdm): 1.12.2.0
- cdl_string:
bool
, optional If True and the format to read is CDL then each string given by the datasets parameter is interpreted as a string of actual CDL rather than the name of a location from which field or domain constructs can be read.
Note that when
cdl_string
is True, thefmt
parameter is ignored as the format is assumed to be CDL, so in this case it is not necessary to also specifyfmt='CDL'
.- dataset_type:
None
or (sequence of)str
, optional Only read datasets of the given type or types, ignoring others. If there are no dataset of the given types, or dataset_type is empty sequence, then an empty list is returned. If
None
(the default) all datasets defined by the dataset parameter are read, and an exception is raised for any invalid dataset type.Valid file types are:
dataset_type
Description
'netCDF'
A netCDF-3 or netCDF-4 dataset
'CDL'
A text CDL file of a netCDF dataset
'Zarr'
A Zarr v2 (xarray) or Zarr v3 dataset
Added in version (cfdm): 1.12.2.0
- external: (sequence of)
str
, optional Read external variables (i.e. variables which are named by attributes, but are not present, in the parent file given by the filename parameter) from the given external files. Ignored if the parent file does not contain a global
external_variables
attribute. Multiple external files may be provided, which are searched in random order for the required external variables.If an external variable is not found in any external files, or is found in multiple external files, then the relevant metadata construct is still created, but without any metadata or data. In this case the construct’s
is_external
method will returnTrue
.- Parameter example:
external='cell_measure.nc'
- Parameter example:
external=['cell_measure.nc']
- Parameter example:
external=('cell_measure_A.nc', 'cell_measure_O.nc')
- extra: (sequence of)
str
, optional Create extra, independent fields from netCDF variables that correspond to particular types of metadata constructs. Ignored if domain is True.
The extra parameter may be one, or a sequence, of:
extra
Metadata constructs
'field_ancillary'
Field ancillary constructs
'domain_ancillary'
Domain ancillary constructs
'dimension_coordinate'
Dimension coordinate constructs
'auxiliary_coordinate'
Auxiliary coordinate constructs
'cell_measure'
Cell measure constructs
- Parameter example:
To create fields from auxiliary coordinate constructs:
extra='auxiliary_coordinate'
orextra=['auxiliary_coordinate']
.- Parameter example:
To create fields from domain ancillary and cell measure constructs:
extra=['domain_ancillary', 'cell_measure']
.
An extra field construct created via the extra parameter will have a domain limited to that which can be inferred from the corresponding netCDF variable, but without the connections that are defined by the parent netCDF data variable. It is possible to create independent fields from metadata constructs that do incorporate as much of the parent field construct’s domain as possible by using the
convert
method of a returned field construct, instead of setting the extra parameter.- verbose:
int
orstr
orNone
, optional If an integer from
-1
to3
, or an equivalent string equal ignoring case to one of:'DISABLE'
(0
)'WARNING'
(1
)'INFO'
(2
)'DETAIL'
(3
)'DEBUG'
(-1
)
set for the duration of the method call only as the minimum cut-off for the verboseness level of displayed output (log) messages, regardless of the globally-configured
cfdm.log_level
. Note that increasing numerical value corresponds to increasing verbosity, with the exception of-1
as a special case of maximal and extreme verbosity.Otherwise, if
None
(the default value), output messages will be shown according to the value of thecfdm.log_level
setting.Overall, the higher a non-negative integer or equivalent string that is set (up to a maximum of
3
/'DETAIL'
) for increasing verbosity, the more description that is printed to convey how the contents of the netCDF file were parsed and mapped to CF data model constructs.- warnings:
bool
, optional If True then print warnings when an output field construct is incomplete due to structural non-compliance of the dataset. By default such warnings are not displayed.
- warn_valid:
bool
, optional If True then print a warning for the presence of
valid_min
,valid_max
orvalid_range
properties on field constructs and metadata constructs that have data. By default no such warning is issued.“Out-of-range” data values in the file, as defined by any of these properties, are automatically masked by default, which may not be as intended. See the mask parameter for turning off all automatic masking.
Added in version (cfdm): 1.8.3
- mask:
bool
, optional If True (the default) then mask by convention the data of field and metadata constructs.
A netCDF array is masked depending on the values of any of the netCDF attributes
_FillValue
,missing_value
,_Unsigned
,valid_min
,valid_max
, andvalid_range
.Added in version (cfdm): 1.8.2
- unpack:
bool
If True, the default, then unpack arrays by convention when the data is read from disk.
Unpacking is determined by netCDF conventions for the following variable attributes:
add_offset
,scale_factor
, and_Unsigned
.Added in version (cfdm): 1.11.2.0
- domain:
bool
, optional If True then return only the domain constructs that are explicitly defined by CF-netCDF domain variables, ignoring all CF-netCDF data variables. By default only the field constructs defined by CF-netCDF data variables are returned.
CF-netCDF domain variables are only defined from CF-1.9, so older datasets automatically contain no CF-netCDF domain variables.
The unique domain constructs of the dataset are found with the
cfdm.unique_constructs
function. For example:>>> d = cfdm.read('file.nc', domain=True) >>> ud = cfdm.unique_constructs(d) >>> f = cfdm.read('file.nc') >>> ufd = cfdm.unique_constructs(x.domain for x in f)
Added in version (cfdm): 1.9.0.0
- netcdf_backend:
None
or (sequence of)str
, optional Specify which library, or libraries, to use for opening and reading netCDF files. By default, or if
None
, then the first one ofh5netcdf
andnetCDF4
to successfully open the netCDF file is used. The libraries will be used in the order given, until a file is successfully opened.}Added in version (cfdm): 1.11.2.0
- storage_options:
dict
orNone
, optional Pass parameters to the backend file system driver, such as username, password, server, port, etc. How the storage options are interpreted depends on the location of the file:
Local File System: Storage options are ignored for local files.
HTTP(S): Storage options are ignored for files available across the network via OPeNDAP.
S3-compatible services: The backend used is
s3fs
, and the storage options are used to initialise ans3fs.S3FileSystem
file system object. By default, or ifNone
, then storage_options is taken as{}
.If the
'endpoint_url'
key is not in storage_options, nor in a dictionary defined by the'client_kwargs'
key (both of which are the case when storage_options isNone
), then one will be automatically inserted for accessing an S3 file. For instance, with a file name of's3://store/data/file.nc'
, an'endpoint_url'
key with value'https://store'
would be created. To disable this, set the'endpoint_url'
key toNone
.- Parameter example:
For a file name of
's3://store/data/file.nc'
, the following are equivalent:None
,{}
,{'endpoint_url': 'https://store'}
, and{'client_kwargs': {'endpoint_url': 'https://store'}}
- Parameter example:
{'key': 'scaleway-api-key...', 'secret': 'scaleway-secretkey...', 'endpoint_url': 'https://s3.fr-par.scw.cloud', 'client_kwargs': {'region_name': 'fr-par'}}
Added in version (cfdm): 1.11.2.0
- cache:
bool
, optional If True, the default, then cache the first and last array elements of metadata constructs (not field constructs) for fast future access. In addition, the second and penultimate array elements will be cached from coordinate bounds when there are two bounds per cell. For remote data, setting cache to False may speed up the parsing of the file.
Added in version (cfdm): 1.11.2.0
- dask_chunks:
str
,int
,None
, ordict
, optional Specify the Dask chunking for data. May be one of the following:
'storage-aligned'
This is the default. The Dask chunk size in bytes will be as close as possible the size given by
cfdm.chunksize
, favouring square-like chunk shapes, with the added guarantee that the entirety of each storage chunk lies within exactly one Dask chunk. This strategy is general the most performant, as it ensures that when accessing the data, each storage chunk is read from disk at most once (as opposed to once per Dask chunk in which it lies).For instance, consider a file variable that has an array of 64-bit floats with shape (400, 300, 60) and a storage chunk shape of (100, 5, 60). This has an overall size of 54.93 MiB, partitioned into 240 storage chunks each of size 100*5*60*8 bytes = 0.23 MiB. Then:
If
cfdm.chunksize
returns 134217728 (i.e. 128 MiB), then the storage-aligned Dask chunks will have shape (400, 300, 60), giving 1 Dask chunk with size of 54.93 MiB (compare with a Dask chunk shape of (400, 300, 60) and size 54.93 MiB when dask_chunks is'auto'
.)If
cfdm.chunksize
returns 33554432 (i.e. 32 MiB), then the storage-aligned Dask chunks will have shape (200, 260, 60), giving 4 Dask chunks with a maximum size of 23.80 MiB (compare with a Dask chunk shape of (264, 264, 60) and maximum size 31.90 MiB when dask_chunks is'auto'
.)If
cfdm.chunksize
returns 4194304 (i.e. 4 MiB), then the storage-aligned Dask chunks will have shape (100, 85, 60), giving 16 Dask chunks with a maximum size of 3.89 MiB (compare with a Dask chunk shape of (93, 93, 60) and maximum size 3.96 MiB when dask_chunks is'auto'
.)
There are, however, some occasions when, for particular data arrays in the file, the
'auto'
option will automatically be used instead of storage-aligned Dask chunks. This occurs when:The data array in the file is stored contiguously.
The data array in the file is compressed by convention (e.g. ragged array representations, compression by gathering, subsampled coordinates, etc.). In this case the Dask chunks are for the uncompressed data, and so cannot be aligned with the storage chunks of the compressed array in the file.
'storage-exact'
Each Dask chunk will contain exactly one storage chunk and each storage chunk will lie entirely within exactly one Dask chunk.
For instance, consider a file variable that has an array of 64-bit floats with shape (400, 300, 60) and a storage chunk shape of (100, 5, 60). This has an overall size of 54.93 MiB, partitioned into 240 storage chunks each of size 100*5*60*8 bytes = 0.23 MiB. The corresponding storage-exact Dask chunks will also have shape (100, 5, 60), giving 240 Dask chunks with a maximum size of 0.23 MiB.
There are, however, some occasions when, for particular data arrays in the file, the
'auto'
option will automatically be used instead of storage-exact Dask chunks. This occurs when:The data array in the file is stored contiguously.
The data array in the file is compressed by convention (e.g. ragged array representations, compression by gathering, subsampled coordinates, etc.). In this case the Dask chunks are for the uncompressed data, and so cannot be aligned with the storage chunks of the compressed array in the file.
auto
The Dask chunk size in bytes will be as close as possible to the size given by
cfdm.chunksize
, favouring square-like chunk shapes. This may give similar Dask chunk shapes as the'storage-aligned'
option, but without the guarantee that each storage chunk will lie entirely within exactly one Dask chunk.A byte-size given by a
str
The Dask chunk size in bytes will be as close as possible to the given byte-size, favouring square-like chunk shapes. Any string value, accepted by the chunks parameter of the
dask.array.from_array
function is permitted. There is no guarantee that a storage chunk lies entirely within one Dask chunk.- Example:
A Dask chunksize of 2 MiB may be specified as
'2097152'
or'2 MiB'
.
-1
orNone
There is no Dask chunking, i.e. every data array has one Dask chunk regardless of its size. In this case each storage chunk is guaranteed to lie entirely within the one Dask chunk.
Positive
int
Every dimension of all Dask chunks has this number of elements. There is no guarantee that a storage chunk lies entirely within one Dask chunk.
- Example:
For 3-dimensional data, dask_chunks of
10
will give Dask chunks with shape (10, 10, 10).
-
Each of dictionary key identifies a file dimension, with a value that defines the Dask chunking for that dimension whenever it is spanned by a data array. A file dimension is identified in one of three ways:
the netCDF dimension name, preceded by
ncdim%
(e.g.
'ncdim%lat'
);the value of the “standard name” attribute of a CF-netCDF coordinate variable that spans the dimension (e.g.
'latitude'
);the value of the “axis” attribute of a CF-netCDF coordinate variable that spans the dimension (e.g.
'Y'
).
The dictionary values may be a byte-size string,
'auto'
,int
orNone
, with the same meanings as those types for the dask_chunks parameter itself, but applying only to the specified dimension. In addition, a dictionary value may be atuple
orlist
of integers that sum to the dimension size.Not specifying a file dimension in the dictionary is equivalent to it being defined with a value of
'auto'
.- Example:
{'T': '0.5 MiB', 'Z': 'auto', 'Y': [36, 37], 'X': None}
- Example:
If a netCDF file contains dimensions
time
,z
,lat
, andlon
, then{'ncdim%time': 12, 'ncdim%lat', None, 'ncdim%lon': None}
will ensure that alltime
axes have a Dask chunksize of 12; alllat
andlon
axes are not Dask chunked; and allz
axes are Dask chunked to comply as closely as possible with the default Dask chunk size.If the netCDF file also contains a
time
coordinate variable with a “standard_name” attribute of'time'
or “axis” attribute of'T'
, then the samedask
chunking could be specified with either{'time': 12, 'ncdim%lat', None, 'ncdim%lon': None}
or{'T': 12, 'ncdim%lat', None, 'ncdim%lon': None}
.
Added in version (cfdm): 1.11.2.0
store_dataset_chunks:
bool
, optionalIf True (the default) then store the dataset chunking strategy for each returned data array. The dataset chunking strategy is then accessible via an object’s
nc_dataset_chunksizes
method. When the dataset chunking strategy is stored, it will be used when the data is written to a new netCDF file withcfdm.write
(unless the strategy is modified prior to writing).If False, or if the dataset being read does not support chunking (such as a netCDF-3 dataset), then no dataset chunking strategy is stored (i.e. an
nc_dataset_chunksizes
method will returnNone
for allData
objects). In this case, when the data is written to a new netCDF file, the dataset chunking strategy will be determined bycfdm.write
.See the
cfdm.write
dataset_chunks parameter for details on how the dataset chunking strategy is determined at the time of writing.Added in version (cfdm): 1.11.2.0
- cfa:
dict
, optional Configure the reading of CF-netCDF aggregation files.
The dictionary may have any subset of the following key/value pairs that supplement or override the information read from the file:
'replace_directory'
:dict
A dictionary whose key/value pairs define modifications to be applied to the directories of the fragment file locations. The dictionary comprises keyword arguments to the cfdm.Data.replace_directory` method, which is used to make the the changes. The aggregation file being read is unaltered. An empty dictionary results in no modifications.
- Example:
Replace a leading
data/model
withhome
, wherever it occurs:{'replace_directory': {'old': 'data/model', 'new': 'home'}}
- Example:
Normalise all file locations and replace a leading
/archive
with/data/obs
, wherever it occurs:{'replace_directory': {'old': '/archive', 'new': '/data/obs', 'normalise': True}}
- Example:
Normalise all file locations and remove a leading
/data`, wherever it occurs: ``{'replace_directory': {'old': '/data', 'normalise': True}}
.
Added in version (cfdm): 1.12.0.0
- cfa_write: (sequence of)
str
, optional Register the intention for named construct types to be subsequently written as CF-netCDF aggregation variables.
This makes no difference to the logical content of any construct, but ensures that the data of each of specified construct types will have only one Dask chunk, regardless of the setting of dask_chunks, which is a requirement for the creation CF-netCDF aggregation variables.
The cfa_write parameter may be one, or a sequence, of:
cfa_write
Construct types
'field'
Field constructs
'field_ancillary'
Field ancillary constructs
'domain_ancillary'
Domain ancillary constructs
'dimension_coordinate'
Dimension coordinate constructs
'auxiliary_coordinate'
Auxiliary coordinate constructs
'cell_measure'
Cell measure constructs
'domain_topology'
Domain topology constructs
'cell_connectivity'
Cell connectivity constructs
'all'
All constructs
Note
If the dask_chunks parameter is set to
None
or-1
then the data of all constructs will already have only one Dask chunk, so in this case setting cfa_write will have no further effect.- Example:
To register field constructs to be written as CF-netCDF aggregation variables:
cfa_write='field'
orcfa_write=['field']
.- Example:
To register field and auxiliary coordinate constructs to be written as CF-netCDF aggregation variables:
cfa_write=['field', 'auxiliary_coordinate']
.
Added in version (cfdm): 1.12.0.0
- to_memory: (sequence of)
str
, optional Read all data arrays of the named construct types into memory. By default, lazy loading is employed for all data arrays.
The to_memory parameter may be one, or a sequence, of:
to_memory
Construct types
'all'
All constructs
'metadata'
All metadata constructs (i.e. all constructs except Field constructs)
'field'
Field constructs
'field_ancillary'
Field ancillary constructs
'domain_ancillary'
Domain ancillary constructs
'dimension_coordinate'
Dimension coordinate constructs
'auxiliary_coordinate'
Auxiliary coordinate constructs
'cell_measure'
Cell measure constructs
'domain_topology'
Domain topology constructs
'cell_connectivity'
Cell connectivity constructs
- Example:
To read field construct data arrays into memory:
to_memory='field'
orto_memory=['field']
.- Example:
To read field and auxiliary coordinate construct data arrays into memory:
to_memory=['field', 'auxiliary_coordinate']
.
Added in version (cfdm): 1.12.0.0
- squeeze:
bool
, optional If True then remove all size 1 dimensions from field construct data arrays, regardless of how the data are stored in the dataset. If False (the default) then the presence or not of size 1 dimensions is determined by how the data are stored in its dataset.
Added in version (cfdm): 1.12.0.0
- unsqueeze:
bool
, optional If True then ensure that field construct data arrays span all of the size 1 dimensions, regardless of how the data are stored in the dataset. If False (the default) then the presence or not of size 1 dimensions is determined by how the data are stored in its dataset.
Added in version (cfdm): 1.12.0.0
- ignore_unknown_type: Deprecated at version 1.12.2.0
Use dataset_type instead.
- dataset: (arbitrarily nested sequence of)
- Returns:
Examples
>>> x = cfdm.read('file.nc') >>> print(type(x)) <type 'list'>
Read a file and create field constructs from CF-netCDF data variables as well as from the netCDF variables that correspond to particular types metadata constructs:
>>> f = cfdm.read('file.nc', extra='domain_ancillary') >>> g = cfdm.read('file.nc', extra=['dimension_coordinate', ... 'auxiliary_coordinate'])
Read a file that contains external variables:
>>> h = cfdm.read('parent.nc') >>> i = cfdm.read('parent.nc', external='external.nc') >>> j = cfdm.read('parent.nc', external=['external1.nc', 'external2.nc'])