We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TEOS-10/GibbsSeaWater.jl#18 (comment) and https://discourse.julialang.org/t/a-weird-issue-with-julia-1-7-1-on-ubuntu-gibbsseawater-jl-package/73632 show the error for lon > 360. The gsw_saar function is only handling negative longitudes, not longitudes beyond 360. Likely fix: change
if (lon < 0.0) lon += 360.0;
to
lon = fmod(lon, 360); if (lon < 0.0) lon += 360.0;
I would be inclined to fix it first in Python and then propagate it back to here, since testing is so much easier in Python.
The text was updated successfully, but these errors were encountered:
Closed by #47.
Sorry, something went wrong.
No branches or pull requests
TEOS-10/GibbsSeaWater.jl#18 (comment) and https://discourse.julialang.org/t/a-weird-issue-with-julia-1-7-1-on-ubuntu-gibbsseawater-jl-package/73632 show the error for lon > 360. The gsw_saar function is only handling negative longitudes, not longitudes beyond 360. Likely fix: change
to
I would be inclined to fix it first in Python and then propagate it back to here, since testing is so much easier in Python.
The text was updated successfully, but these errors were encountered: