R/fct_selectInput_Cylinder.R

Defines functions select_cylinder

Documented in select_cylinder

#' Select Diameter
#'
#' @param id Identification
#' @param marke "VAG","ERHARD","AVK", "ACMO"
#'
#' @return selectInput for UI
#' @export

select_cylinder <- function(id, marke){
  gpv_data    <- cylinder_parameter(marke)
  cylindertyp <- unique(gpv_data$cyl_name)
  shiny::selectInput(id, label = "Cylinder Typ:", choices = cylindertyp )
}
ratral/gpvapp documentation built on May 13, 2022, 12:51 a.m.