cf.netcdf_engine.NetCDF4ArrayConverter
cf.netcdf_engine.NetCDF4ArrayConverter(self, *, name='array', dim_order=None, cell_order='row-major', tile_order='row-major', capacity=0, tiles=None, dim_filters=None, offsets_filters=None, attrs_filters=None, allows_duplicates=False, sparse=False, registry=None, dim_registry=None, shared_dims=None)
Converter for a TileDB array from a collection of NetCDF variables.
Attributes
Name | Type | Description |
---|---|---|
cell_order | The order in which TileDB stores the cells on disk inside a tile. Valid values are: row-major (default) or C for row major; col-major or F for column major; or Hilbert for a Hilbert curve. |
|
tile_order | The order in which TileDB stores the tiles on disk. Valid values are: row-major or C (default) for row major; or col-major or F for column major. |
|
capacity | The number of cells in a data tile of a sparse fragment. | |
offsets_filters | Filters for the offsets for variable length attributes or dimensions. | |
attrs_filters | Default filters to use when adding an attribute to the array. | |
allows_duplicates | Specifies if multiple values can be stored at the same coordinate. Only allowed for sparse arrays. |