Nothing
#' @export
#' @importFrom rlang .data
#'
#' @title Rectangle area filtering for PurpleAir Synoptic objects
#'
#' @param pas PurpleAir Synoptic \emph{pas} object.
#' @param w West edge of area bounding box (deg E).
#' @param e East edge of area bounding box (deg E).
#' @param s South edge of area bounding box (deg N).
#' @param n North edge of area bounding box (deg N).
#'
#' @description Filters \emph{pas} object sensors based on a bounding box.
#'
#' @return A subset of the given \emph{pas} object.
#'
#' @seealso \link{pas_filter}, \link{pas_filterNear}
#'
#' @examples
#' library(AirSensor)
#'
#' pas <- example_pas
#' range(pas$longitude)
#' range(pas$latitude)
#' scsb <-
#' pas %>%
#' pas_filterArea(
#' w = -118.10,
#' e = -118.07,
#' s = 33.75,
#' n = 33.78
#' )
#' range(scsb$longitude)
#' range(scsb$latitude)
#'
#' if ( interactive() ) {
#' pas_leaflet(scsb)
#' }
#'
pas_filterArea <- function(
pas = NULL,
w = NULL,
e = NULL,
s = NULL,
n = NULL
) {
# ----- Validate parameters --------------------------------------------------
MazamaCoreUtils::stopIfNull(pas)
if ( !pas_isPas(pas) )
stop("Required parameter 'pas' is not a valid 'pa_synoptic' object.")
if ( pas_isEmpty(pas) )
stop("Required parameter 'pas' has no data.")
if ( is.null(w) ) w <- min(pas$longitude, na.rm = TRUE)
if ( is.null(e) ) e <- max(pas$longitude, na.rm = TRUE)
if ( is.null(s) ) s <- min(pas$latitude, na.rm = TRUE)
if ( is.null(n) ) n <- max(pas$latitude, na.rm = TRUE)
# ----- Filter the tibble ----------------------------------------------------
pas <-
pas %>%
dplyr::filter(.data$longitude >= w & .data$longitude <= e) %>%
dplyr::filter(.data$latitude >= s & .data$latitude <= n)
# ----- Return ---------------------------------------------------------------
return(pas)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.