Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation #41

Merged
merged 19 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Missing docstring
  • Loading branch information
jbisits committed Apr 11, 2023
commit 508a0b0f671f4346179d155f8dbff1f1b5ba604a
1 change: 0 additions & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ If there are any bugs and/or feature request please raise an [issue](https://git
!!! info
This package assumes that the `missingval = missing` in the `Raster`, `RasterStack` or `RasterSeries`.
By default `missingval = missing` in Rasters.jl, so as long as the `missingval` has not been changed the modules in this package will work.

1 change: 1 addition & 0 deletions docs/src/modules/RasterHistograms.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ DocTestSetup = nothing
## Functions exported from `RasterHistograms`

```@docs
AbstractRasterHistogram
RasterLayerHistogram
RasterStackHistogram
RasterSeriesHistogram
Expand Down
4 changes: 1 addition & 3 deletions src/oceanvariabledistributions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ import Base.show
export RasterLayerHistogram, RasterStackHistogram, RasterSeriesHistogram,
area_weights, volume_weights, convert_arguments

"""
Abstract type for a `RasterHistogram`.
"""
"Abstract supertype for a `RasterHistogram`."
abstract type AbstractRasterHistogram end

mutable struct RasterLayerHistogram <: AbstractRasterHistogram
Expand Down