| items_sign_planetary_computer {rstac} | R Documentation | 
Signs URL to access assets from Microsoft's Planetary Computer.
Description
These functions provide support to access assets from Planetary Computer.
-  items_sign_planetary_computer():A simplified function to sign assets' URL from Microsoft Planetary Computer to be able to access the data. 
-  sign_planetary_computer(): Creates a signing function to be used byitems_sign(). This function sign all the assets' URL.
Usage
items_sign_planetary_computer(items, subscription_key = NULL, ...)
sign_planetary_computer(..., headers = NULL, token_url = NULL)
Arguments
| items | a  | 
| subscription_key | the  | 
| ... | additional parameters can be supplied to the  | 
| headers | a named character vector with headers key-value content. | 
| token_url | a  | 
Value
-  items_sign_planetary_computer(): items with signed assets URLs.
-  sign_planetary_computer(): a function to to be passed toitems_sign().
Examples
## Not run: 
 # doc_items object
 stac_obj <- stac("https://planetarycomputer.microsoft.com/api/stac/v1/") %>%
  stac_search(collections = "sentinel-2-l2a",
              bbox = c(-47.02148, -17.35063, -42.53906, -12.98314)) %>%
  get_request()
 # the new way to authenticate:
 stac_obj <- stac_obj %>%
   items_sign_planetary_computer()
 # this is the old way of authentication (still works):
 # stac_obj <- stac_obj %>%
 #   items_sign(sign_fn = sign_planetary_computer())
 # example of access to collections that require authentication
 stac_obj <- stac("https://planetarycomputer.microsoft.com/api/stac/v1") %>%
   stac_search(collections = c("sentinel-1-rtc"),
               bbox = c(-64.8597, -10.4919, -64.79272527, -10.4473),
               datetime = "2019-01-01/2019-01-28") %>%
   post_request()
 # the new way to authenticate:
 # stac_obj <- stac_obj %>%
 #   items_sign_planetary_computer("<subscription-key>")
 # this is the old way of authentication (still works):
 # stac_obj <- stac_obj %>%
 #   items_sign(
 #     sign_fn = sign_planetary_computer(
 #       headers = c("Ocp-Apim-Subscription-Key" = <your-mpc-token>)
 #     )
 #   )
## End(Not run)