Karl Malakoff
Results
2
issues of
Karl Malakoff
```python from collections import OrderedDict import xarray as xr import numpy as np sensor_string_np = np.zeros([12, 100], dtype='|S1') data_vars = {} data_vars['sensorName'] = xr.DataArray(data=sensor_string_np.copy(), attrs=OrderedDict([('_FillValue', ' '),]), name="sensorName", dims=("sensor", "string"))...