Skip to content

Commit

Permalink
Merge pull request #736 from aodn/fix_missing_runtime
Browse files Browse the repository at this point in the history
Fix missing runtime
  • Loading branch information
lbesnard authored Apr 20, 2021
2 parents 5b73e90 + c3f1e61 commit adad9a6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Util/azimuth_direction.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@
% result = azimuth_direction(u,v);
% assert(all(result==azimuths));
%
dir=wrapTo360(360+90-atan2d(v,u));
dir(dir==360)=0;
dir=mod(360+90-atan2d(v,u),360);
end
Binary file modified imosToolbox_Linux64.bin
Binary file not shown.
Binary file modified imosToolbox_Win64.exe
Binary file not shown.

0 comments on commit adad9a6

Please sign in to comment.