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
- Host: GitHub
- URL: https://github.com/dankelley/oceanography
- Owner: dankelley
- Created: 2022-03-21T12:27:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-11T14:12:47.000Z (over 2 years ago)
- Last Synced: 2025-01-23T15:49:29.626Z (about 1 year ago)
- Topics: julia, oceanography
- Language: Julia
- Homepage:
- Size: 282 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```