if (FALSE) {
# These examples require external data files not included with the package
# Analyze NDVI trends over time
ndvi_trend <- analyze_temporal_changes(
data_list = c("ndvi_2020.tif", "ndvi_2021.tif", "ndvi_2022.tif"),
dates = c("2020", "2021", "2022"),
region_boundary = "Iowa",
analysis_type = "trend"
)
# Detect land cover changes
land_changes <- analyze_temporal_changes(
data_list = land_cover_files,
dates = land_cover_dates,
analysis_type = "change_detection"
)
}
Run the code above in your browser using DataLab