inst/shiny/server_1_loadModels/server_1_loadModels_create_local.R

### Code for final processing steps and adding data to vals$models...

###############################################################################
### Inputs: objects that must be defined before this code chunk is called
# sf.load.ll       # Predictions with crs = crs.ll
# sf.load.orig     # Predictions in original projection
# pred.type        # Prediction type
# var.type        # Uncertainty value type
# model.res        # Resolution of predictions
# model.name       # File name of predictions
# data.names       # Names of data columns with predictions and weights


###############################################################################
#------------------------------------------------------------------------------
if (!exists("sf.load.orig")) sf.load.orig <- sf.load.ll

validate(
  need(inherits(sf.load.ll, "sf") & inherits(sf.load.orig, "sf"),
       "Error 1 in create_local prep")
)
validate(
  need(ncol(sf.load.ll) == 5 & ncol(sf.load.orig) == 5,
       "Error 2 in create_local prep")
)


#------------------------------------------------------------------------------
### Set names and agr for sf objects; (if nec) convert CV to SE
tmp.geom.ll   <- st_geometry(sf.load.ll)
tmp.geom.orig <- st_geometry(sf.load.orig)

sf.load.ll <- st_set_geometry(sf.load.ll, NULL) %>%
  purrr::set_names(c("Pred", "SE", "Weight", "idx")) %>%
  mutate(SE = if(var.type == 1) SE / Pred else SE) %>%
  st_sf(geometry = tmp.geom.ll, agr = "constant")

sf.load.orig <- st_set_geometry(sf.load.orig, NULL) %>%
  purrr::set_names(c("Pred", "SE", "Weight", "idx")) %>%
  mutate(SE = if(var.type == 1) SE / Pred else SE) %>%
  st_sf(geometry = tmp.geom.orig, agr = "constant")
rm(tmp.geom.ll, tmp.geom.orig)


#------------------------------------------------------------------------------
### Process prediction values based on prediction type
if (pred.type == 1) {
  abund <- unname(round(eSDM::model_abundance(sf.load.orig, "Pred"), 1))

} else if (pred.type == 2) {
  abund <- "N/A"

} else if (pred.type == 3) {
  abund <- round(sum(sf.load.orig$Pred), 1)

  sdm.area.m2 <- st_area(sf.load.orig)
  validate(
    need(all(units(sdm.area.m2)$numerator == c("m", "m")),
         paste("Error: The GUI could not properly calculate the area of",
               "the prediction polygons; please ensure the predictions",
               "are properly formatted and have a defined coordinate system"))
  )

  sdm.area.km2 <- esdm_area_km2(sf.load.orig)
  sf.load.ll$Pred <- sf.load.ll$Pred / sdm.area.km2
  sf.load.orig$Pred <- sf.load.orig$Pred / sdm.area.km2

  sf.load.ll <- st_set_agr(sf.load.ll, "constant")
  sf.load.orig <- st_set_agr(sf.load.orig, "constant")
}


### Create vector of specs about the predictions, added to list of vectors
# Specs are: resolution, cell count, non-NA prediction count, abundance,
#   and lat/long extent
specs.curr <- c(
  model.res, nrow(sf.load.ll), sum(!is.na(sf.load.ll$Pred)), abund,
  paste0(
    "(", paste(round(st_bbox(sf.load.ll), 0)[c(1, 3)], collapse = ", "),
    "), (",
    paste(round(st_bbox(sf.load.ll), 0)[c(2, 4)], collapse = ", "), ")"
  )
)


###############################################################################
### Save objects to reactiveValues
vals$models.ll         <- c(vals$models.ll, list(sf.load.ll))
vals$models.orig       <- c(vals$models.orig, list(sf.load.orig))
vals$models.names      <- c(vals$models.names, model.name)
vals$models.data.names <- c(vals$models.data.names, data.names)
vals$models.pred.type  <- c(vals$models.pred.type, pred.type)
vals$models.specs      <- c(vals$models.specs, list(specs.curr))
smwoodman/eSDM documentation built on Aug. 21, 2024, 5:16 p.m.