-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from jbisits/joey-adddistributionfunctions
Add histogram fitting for `Raster` data structures and break code into submodules
- Loading branch information
Showing
7 changed files
with
575 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,6 @@ jobs: | |
matrix: | ||
version: | ||
- '1.8' | ||
- 'nightly' | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,19 @@ authors = ["Josef I. Bisits <[email protected]>"] | |
version = "0.2.2" | ||
|
||
[deps] | ||
DimensionalData = "0703355e-b756-11e9-17c0-8b28908087d0" | ||
GibbsSeaWater = "9a22fb26-0b63-4589-b28e-8f9d0b5c3d05" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
MakieCore = "20f20a25-4f0e-4fdf-b5d1-57303727442b" | ||
Rasters = "a3a2b9e3-a471-40c9-b274-f788e487c689" | ||
Reexport = "189a3867-3050-52da-a836-e630ba90ab69" | ||
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | ||
|
||
[compat] | ||
julia = "1.6" | ||
Rasters = "^0.5.0" | ||
DimensionalData = "=0.24.7" | ||
GibbsSeaWater = "^0.1.2" | ||
Rasters = "^0.5.0" | ||
julia = "1.6" | ||
|
||
[extras] | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
module OceanRasterConversions | ||
|
||
using Rasters, GibbsSeaWater | ||
using Reexport | ||
|
||
export | ||
convert_ocean_vars, | ||
depth_to_pressure, Sₚ_to_Sₐ, θ_to_Θ, | ||
get_ρ, get_σₚ, get_α, get_β | ||
include("oceanvariableconversions.jl") | ||
include("oceanvariabledistributions.jl") | ||
|
||
include("oceanconversions.jl") | ||
@reexport using OceanRasterConversions.OceanVariableConversions | ||
@reexport using OceanRasterConversions.RasterHistograms | ||
|
||
end #module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.