An open API service indexing awesome lists of open source software.

https://github.com/dankelley/oceanography

Julia code for oceanographic analysis
https://github.com/dankelley/oceanography

julia oceanography

Last synced: 12 months ago
JSON representation

Julia code for oceanographic analysis

Awesome Lists containing this project

README

          

This repository holds some tests that might shed light on the utility and
practicality of creating a Julia package for oceanographic analysis.

# Struct ideas

This might work
```julia
abstract type Oce end
struct Adp<:Oce
metadata::Dict
data::Dict
end
a = Adp(Dict(), Dict())
a.metadata["filename"] = "food"
a.data["u"] = Array{Float64}(undef, 4, 10, 200);
a
```