-
Notifications
You must be signed in to change notification settings - Fork 5
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 #46 from euroargodev/extended_workflow
Extended workflow
- Loading branch information
Showing
21 changed files
with
3,800 additions
and
208 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "ArgoData" | ||
uuid = "9eb831cf-c491-48dc-bed4-6aca718df73c" | ||
authors = ["gaelforget <[email protected]>"] | ||
version = "0.1.15" | ||
version = "0.1.16" | ||
|
||
[deps] | ||
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | ||
|
@@ -11,8 +11,9 @@ Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" | |
FTPClient = "01fcc997-4f28-56b8-8a06-30002c134abb" | ||
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c" | ||
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" | ||
MITgcmTools = "62725fbc-3a66-4df3-9000-e33e85b3a198" | ||
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" | ||
MeshArrays = "cb8c808f-1acf-59a3-9d2b-6e38d009f683" | ||
MITgcmTools = "62725fbc-3a66-4df3-9000-e33e85b3a198" | ||
NCDatasets = "85f8d34a-cbdd-5861-8df4-14fed0d494ab" | ||
OceanStateEstimation = "891f6deb-a4f5-4bc5-a2e3-1e8f649cdd2c" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
|
@@ -27,10 +28,12 @@ DataFrames = "0.20, 0.21, 0.22, 1" | |
FTPClient = "1" | ||
Glob = "1" | ||
Interpolations = "0.13, 0.14" | ||
JLD2 = "0.4" | ||
MITgcmTools = "0.2" | ||
MeshArrays = "0.2" | ||
NCDatasets = "0.10, 0.11, 0.12" | ||
MeshArrays = "0.2, 0.3" | ||
NCDatasets = "0.10, 0.11, 0.12, 0.13" | ||
OceanStateEstimation = "0.3" | ||
OrderedCollections = "1" | ||
Statistics = "1" | ||
YAML = "0.4" | ||
julia = "1.7" |
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 |
---|---|---|
|
@@ -20,13 +20,13 @@ makedocs(; | |
format=Documenter.HTML(), | ||
pages=[ | ||
"Home" => "index.md", | ||
"Modules" => "modules.md", | ||
"Reference" => "functions.md", | ||
"Examples" => "examples.md", | ||
"Reference" => "Functionalities.md", | ||
], | ||
repo="https://github.com/euroargodev/ArgoData.jl/blob/{commit}{path}#L{line}", | ||
sitename="ArgoData.jl", | ||
authors="gaelforget <[email protected]>", | ||
assets=String[], | ||
warnonly = [:cross_references,:missing_docs], | ||
) | ||
|
||
#create csv list of floats | ||
|
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
|
||
|
||
Content of this section: | ||
|
||
- Data Structures | ||
- Modules (1): GDAC, MITprof, GriddedFields | ||
- Modules (2): MITprofAnalysis, MITprofStat | ||
|
||
## Data Structures | ||
|
||
```@docs | ||
ProfileNative | ||
ProfileStandard | ||
MITprofStandard | ||
``` | ||
|
||
## Module: GDAC | ||
|
||
```@autodocs | ||
Modules = [GDAC] | ||
Order = [:type,:function] | ||
``` | ||
|
||
## Module: MITprof | ||
|
||
```@autodocs | ||
Modules = [MITprof] | ||
Order = [:type,:function] | ||
``` | ||
|
||
## Module: GriddedFields | ||
|
||
```@autodocs | ||
Modules = [GriddedFields] | ||
Order = [:type,:function] | ||
``` | ||
|
||
|
||
## Module: MITprofAnalysis | ||
|
||
```@autodocs | ||
Modules = [MITprofAnalysis] | ||
Order = [:type,:function] | ||
``` | ||
|
||
## Module: MITprofStat | ||
|
||
```@autodocs | ||
Modules = [MITprofStat] | ||
Order = [:type,:function] | ||
``` | ||
|
||
|
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
This file was deleted.
Oops, something went wrong.
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
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.