mirror of
https://github.com/sensebox/opensensmapr
synced 2025-04-05 12:30:27 +02:00
make R CMD check happy 🔪
This commit is contained in:
parent
e853430c8e
commit
8936ff270c
9 changed files with 78 additions and 38 deletions
|
@ -8,6 +8,7 @@ Imports:
|
||||||
dplyr,
|
dplyr,
|
||||||
httr,
|
httr,
|
||||||
digest,
|
digest,
|
||||||
|
lazyeval,
|
||||||
readr,
|
readr,
|
||||||
purrr,
|
purrr,
|
||||||
magrittr
|
magrittr
|
||||||
|
|
|
@ -27,6 +27,7 @@ is_non_interactive = function () {
|
||||||
|
|
||||||
#' custom recursive lapply with better handling of NULL values
|
#' custom recursive lapply with better handling of NULL values
|
||||||
#' from https://stackoverflow.com/a/38950304
|
#' from https://stackoverflow.com/a/38950304
|
||||||
|
#' @noRd
|
||||||
recursive_lapply = function(x, fn) {
|
recursive_lapply = function(x, fn) {
|
||||||
if (is.list(x))
|
if (is.list(x))
|
||||||
lapply(x, recursive_lapply, fn)
|
lapply(x, recursive_lapply, fn)
|
||||||
|
|
47
R/archive.R
47
R/archive.R
|
@ -23,11 +23,12 @@ osem_archive_endpoint = function () {
|
||||||
#'
|
#'
|
||||||
#' @param x A `sensebox data.frame` of a single box, as retrieved via \code{\link{osem_box}},
|
#' @param x A `sensebox data.frame` of a single box, as retrieved via \code{\link{osem_box}},
|
||||||
#' to download measurements for.
|
#' to download measurements for.
|
||||||
#' @param fromDate Start date for measurement download.
|
#' @param ... see parameters below
|
||||||
|
#' @param fromDate Start date for measurement download, must be convertable via `as.Date`.
|
||||||
#' @param toDate End date for measurement download (inclusive).
|
#' @param toDate End date for measurement download (inclusive).
|
||||||
#' @param sensorFilter A NSE formula matching to \code{x$sensors}, selecting a subset of sensors.
|
#' @param sensorFilter A NSE formula matching to \code{x$sensors}, selecting a subset of sensors.
|
||||||
#' @param progress Whether to print download progress information, defaults to \code{TRUE}.
|
#' @param progress Whether to print download progress information, defaults to \code{TRUE}.
|
||||||
#' @return A \code{tbl_df} Containing observations of all selected sensors for each time stamp.
|
#' @return A \code{tbl_df} containing observations of all selected sensors for each time stamp.
|
||||||
#'
|
#'
|
||||||
#' @seealso \href{https://archive.opensensemap.org}{openSenseMap archive}
|
#' @seealso \href{https://archive.opensensemap.org}{openSenseMap archive}
|
||||||
#' @seealso \code{\link{osem_measurements}}
|
#' @seealso \code{\link{osem_measurements}}
|
||||||
|
@ -44,20 +45,26 @@ osem_measurements_archive.default = function (x, ...) {
|
||||||
stop(paste('not implemented for class', toString(class(x))))
|
stop(paste('not implemented for class', toString(class(x))))
|
||||||
}
|
}
|
||||||
|
|
||||||
#' @describeIn osem_measurements_archive Get daywise measurements for one or
|
|
||||||
#' more sensors of a single box
|
# ==============================================================================
|
||||||
|
#
|
||||||
|
#' @describeIn osem_measurements_archive Get daywise measurements for one or more sensors of a single box.
|
||||||
#' @export
|
#' @export
|
||||||
#' @examples
|
#' @examples
|
||||||
#' # fetch measurements for a single day
|
|
||||||
#' box = osem_box('593bcd656ccf3b0011791f5a')
|
|
||||||
#' m = osem_measurements_archive(box, as.POSIXlt('2018-09-13'))
|
|
||||||
#'
|
|
||||||
#' \donttest{
|
#' \donttest{
|
||||||
|
#' # fetch measurements for a single day
|
||||||
|
#' box = osem_box('593bcd656ccf3b0011791f5a')
|
||||||
|
#' m = osem_measurements_archive(box, as.POSIXlt('2018-09-13'))
|
||||||
|
#'
|
||||||
#' # fetch measurements for a date range and selected sensors
|
#' # fetch measurements for a date range and selected sensors
|
||||||
#' sensors = ~ phenomenon %in% c('Temperatur', 'Beleuchtungsstärke')
|
#' sensors = ~ phenomenon %in% c('Temperatur', 'Beleuchtungsstärke')
|
||||||
#' m = osem_measurements_archive(box, as.POSIXlt('2018-09-01'), as.POSIXlt('2018-09-30'), sensorFilter = sensors)
|
#' m = osem_measurements_archive(
|
||||||
|
#' box,
|
||||||
|
#' as.POSIXlt('2018-09-01'), as.POSIXlt('2018-09-30'),
|
||||||
|
#' sensorFilter = sensors
|
||||||
|
#' )
|
||||||
#' }
|
#' }
|
||||||
osem_measurements_archive.sensebox = function (x, fromDate, toDate = fromDate, sensorFilter = ~ T, progress = T) {
|
osem_measurements_archive.sensebox = function (x, fromDate, toDate = fromDate, sensorFilter = ~ T, ..., progress = T) {
|
||||||
if (nrow(x) != 1)
|
if (nrow(x) != 1)
|
||||||
stop('this function only works for exactly one senseBox!')
|
stop('this function only works for exactly one senseBox!')
|
||||||
|
|
||||||
|
@ -78,7 +85,14 @@ osem_measurements_archive.sensebox = function (x, fromDate, toDate = fromDate, s
|
||||||
}
|
}
|
||||||
|
|
||||||
#' fetch measurements from archive from a single box, and a single sensor
|
#' fetch measurements from archive from a single box, and a single sensor
|
||||||
archive_fetch_measurements = function (box, sensor, fromDate, toDate, progress) {
|
#'
|
||||||
|
#' @param box A sensebox data.frame with a single box
|
||||||
|
#' @param sensorId Character specifying the sensor
|
||||||
|
#' @param fromDate Start date for measurement download, must be convertable via `as.Date`.
|
||||||
|
#' @param toDate End date for measurement download (inclusive).
|
||||||
|
#' @param progress whether to print progress
|
||||||
|
#' @return A \code{tbl_df} containing observations of all selected sensors for each time stamp.
|
||||||
|
archive_fetch_measurements = function (box, sensorId, fromDate, toDate, progress) {
|
||||||
dates = list()
|
dates = list()
|
||||||
from = fromDate
|
from = fromDate
|
||||||
while (from <= toDate) {
|
while (from <= toDate) {
|
||||||
|
@ -90,14 +104,14 @@ archive_fetch_measurements = function (box, sensor, fromDate, toDate, progress)
|
||||||
progress = if (progress && !is_non_interactive()) httr::progress() else NULL
|
progress = if (progress && !is_non_interactive()) httr::progress() else NULL
|
||||||
|
|
||||||
measurements = lapply(dates, function(date) {
|
measurements = lapply(dates, function(date) {
|
||||||
url = build_archive_url(date, box, sensor)
|
url = build_archive_url(date, box, sensorId)
|
||||||
res = httr::GET(url, progress, handle = http_handle)
|
res = httr::GET(url, progress, handle = http_handle)
|
||||||
|
|
||||||
if (httr::http_error(res)) {
|
if (httr::http_error(res)) {
|
||||||
warning(paste(
|
warning(paste(
|
||||||
httr::status_code(res),
|
httr::status_code(res),
|
||||||
'on day', format.Date(date, '%F'),
|
'on day', format.Date(date, '%F'),
|
||||||
'for sensor', sensor
|
'for sensor', sensorId
|
||||||
))
|
))
|
||||||
|
|
||||||
if (httr::status_code(res) == 404)
|
if (httr::status_code(res) == 404)
|
||||||
|
@ -113,8 +127,8 @@ archive_fetch_measurements = function (box, sensor, fromDate, toDate, progress)
|
||||||
|
|
||||||
#' returns URL to fetch measurements from a sensor for a specific date,
|
#' returns URL to fetch measurements from a sensor for a specific date,
|
||||||
#' based on `osem_archive_endpoint()`
|
#' based on `osem_archive_endpoint()`
|
||||||
build_archive_url = function (date, box, sensor) {
|
#' @noRd
|
||||||
sensorId = sensor
|
build_archive_url = function (date, box, sensorId) {
|
||||||
d = format.Date(date, '%F')
|
d = format.Date(date, '%F')
|
||||||
format = 'csv'
|
format = 'csv'
|
||||||
|
|
||||||
|
@ -129,6 +143,9 @@ build_archive_url = function (date, box, sensor) {
|
||||||
|
|
||||||
#' replace chars in box name according to archive script:
|
#' replace chars in box name according to archive script:
|
||||||
#' https://github.com/sensebox/osem-archiver/blob/612e14b/helpers.sh#L66
|
#' https://github.com/sensebox/osem-archiver/blob/612e14b/helpers.sh#L66
|
||||||
|
#'
|
||||||
|
#' @param box A sensebox data.frame
|
||||||
|
#' @return character with archive identifier for each box
|
||||||
osem_box_to_archivename = function (box) {
|
osem_box_to_archivename = function (box) {
|
||||||
name = gsub('[^A-Za-z0-9._-]', '_', box$name)
|
name = gsub('[^A-Za-z0-9._-]', '_', box$name)
|
||||||
paste(box$X_id, name, sep = '-')
|
paste(box$X_id, name, sep = '-')
|
||||||
|
|
2
R/box.R
2
R/box.R
|
@ -165,7 +165,7 @@ parse_senseboxdata = function (boxdata) {
|
||||||
|
|
||||||
# extract metadata from sensors
|
# extract metadata from sensors
|
||||||
thebox$phenomena = sensors %>%
|
thebox$phenomena = sensors %>%
|
||||||
setNames(lapply(., function (s) s$`_id`)) %>%
|
stats::setNames(lapply(., function (s) s$`_id`)) %>%
|
||||||
lapply(function(s) s$title) %>%
|
lapply(function(s) s$title) %>%
|
||||||
unlist %>% list # convert to vector
|
unlist %>% list # convert to vector
|
||||||
|
|
||||||
|
|
|
@ -100,4 +100,13 @@
|
||||||
`%>%` = magrittr::`%>%`
|
`%>%` = magrittr::`%>%`
|
||||||
|
|
||||||
# just to make R CMD check happy, due to NSE (dplyr) functions
|
# just to make R CMD check happy, due to NSE (dplyr) functions
|
||||||
globalVariables(c('lastMeasurement', '.'))
|
globalVariables(c(
|
||||||
|
'createdAt',
|
||||||
|
'lastMeasurement',
|
||||||
|
'sensorType',
|
||||||
|
'title',
|
||||||
|
'unit',
|
||||||
|
'value',
|
||||||
|
'X_id',
|
||||||
|
'.'
|
||||||
|
))
|
||||||
|
|
|
@ -4,7 +4,21 @@
|
||||||
\alias{archive_fetch_measurements}
|
\alias{archive_fetch_measurements}
|
||||||
\title{fetch measurements from archive from a single box, and a single sensor}
|
\title{fetch measurements from archive from a single box, and a single sensor}
|
||||||
\usage{
|
\usage{
|
||||||
archive_fetch_measurements(box, sensor, fromDate, toDate, progress)
|
archive_fetch_measurements(box, sensorId, fromDate, toDate, progress)
|
||||||
|
}
|
||||||
|
\arguments{
|
||||||
|
\item{box}{A sensebox data.frame with a single box}
|
||||||
|
|
||||||
|
\item{sensorId}{Character specifying the sensor}
|
||||||
|
|
||||||
|
\item{fromDate}{Start date for measurement download, must be convertable via `as.Date`.}
|
||||||
|
|
||||||
|
\item{toDate}{End date for measurement download (inclusive).}
|
||||||
|
|
||||||
|
\item{progress}{whether to print progress}
|
||||||
|
}
|
||||||
|
\value{
|
||||||
|
A \code{tbl_df} containing observations of all selected sensors for each time stamp.
|
||||||
}
|
}
|
||||||
\description{
|
\description{
|
||||||
fetch measurements from archive from a single box, and a single sensor
|
fetch measurements from archive from a single box, and a single sensor
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
% Generated by roxygen2: do not edit by hand
|
|
||||||
% Please edit documentation in R/archive.R
|
|
||||||
\name{build_archive_url}
|
|
||||||
\alias{build_archive_url}
|
|
||||||
\title{returns URL to fetch measurements from a sensor for a specific date,
|
|
||||||
based on `osem_archive_endpoint()`}
|
|
||||||
\usage{
|
|
||||||
build_archive_url(date, box, sensor)
|
|
||||||
}
|
|
||||||
\description{
|
|
||||||
returns URL to fetch measurements from a sensor for a specific date,
|
|
||||||
based on `osem_archive_endpoint()`
|
|
||||||
}
|
|
|
@ -7,6 +7,12 @@ https://github.com/sensebox/osem-archiver/blob/612e14b/helpers.sh#L66}
|
||||||
\usage{
|
\usage{
|
||||||
osem_box_to_archivename(box)
|
osem_box_to_archivename(box)
|
||||||
}
|
}
|
||||||
|
\arguments{
|
||||||
|
\item{box}{A sensebox data.frame}
|
||||||
|
}
|
||||||
|
\value{
|
||||||
|
character with archive identifier for each box
|
||||||
|
}
|
||||||
\description{
|
\description{
|
||||||
replace chars in box name according to archive script:
|
replace chars in box name according to archive script:
|
||||||
https://github.com/sensebox/osem-archiver/blob/612e14b/helpers.sh#L66
|
https://github.com/sensebox/osem-archiver/blob/612e14b/helpers.sh#L66
|
||||||
|
|
|
@ -8,13 +8,15 @@
|
||||||
osem_measurements_archive(x, ...)
|
osem_measurements_archive(x, ...)
|
||||||
|
|
||||||
\method{osem_measurements_archive}{sensebox}(x, fromDate,
|
\method{osem_measurements_archive}{sensebox}(x, fromDate,
|
||||||
toDate = fromDate, sensorFilter = ~T, progress = T)
|
toDate = fromDate, sensorFilter = ~T, ..., progress = T)
|
||||||
}
|
}
|
||||||
\arguments{
|
\arguments{
|
||||||
\item{x}{A `sensebox data.frame` of a single box, as retrieved via \code{\link{osem_box}},
|
\item{x}{A `sensebox data.frame` of a single box, as retrieved via \code{\link{osem_box}},
|
||||||
to download measurements for.}
|
to download measurements for.}
|
||||||
|
|
||||||
\item{fromDate}{Start date for measurement download.}
|
\item{...}{see parameters below}
|
||||||
|
|
||||||
|
\item{fromDate}{Start date for measurement download, must be convertable via `as.Date`.}
|
||||||
|
|
||||||
\item{toDate}{End date for measurement download (inclusive).}
|
\item{toDate}{End date for measurement download (inclusive).}
|
||||||
|
|
||||||
|
@ -23,7 +25,7 @@ to download measurements for.}
|
||||||
\item{progress}{Whether to print download progress information, defaults to \code{TRUE}.}
|
\item{progress}{Whether to print download progress information, defaults to \code{TRUE}.}
|
||||||
}
|
}
|
||||||
\value{
|
\value{
|
||||||
A \code{tbl_df} Containing observations of all selected sensors for each time stamp.
|
A \code{tbl_df} containing observations of all selected sensors for each time stamp.
|
||||||
}
|
}
|
||||||
\description{
|
\description{
|
||||||
This function is significantly faster than \code{\link{osem_measurements}} for large
|
This function is significantly faster than \code{\link{osem_measurements}} for large
|
||||||
|
@ -40,19 +42,22 @@ but continue the remaining download.
|
||||||
}
|
}
|
||||||
\section{Methods (by class)}{
|
\section{Methods (by class)}{
|
||||||
\itemize{
|
\itemize{
|
||||||
\item \code{sensebox}: Get daywise measurements for one or
|
\item \code{sensebox}: Get daywise measurements for one or more sensors of a single box.
|
||||||
more sensors of a single box
|
|
||||||
}}
|
}}
|
||||||
|
|
||||||
\examples{
|
\examples{
|
||||||
# fetch measurements for a single day
|
# fetch measurements for a single day
|
||||||
box = osem_box('593bcd656ccf3b0011791f5a')
|
box = osem_box('593bcd656ccf3b0011791f5a')
|
||||||
m = osem_measurements_archive(box, as.POSIXlt('2018-09-13'))
|
m = osem_measurements_archive(box, as.POSIXlt('2018-09-13'))
|
||||||
|
|
||||||
\donttest{
|
\donttest{
|
||||||
# fetch measurements for a date range and selected sensors
|
# fetch measurements for a date range and selected sensors
|
||||||
sensors = ~ phenomenon \%in\% c('Temperatur', 'Beleuchtungsstärke')
|
sensors = ~ phenomenon \%in\% c('Temperatur', 'Beleuchtungsstärke')
|
||||||
m = osem_measurements_archive(box, as.POSIXlt('2018-09-01'), as.POSIXlt('2018-09-30'), sensorFilter = sensors)
|
m = osem_measurements_archive(
|
||||||
|
box,
|
||||||
|
as.POSIXlt('2018-09-01'), as.POSIXlt('2018-09-30'),
|
||||||
|
sensorFilter = sensors
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
\seealso{
|
\seealso{
|
||||||
|
|
Loading…
Add table
Reference in a new issue