From 1d11114d5c0528935b3c87466ec185c4a55b4fb3 Mon Sep 17 00:00:00 2001 From: Stephanie Pennington Date: Thu, 6 Jun 2024 12:00:42 -0400 Subject: [PATCH] Add temp vars to custom --- inst/shinyApp/components/modules/mod_custom.r | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/inst/shinyApp/components/modules/mod_custom.r b/inst/shinyApp/components/modules/mod_custom.r index 49eae7f..fe2c4c6 100644 --- a/inst/shinyApp/components/modules/mod_custom.r +++ b/inst/shinyApp/components/modules/mod_custom.r @@ -32,7 +32,11 @@ custom_ui <- function(id) { tags$td(width = "155", selectInput(ns("variable"), label = NULL, list("Carbon Cycle" = list("Atmospheric CO2" = CONCENTRATIONS_CO2(), "FFI Emissions" = FFI_EMISSIONS(), - "LUC Emissions" = LUC_EMISSIONS()), + "LUC Emissions" = LUC_EMISSIONS(), + "Methane Concentrations" = CONCENTRATIONS_CH4()), + "Temperature" = list("Global Temperature" = GLOBAL_TAS(), + "Ocean Temperature" = OCEAN_TAS(), + "Ocean Surface Temperature" = SST()), "Concentrations" = list("N2O Concentration" = CONCENTRATIONS_N2O()), "Emissions" = list("Black Carbon Emissions" = EMISSIONS_BC(), "Organic Carbon Emissions" = EMISSIONS_OC()),