Nothing
# Tests for comprehensive workflows
# ===================================================================
test_that("NDVI workflow completes successfully", {
red_raster <- create_test_raster()
terra::values(red_raster) <- runif(terra::ncell(red_raster), 0.1, 0.3)
nir_raster <- create_test_raster()
terra::values(nir_raster) <- runif(terra::ncell(nir_raster), 0.4, 0.8)
config <- list(
analysis_type = "ndvi_crop_analysis",
input_data = list(red = red_raster, nir = nir_raster),
region_boundary = c(-84, 40, -83, 41),
output_folder = tempdir()
)
expect_no_error(
workflow_result <- run_comprehensive_geospatial_workflow(config)
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.