You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function in the library tried to use Numba to speed up the computation, but received an array of type numpy.ma.MaskedArray that is not supported by Numba.
#221
Closed
joyyy1407 opened this issue
Nov 7, 2023
· 2 comments
Hello, thank you very much for providing this method for you to learn, but I have the following problem when running the pet_sla_and_adt, and I have tried multiple methods and still not solved, so I came to you for help:
import os
os.environ['NUMBA_DISABLE_JIT'] = '1'
from py_eddy_tracker.dataset.grid import GridDataset
Hello, thank you very much for providing this method for you to learn, but I have the following problem when running the pet_sla_and_adt, and I have tried multiple methods and still not solved, so I came to you for help:
import os
os.environ['NUMBA_DISABLE_JIT'] = '1'
from py_eddy_tracker.dataset.grid import GridDataset
a_adt, c_adt = g.eddy_identification("adt", "ugos", "vgos", date, 0.002)
a_sla, c_sla = g.eddy_identification("sla", "ugosa", "vgosa", date, 0.002)
NumbaTypeError: Unsupported array type: numpy.ma.MaskedArray.
The text was updated successfully, but these errors were encountered: