change references to sensebox org

measurements_archive
Norwin 6 years ago
parent f30bc9c185
commit bdc72e94e1

@ -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

@ -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

@ -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

@ -460,7 +460,7 @@ growth =<span class="st"> </span>boxes %&gt;%
</div>
<div id="by-year-of-registration" class="section level2">
<h2>…by year of registration</h2>
<p>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 <a href="https://github.com/noerw/opensensmapr/pulls">Pull Request</a>!</p>
<p>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 <a href="https://github.com/sensebox/opensensmapr/pulls">Pull Request</a>!</p>
<div class="sourceCode"><pre class="sourceCode r"><code class="sourceCode r"><span class="co"># NOTE: boxes older than 2016 missing due to missing updatedAt in database</span>
duration =<span class="st"> </span>boxes %&gt;%
<span class="st"> </span><span class="kw">mutate</span>(<span class="dt">year =</span> <span class="kw">cut</span>(<span class="kw">as.Date</span>(createdAt), <span class="dt">breaks =</span> <span class="st">'year'</span>)) %&gt;%
@ -476,7 +476,7 @@ duration =<span class="st"> </span>boxes %&gt;%
</div>
<div id="more-visualisations" class="section level1">
<h1>More Visualisations</h1>
<p>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 <a href="https://github.com/noerw/opensensmapr/pulls">Pull Request</a>.</p>
<p>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 <a href="https://github.com/sensebox/opensensmapr/pulls">Pull Request</a>.</p>
<ul>
<li>growth by phenomenon</li>
<li>growth by location -&gt; (interactive) map</li>

@ -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/}

@ -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

@ -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

@ -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

Loading…
Cancel
Save