Skip to content

Commit

Permalink
Bump version, readme and exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro3 committed Sep 23, 2021
1 parent 5802735 commit f2356d1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "WhereTheWaterFlows"
uuid = "ea906314-1493-4d22-a0af-f886a20c9fba"
authors = ["Mauro Werder <[email protected]>"]
version = "0.6.0"
version = "0.7.0"

[deps]
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,11 @@ WWF.heatmap(x,y,demf.-dem)
### Post-processing

There are the following function (see their docs for details):
- `catchment` -- determine the catchment of one point
- `catchment_of_points` -- determine the catchment of several points
- `prune_catchments` -- remove catchment smaller than a certain size
- `catchment` -- determine the catchment of a point or a set of points
- `catchments` -- determine the catchment of several sink areas (each
defined by a set of points)
- `catchment_flux` -- the total flux or source area in a particular catchment
- `prune_catchments` -- remove catchments smaller than a certain size
- `fill_dem` -- fill the depressions of a DEM

# References
Expand Down
2 changes: 1 addition & 1 deletion src/postproc.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Misc post-processing functions

export catchment, catchments, catchment_of_points, prune_catchments, fill_dem
export catchment, catchments, catchment_flux, prune_catchments, fill_dem

"""
prune_catchments(catchments, minsize; val=0)
Expand Down

2 comments on commit f2356d1

@mauro3
Copy link
Owner Author

@mauro3 mauro3 commented on f2356d1 Sep 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/45435

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.0 -m "<description of version>" f2356d1d54c1a0394c494de1dd914cf17288ea39
git push origin v0.7.0

Please sign in to comment.