When the eddy dictionary only identifies an eddy for a particular timestep it removes a dimension.
The data should always look like:
array([[0],[1]])
however, if the eddy is only identified in one time step it produces:
array([0]).
This produces issues and exceptions when saving the data into NetCDF or hdf5 formats, as well as when handling the data.
When the eddy dictionary only identifies an eddy for a particular timestep it removes a dimension. The data should always look like:
array([[0],[1]])
however, if the eddy is only identified in one time step it produces:array([0])
. This produces issues and exceptions when saving the data into NetCDF or hdf5 formats, as well as when handling the data.