Skip to content

Commit

Permalink
v2.0.0.9102
Browse files Browse the repository at this point in the history
* refactor: Leaflet map Fuzzy Thermal changes
    + Create multiple TIEs for legend so don't count as NA
        - TIE_A_B same as TIE_B_A
    + Remove Continuous_Thermal as a required field
        - Was used for size but size no longer being used
  • Loading branch information
leppott committed Oct 17, 2023
1 parent d609f98 commit d9bed1c
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: BCGcalc
Type: Package
Title: Biological Condition Gradient, calculator
Version: 2.0.0.9101
Version: 2.0.0.9102
Authors@R: c(
person("Erik W.", "Leppo", email="[email protected]", role=c("aut","cre")),
person("Jen", "Stamp", email="[email protected]", role="ctb"),
Expand Down
12 changes: 10 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
BCGcalc-NEWS
================
<[email protected]>
2023-10-03 11:20:44.059906
2023-10-17 10:57:42.763533

<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->

#> Last Update: 2023-10-03 11:20:44.123572
#> Last Update: 2023-10-17 10:57:42.785233

# BCGcalc 2.0.0.9102 (2023-10-17)

- refactor: Leaflet map Fuzzy Thermal changes
- Create multiple TIEs for legend so don’t count as NA
- TIE_A_B same as TIE_B_A
- Remove Continuous_Thermal as a required field
- Was used for size but size no longer being used

# BCGcalc 2.0.0.9101 (2023-10-03)

Expand Down
12 changes: 10 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
BCGcalc-NEWS
================
<[email protected]>
2023-10-03 11:20:44.059906
2023-10-17 10:57:42.763533

<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->

#> Last Update: 2023-10-03 11:20:44.123572
#> Last Update: 2023-10-17 10:57:42.785233

# BCGcalc 2.0.0.9102 (2023-10-17)

- refactor: Leaflet map Fuzzy Thermal changes
- Create multiple TIEs for legend so don’t count as NA
- TIE_A_B same as TIE_B_A
- Remove Continuous_Thermal as a required field
- Was used for size but size no longer being used

# BCGcalc 2.0.0.9101 (2023-10-03)

Expand Down
8 changes: 8 additions & 0 deletions NEWS.rmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ knitr::opts_chunk$set(
cat(paste0("Last Update: ",Sys.time()))
```

# BCGcalc 2.0.0.9102 (2023-10-17)

* refactor: Leaflet map Fuzzy Thermal changes
+ Create multiple TIEs for legend so don't count as NA
- TIE_A_B same as TIE_B_A
+ Remove Continuous_Thermal as a required field
- Was used for size but size no longer being used

# BCGcalc 2.0.0.9101 (2023-10-03)

* refactor: For leaflet map change to addCircleMarkers
Expand Down
2 changes: 1 addition & 1 deletion inst/shiny-examples/BCGcalc/global.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Shiny Global File

# Version ----
pkg_version <- "2.0.0.9101"
pkg_version <- "2.0.0.9102"

# Packages----
# nolint start
Expand Down
8 changes: 7 additions & 1 deletion inst/shiny-examples/BCGcalc/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -3833,7 +3833,7 @@ shinyServer(function(input, output) {
sel_map_col_mapval <- "BCG_Status"
sel_map_col_mapnar <- "BCG_Status2"
} else if (sel_map_datatype == "Fuzzy Temp Model") {
sel_map_col_mapval <- "Continuous_Therm"
sel_map_col_mapval <- "Therm_Class" #"Continuous_Therm"
sel_map_col_mapnar <- "Therm_Class"
} else if (sel_map_datatype == "MTTI") {
sel_map_col_mapval <- "MTTI"
Expand Down Expand Up @@ -4106,28 +4106,34 @@ shinyServer(function(input, output) {
leg_col <- c("#140AE6"
, "#0066FF"
, "#7B9BF5"
, "#7B9BF5"
, "#0AE1EC"
, "#9AF3FC"
, "#BEFEFB"
, "#DDFBFF"
, "#DDFBFF"
, "#C6FFB9"
, "#34FB25"
, "#FFFF66"
, "#FFFFE5"
, "#FFFFE5"
, "#E4DFEC"
, "#FFC000"
, "#808080"
)
leg_nar <- c("VeryCold"
, "VCold_Cold"
, "TIE_VCold_Cold"
, "TIE_Cold_VCold"
, "Cold_VCold"
, "Cold"
, "Cold_Cool"
, "TIE_Cold_Cool"
, "TIE_Cool_Cold"
, "Cool_Cold"
, "Cool"
, "Cool_Warm"
, "TIE_Cool_Warm"
, "TIE_Warm_Cool"
, "Warm_Cool"
, "Warm"
Expand Down

0 comments on commit d9bed1c

Please sign in to comment.