py-eddy-tracker icon indicating copy to clipboard operation
py-eddy-tracker copied to clipboard

tracking over long timeseries

Open fedeborile opened this issue 1 year ago • 1 comments

Hi @AntSimi, I would be very grateful if you could help me. I have performed eddy detection in the Mediterranean Sea using 36 years of daily reanalysis data from the CMEMS dataset. I am now attempting to conduct eddy tracking, but it seems the timeseries is too long. When running the following command:

EddyTracking ./tracking_ACY.yaml -v DEBUG

I encountered the following error message:

Exception: Several timesteps in grid dataset [ 86400 15811200]

I suspect that it is not possible to compute tracking on such a long timeseries. My question is: is there a way to compute tracking over shorter consecutive periods and then merge the outputs? Thank you very much for your time and assistance.

fedeborile avatar Oct 02 '24 20:10 fedeborile

Hi Federica, take look at your timeserie, it seems that some daily identification are missing.

>>> 15811200 / 86400
183.0

I guess there is 183 daily missing identification .

AntSimi avatar Oct 03 '24 07:10 AntSimi

ran into the same problem today.

error message:

Exception: Several timesteps in grid dataset [ 86400 15811200]

solution: The error will occur if any expected data file within the specified tracking period is missing. So, check if all required data for the specified tracking period are prepared.

HzFWQhvevm4s avatar Mar 29 '25 01:03 HzFWQhvevm4s