Skip to content

Commit

Permalink
Add docstrings to submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed May 20, 2024
1 parent 727a24d commit 024b4aa
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gadm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Licensed under the MIT License. See LICENSE in the project root.
# -----------------------------------------------------------------

"""
Provides a single function `GADM.get` to download data from the GADM database.
Please check its docstring for more details.
"""
module GADM

using GeoIO
Expand Down
5 changes: 5 additions & 0 deletions src/geostatsimages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
# Licensed under the MIT License. See LICENSE in the project root.
# -----------------------------------------------------------------

"""
Provides a single function `GeoStatsImages.get` to load images
from geostatistics literature. Please check its docstring for
more details.
"""
module GeoStatsImages

using GeoStatsImages
Expand Down
6 changes: 6 additions & 0 deletions src/inmet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# Licensed under the MIT License. See LICENSE in the project root.
# -----------------------------------------------------------------

"""
Provides functions to load data from the INMET API.
Please check their docstrings for more details:
- `INMET.stations`
"""
module INMET

using Meshes
Expand Down
4 changes: 4 additions & 0 deletions src/naturalearth.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Licensed under the MIT License. See LICENSE in the project root.
# -----------------------------------------------------------------

"""
Provides a single function `NaturalEarth.get` to download data from the
NaturalEarth database. Please check its docstring for more details.
"""
module NaturalEarth

using GeoIO
Expand Down

0 comments on commit 024b4aa

Please sign in to comment.