Skip to content

Commit

Permalink
V 0.2.37 Fixed documentation for CRAN submission
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaybarve committed Dec 8, 2023
1 parent a34a509 commit 66ab895
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 24 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: bdvis
Type: Package
Title: Biodiversity Data Visualizations
Version: 0.2.36
Date: 2023-12-04
Version: 0.2.37
Date: 2023-12-07
Authors@R: c(
person("Vijay","Barve", ,"[email protected]",role=c("aut","cre"),
comment = c(ORCID = "0000-0002-4852-2567")),
Expand Down
3 changes: 2 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
bdvis 0.2.36
bdvis 0.2.37
===============
* Bug fixes in mapgrid
* Funcation format_bdvis now handled bdsns
* Package rgeos dependency removed
* Finction mapgrid parameters mapadatabase and region deprecated
* Fixed documentaion


bdvis 0.2.33
Expand Down
9 changes: 5 additions & 4 deletions R/bdcomplete.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@
#' throws an error.
#'@param gridscale plot the map grids at specific degree scale. Default is 1.
#'
#'@return data.frame with the columns \itemize{ \item{"Cell_id"}{ id of the cell}
#' \item{"nrec"}{ Number of records in the cell} \item{"Sobs"}{ Number of
#' Observed species} \item{"Sest"}{ Estimated number of species}
#' \item{"c"}{ Completeness ratio the cell}
#'@return data.frame with the columns \itemize{ \item "Cell_id" - id of the cell
#' \item"nrec" - Number of records in the cell
#' \item"Sobs" - Number of Observed species
#' \item"Sest" - Estimated number of species
#' \item"c" - Completeness ratio the cell
#'
#' Plots a graph of Number of species vs completeness }
#'@examples \dontrun{
Expand Down
12 changes: 7 additions & 5 deletions R/gettaxo.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@
#'@param verbose If TRUE, displays each name string for which the higher
#' taxonomy is sought
#'@param progress If TRUE prints progress bar and messages on the consol.
#'@return indf with added / updated columns \itemize{ \item{"Kingdom"}{Kingdom
#' of the Scientific name} \item{"Phylum"}{Phylum of the Scientific name}
#' \item{"Order_"}{Order of the Scientific name} \item{"Family"}{Family of the
#' Scientific name} \item{"Genus"}{Genus of the Scientific name} } and also
#' saves a local copy of taxanomy downloaded for future use in taxo.db sqlite
#'@return indf with added / updated columns \itemize{
#' \item "Kingdom" - Kingdom of the Scientific name
#' \item "Phylum" - Phylum of the Scientific name
#' \item "Order_" - Order of the Scientific name
#' \item "Family" - Family of the Scientific name
#' \item "Genus" - Genus of the Scientific name } and also
#' saves a local copy of taxonomy downloaded for future use in taxo.db sqlite
#' file
#'@examples \dontrun{
#'inat <- gettaxo(inat)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ bdsummary(inat)
#### mapgrid

```r
mapgrid(inat,ptype="records",bbox=c(60,100,5,40),region=c("India"))
mapgrid(inat,ptype="records",bbox=c(60,100,5,40),region=c("India"),gridscale=0.1)
mapgrid(inat,ptype="records",bbox=c(60,100,5,40))
mapgrid(inat,ptype="records",bbox=c(60,100,5,40),gridscale=0.1)
```

#### tempolar
Expand All @@ -74,7 +74,7 @@ chronohorogram(inat)

```r
comp=bdcomplete(inat,recs=5)
mapgrid(comp,ptype="complete",bbox=c(60,100,5,40),region=c("India"))
mapgrid(comp,ptype="complete",bbox=c(60,100,5,40))
```

#### distrigraph
Expand Down
9 changes: 5 additions & 4 deletions man/bdcomplete.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions man/gettaxo.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 66ab895

Please sign in to comment.