cf.netcdf_engine.NetCDF4CoordToDimConverter
cf.netcdf_engine.NetCDF4CoordToDimConverter(self, name, domain, dtype, input_dim_name, input_var_name, input_var_dtype, unpack, *, registry=None)
Converter for a NetCDF variable/dimension pair to a TileDB dimension.
Parameters
Name | Type | Description | Default |
---|---|---|---|
name |
str | Name of the TileDB dimension. | required |
domain |
typing.Optional[typing.Tuple[typing.Optional[tiledb.cf._utils.DType], typing.Optional[tiledb.cf._utils.DType]]] | The (inclusive) interval on which the dimension is valid. | required |
dtype |
numpy.numpy.dtype | The numpy dtype of the values and domain of the dimension. | required |
input_dim_name |
str | The name of input NetCDF dimension. | required |
input_var_name |
str | The name of input NetCDF variable. | required |
input_var_dtype |
numpy.numpy.dtype | The numpy dtype of the input NetCDF variable. | required |
Attributes
Name | Type | Description |
---|---|---|
name | Name of the TileDB dimension. | |
domain | The (inclusive) interval on which the dimension is valid. | |
dtype | The numpy dtype of the values and domain of the dimension. | |
input_dim_name | The name of input NetCDF dimension. | |
input_var_name | The name of input NetCDF variable. | |
input_var_dtype | The numpy dtype of the input NetCDF variable. |