Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 13 days 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-03T12:14:40.000Z (20 days ago)
- Last Synced: 2024-12-03T12:35:49.125Z (20 days 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
[![Build Status](https://github.com/gher-uliege/PhysOcean.jl/workflows/CI/badge.svg)](https://github.com/gher-uliege/PhysOcean.jl/actions)
[![Build Status Windows](https://ci.appveyor.com/api/projects/status/github/gher-uliege/PhysOcean.jl?branch=master&svg=true)](https://ci.appveyor.com/project/Alexander-Barth/physocean-jl)
[![codecov](https://codecov.io/gh/gher-uliege/PhysOcean.jl/graph/badge.svg?token=NvclfCEMyQ)](https://codecov.io/gh/gher-uliege/PhysOcean.jl)
[![documentation stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://gher-uliege.github.io/PhysOcean.jl/stable/)
[![documentation latest](https://img.shields.io/badge/docs-latest-blue.svg)](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")
```