Open jhlasheras opened 9 months ago
I have been able to solve as in this comment
I now face the problem that add_uv
or bessel_high_filter
seem not to be implemented for UnRegularGrid.
Is there any solution available?
thanks!
Sadly, filtering and compute current on UnRegularGrid could be tricky and different for each type of grid. So there is no code share in py eddy tracker to do that, if you have method/code to do this operation, it could be interessant to share or do a contribution on this project.
Hi @AntSimi , sorry if I may have missed some documentation or previous issue, but I am struggling to use the tool with NEMO outputs without regridding them into a regular grid, as I did in previous occasions.
I have a NEMO model output file that looks like this with
ncdump
:When I try to load the grid with
h = UnRegularGridDataset(filename=file_name, x_name='nav_lon', y_name='nav_lat' )
I getNumbaTypeError: Unsupported array type: numpy.ma.MaskedArray.
I tried to use another subclass from #6 but I got the same error. I also tried to fillna values with same result.