https://github.com/gher-uliege/physocean.jl
Utility functions for physical oceanography (properties of seawater, air-sea heat fluxes,...)
https://github.com/gher-uliege/physocean.jl
data density fluxes julia physical-oceanography sea-water
Last synced: 3 months ago
JSON representation
Utility functions for physical oceanography (properties of seawater, air-sea heat fluxes,...)
- Host: GitHub
- URL: https://github.com/gher-uliege/physocean.jl
- Owner: gher-uliege
- License: other
- Created: 2017-02-27T22:09:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-03T12:14:40.000Z (7 months ago)
- Last Synced: 2024-12-03T12:35:49.125Z (7 months ago)
- Topics: data, density, fluxes, julia, physical-oceanography, sea-water
- Language: Julia
- Homepage:
- Size: 960 KB
- Stars: 27
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PhysOcean
[](https://github.com/gher-uliege/PhysOcean.jl/actions)
[](https://ci.appveyor.com/project/Alexander-Barth/physocean-jl)
[](https://codecov.io/gh/gher-uliege/PhysOcean.jl)
[](https://gher-uliege.github.io/PhysOcean.jl/stable/)
[](https://gher-uliege.github.io/PhysOcean.jl/latest/)# Content
You will find here some general tools for Physical Oceanography (state equations, bulk formulas, geostrophic velocity calculations ...).
# Installing
Your need [Julia](http://julialang.org) to use `PhysOcean`. The command line version is sufficient for `PhysOcean`.
Inside Julia, you can download and install the package by issuing:```julia
using Pkg
Pkg.add("PhysOcean")
```Or if you want to use the latest version, you can use the following command:
```julia
using Pkg
Pkg.add(PackageSpec(name="PhysOcean", rev="master"))
```# Testing
A test script is included to verify the correct functioning of the toolbox.
The script should be run in a Julia session.```julia
using Pkg
Pkg.test("PhysOcean")
```