diff --git a/R/opensensmapr.R b/R/opensensmapr.R index d35ccea..fe2bcd3 100644 --- a/R/opensensmapr.R +++ b/R/opensensmapr.R @@ -69,7 +69,7 @@ #' \code{\link{dplyr}}. #' } #' -#' @seealso Report bugs at \url{https://github.com/noerw/opensensmapR/issues} +#' @seealso Report bugs at \url{https://github.com/sensebox/opensensmapR/issues} #' @seealso openSenseMap API: \url{https://api.opensensemap.org/} #' @seealso official openSenseMap API documentation: \url{https://docs.opensensemap.org/} #' @docType package diff --git a/README.md b/README.md index c558b82..63fba36 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # opensensmapr -[![CRAN status](https://www.r-pkg.org/badges/version/opensensmapr)](https://cran.r-project.org/package=opensensmapr) [![Travis build status](https://travis-ci.org/noerw/opensensmapR.svg?branch=master)](https://travis-ci.org/noerw/opensensmapR) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/noerw/opensensmapR?branch=master&svg=true)](https://ci.appveyor.com/project/noerw/opensensmapR) [![Coverage status](https://codecov.io/gh/noerw/opensensmapR/branch/master/graph/badge.svg)](https://codecov.io/github/noerw/opensensmapR?branch=master) +[![CRAN status](https://www.r-pkg.org/badges/version/opensensmapr)](https://cran.r-project.org/package=opensensmapr) [![Travis build status](https://travis-ci.org/sensebox/opensensmapR.svg?branch=master)](https://travis-ci.org/sensebox/opensensmapR) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/sensebox/opensensmapR?branch=master&svg=true)](https://ci.appveyor.com/project/sensebox/opensensmapR) [![Coverage status](https://codecov.io/gh/sensebox/opensensmapR/branch/master/graph/badge.svg)](https://codecov.io/github/sensebox/opensensmapR?branch=master) This R package ingests data from the API of [opensensemap.org][osem] for analysis in R. @@ -31,9 +31,9 @@ There are also vignettes showcasing applications of this package: - [Exploring the openSenseMap dataset][osem-intro]: Showcase of included helper functions - [Caching openSenseMap Data for reproducibility][osem-serialization] -[osem-intro]: https://noerw.github.com/opensensmapR/inst/doc/osem-intro.html -[osem-history]: https://noerw.github.com/opensensmapR/inst/doc/osem-history.html -[osem-serialization]: https://noerw.github.com/opensensmapR/inst/doc/osem-serialization.html +[osem-intro]: https://sensebox.github.com/opensensmapR/inst/doc/osem-intro.html +[osem-history]: https://sensebox.github.com/opensensmapR/inst/doc/osem-history.html +[osem-serialization]: https://sensebox.github.com/opensensmapR/inst/doc/osem-serialization.html If you used this package for an analysis and think it could serve as a good example or showcase, feel free to add a vignette to the package via a [PR](#contribute)! @@ -50,8 +50,8 @@ To install the very latest versions from GitHub, run: ```r install.packages('devtools') -devtools::install_github('noerw/opensensmapr@master') # latest stable version -devtools::install_github('noerw/opensensmapr@development') # bleeding edge version +devtools::install_github('sensebox/opensensmapr@master') # latest stable version +devtools::install_github('sensebox/opensensmapr@development') # bleeding edge version ``` ## Changelog diff --git a/inst/doc/osem-history.Rmd b/inst/doc/osem-history.Rmd index ff9f3d3..12aff6a 100644 --- a/inst/doc/osem-history.Rmd +++ b/inst/doc/osem-history.Rmd @@ -240,4 +240,4 @@ If you implemented some, feel free to add them to this vignette via a [Pull Requ * filter timespans with big dips in growth rate, and extrapolate the amount of senseBoxes that could be on the platform today, assuming there were no production issues ;) -[PR]: https://github.com/noerw/opensensmapr/pulls +[PR]: https://github.com/sensebox/opensensmapr/pulls diff --git a/inst/doc/osem-history.html b/inst/doc/osem-history.html index 1c72d00..af507d9 100644 --- a/inst/doc/osem-history.html +++ b/inst/doc/osem-history.html @@ -460,7 +460,7 @@ growth = boxes %>%

…by year of registration

-

This is less useful, as older boxes are active for a longer time by definition. If you have an idea how to compensate for that, please send a Pull Request!

+

This is less useful, as older boxes are active for a longer time by definition. If you have an idea how to compensate for that, please send a Pull Request!

# NOTE: boxes older than 2016 missing due to missing updatedAt in database
 duration = boxes %>%
   mutate(year = cut(as.Date(createdAt), breaks = 'year')) %>%
@@ -476,7 +476,7 @@ duration = boxes %>%
 

More Visualisations

-

Other visualisations come to mind, and are left as an exercise to the reader. If you implemented some, feel free to add them to this vignette via a Pull Request.

+

Other visualisations come to mind, and are left as an exercise to the reader. If you implemented some, feel free to add them to this vignette via a Pull Request.

  • growth by phenomenon
  • growth by location -> (interactive) map
  • diff --git a/man/opensensmapr.Rd b/man/opensensmapr.Rd index 0a147a8..e8d8539 100644 --- a/man/opensensmapr.Rd +++ b/man/opensensmapr.Rd @@ -85,7 +85,7 @@ Helpers are implemented to ease the further usage of the retrieved data: } \seealso{ -Report bugs at \url{https://github.com/noerw/opensensmapR/issues} +Report bugs at \url{https://github.com/sensebox/opensensmapR/issues} openSenseMap API: \url{https://api.opensensemap.org/} diff --git a/tools/monitr/Dockerfile b/tools/monitr/Dockerfile index 8fc8190..9f894ff 100644 --- a/tools/monitr/Dockerfile +++ b/tools/monitr/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && \ RUN Rscript -e 'install.packages("sf")' RUN Rscript -e 'install.packages("magrittr")' RUN Rscript -e 'install.packages("devtools")' -RUN Rscript -e 'devtools::install_github("noerw/opensensmapR")' +RUN Rscript -e 'devtools::install_github("sensebox/opensensmapR")' # install crontab COPY crontab /crontab diff --git a/tools/monitr/README.md b/tools/monitr/README.md index 278650e..3db38aa 100644 --- a/tools/monitr/README.md +++ b/tools/monitr/README.md @@ -21,7 +21,7 @@ docker run -v $(pwd)/data:/script/data osem-monitr ```bash # install dependencies once Rscript -e 'install.packages(c("dplyr", "magrittr", "devtools"))' -Rscript -e 'devtools::install_github("noerw/opensensmapR")' +Rscript -e 'devtools::install_github("sensebox/opensensmapR")' Rscript --save --restore get-counts.R Rscript --save --restore get-boxes.R diff --git a/vignettes/osem-history.Rmd b/vignettes/osem-history.Rmd index ff9f3d3..12aff6a 100644 --- a/vignettes/osem-history.Rmd +++ b/vignettes/osem-history.Rmd @@ -240,4 +240,4 @@ If you implemented some, feel free to add them to this vignette via a [Pull Requ * filter timespans with big dips in growth rate, and extrapolate the amount of senseBoxes that could be on the platform today, assuming there were no production issues ;) -[PR]: https://github.com/noerw/opensensmapr/pulls +[PR]: https://github.com/sensebox/opensensmapr/pulls