Skip to content

Commit

Permalink
fix and docs improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelforget committed Apr 14, 2022
1 parent 2881035 commit 0fbb001
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Argo data processing and analysis.

- The `GDAC` module functions access and retrieve files from the Argo data servers.
- `MITprof` supports the format of [Forget, et al 2015](http://dx.doi.org/10.5194/gmd-8-3071-2015) for standard depth data sets like [this one](https://doi.org/10.7910/DVN/EE3C40).
- `AnalysisMethods` module provides methods for cost functions and geospatial statistics.
- The `MITprof_plots` module in `examples/`.
- `AnalysisMethods` compute e.g. cost functions and geospatial statistics.
- The `MITprof_plots` module in `examples/` is to plot results.

_This package is in early developement stage when breaking changes can be expected._

Expand Down
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Argo data processing and analysis. Currently provides:

- The `GDAC` module functions access and retrieve files from the Argo data servers.
- `MITprof` supports the format of [Forget, et al 2015](http://dx.doi.org/10.5194/gmd-8-3071-2015) for standard depth data sets like [this one](https://doi.org/10.7910/DVN/EE3C40).
- `AnalysisMethods` module provides methods for cost functions and geospatial statistics.
- The `MITprof_plots` module in `examples/`.
- `AnalysisMethods` compute e.g. cost functions and geospatial statistics.
- The `MITprof_plots` module in `examples/` is to plot results.

_This package is in early developement stage when breaking changes can be expected._

Expand Down
4 changes: 3 additions & 1 deletion examples/MITprof_plots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ function trim_cost(cost)
nb=length(ii)

(ncost,nii)=(length(cost),length(ii))
println("keeping $(ncost), leaving $(ncost-nii)")
println("keeping $(nii), leaving $(ncost-nii)")
println("median $(median(cost[ii]))")
println("mean $(mean(cost[ii]))")
println("max $(maximum(cost[ii]))")

cost[ii],med,nb
end
Expand Down

0 comments on commit 0fbb001

Please sign in to comment.