From 3faff9267d279c744688e30c4f5a2b67467c4dcc Mon Sep 17 00:00:00 2001 From: Lukas Bindreiter Date: Fri, 22 Aug 2025 10:18:29 +0200 Subject: [PATCH] add note about credentials --- storage/clients.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/storage/clients.mdx b/storage/clients.mdx index b2679aa..5b5372c 100644 --- a/storage/clients.mdx +++ b/storage/clients.mdx @@ -128,6 +128,12 @@ The [United States Geological Survey (USGS)](https://www.usgs.gov/) provides a w Landsat data is available in a S3 bucket. The following code snippet demonstrates how to query and download Landsat data using the Tilebox Python SDK. + + The USGS Landsat S3 bucket is a [requester-pays](https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html) bucket. + This means that you will need to have an AWS account to access the data, and then have your AWS credentials configured in your environment. + Check out the [boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html) for more information on how to configure your credentials. + + ```python Python from pathlib import Path