View source: R/stac_download.R
| stac_search_raw | R Documentation |
Like stac_search() but returns the raw rstac doc_items object
instead of a tibble. Useful as input for stac_download() and
stac_to_cube().
stac_search_raw(
url,
collections = NULL,
bbox = NULL,
datetime = NULL,
limit = 100L
)
url |
Character. Root URL of a STAC API endpoint
(e.g., |
collections |
Character vector. Collection IDs to search within. |
bbox |
Numeric vector of length 4: |
datetime |
Character. Date/time filter as a single datetime or
range (e.g., |
limit |
Integer. Maximum number of items to return. Defaults to 100. |
An rstac doc_items object.
raw <- stac_search_raw(
url = "https://earth-search.aws.element84.com/v1",
collections = "sentinel-2-l2a",
bbox = c(-84.5, 38.0, -84.3, 38.2),
limit = 1
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.