R/shiny_gui.R

Defines functions ac_gui gw_app

Documented in gw_app

# Copyright 2021 Province of British Columbia
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

#' Launch Shiny app
#'
#' Interactive interface for filtering and formatting data, summarizing water
#' quality and creating piper and stiff plots.
#'
#' @examples
#' \dontrun{gw_app()}
#'
#' @concept shiny_app
#'
#' @export
gw_app <- function() {

  if(utils::packageVersion("rems") < package_version("0.6.0")) {
    stop("Please update rems to v0.6.0 with 'remotes::install_github(\"bcgov/rems\")'",
         call. = FALSE)
  }

  appDir <- system.file("shiny", package = "bcgwcat")
  if (appDir == "") {
    stop("Could not find shiny app directory. ",
         "Try re-installing `bcgwcat`.", call. = FALSE)
  }

  shiny::runApp(appDir, launch.browser = TRUE)
}

ac_gui <- function() {
  warning("`ac_gui()` is deprecated in favour of `gw_app()`. ",
          "Please use gw_app() in future.",
          call. = FALSE)
  gw_app()
}
steffilazerte/rems2aquachem documentation built on Feb. 24, 2024, 2:36 a.m.