This package provides utilities for querying a local STAC catalog and retrieving asset information, designed for wildfire resilience data workflows.
- Hard-coded local STAC catalog path
- Functions to list, filter, and extract properties from STAC items
- Asset URL extraction for COG and other file types
- Ready for extension to remote STAC APIs and COG tile retrieval
- Use
devtools::document()to generate documentation - Use
devtools::check()to run package checks - Use
testthatfor unit testing - Use
usethis::use_r()to add new R scripts - Use
pkgdownto build package website
library(fedex)
items <- load_stac_items()
domains <- get_domains(items)
asset_urls <- get_asset_urls(items[[1]])See r-pkgs.org for best practices.