Skip to content
Snippets Groups Projects
Commit 48fda194 authored by Martin Lange's avatar Martin Lange
Browse files

remove unused function, test datetime conversion

parent 18c24494
No related branches found
No related tags found
1 merge request!235No xarray!
Pipeline #134734 passed with stages
in 5 minutes and 10 seconds
......@@ -21,32 +21,6 @@ _UNIT_CACHE = {}
_UNIT_PAIRS_CACHE = {}
def _gen_dims(ndim, info):
"""
Generate dimension names.
Parameters
----------
ndim : int
Number of dimensions.
info : Info
Info associated with the data.
Returns
-------
list
Dimension names.
"""
# create correct dims (time always first)
dims = ["time"]
if isinstance(info.grid, grid_spec.NoGrid):
# xarray has dim_0, dim_1 ... as default names
dims += [f"dim_{i}" for i in range(ndim)]
else:
dims += info.grid.data_axes_names
return dims
def to_xarray(data, info, time_entries=1, force_copy=False):
"""
Convert data to a xarray.DataArray.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment