input as (lat, lon, dates) or (lon, lat, dates) ?

Issue #10 resolved
Alba Cid created an issue

Is it posible that the coordinates in short_tide.calculate should be given in the reverse order?
I only get nans when lons is greater than 80 or so.

Now, in the tide_gauge.py example it reads:
short_tide = pyfes.Handler("ocean", "io", 'ocean_tide.ini')
tide, lp, _ = short_tide.calculate(lats, lons, dates)

Should it be like this?:
tide, lp, _ = short_tide.calculate(lons, lats, dates)

Comments (1)

  1. Log in to comment