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
Hi! xmitgcm can read MITgcm mds binary files fastly, and I use it a lot.
But I meet a problem recently, I run the MITgcm model for 100 years. Then I used xmitgcm to read the model output like:
I find the time is negative:
There is no problem with the output before this moment.
I noticed that the iter use the int32 which cover -2,147,483,647~2,147,483,647. But the 8953200*240=2148768000 which is greater than the maximun of int32 .
So, may be we need the int64 to solve the problem. And what should I do to read the time correctly?
The text was updated successfully, but these errors were encountered:
Hi!
xmitgcm
can read MITgcm mds binary files fastly, and I use it a lot.But I meet a problem recently, I run the MITgcm model for 100 years. Then I used
xmitgcm
to read the model output like:I find the time is negative:
There is no problem with the output before this moment.
I noticed that the iter use the
int32
which cover -2,147,483,647~2,147,483,647. But the 8953200*240=2148768000 which is greater than the maximun ofint32
.So, may be we need the
int64
to solve the problem. And what should I do to read the time correctly?The text was updated successfully, but these errors were encountered: