Accessing open datasets of Landsat 8 via S3 bucket

0

After accessing Sentinel 2's (L2) open dataset I tried to retrieve Landsat 8 datasets via bucket- landsat-pds. However, the bucket is not available on the registry.opendata.aws. I still tried. It did not call any datasets.

I always prefer harmonized Sentinel 2 data but I wanted to find if L8 data could be retrieved. I was using this script to get L8 data (Note: I tried it using the old and obsolete without credentials method):

import os
import boto3
from botocore.handlers import disable_signing

s3 = boto3.resource('s3')
s3.meta.client.meta.events.register('choose-signer.s3.*', disable_signing)
bucket = 'landsat-pds' # L8 bucket = landsat-pds

s3bucket = s3.Bucket(bucket)

path = '173'
row = '052'

prefix = "c1/L8/{}/{}/".format(path, row)

for object_summary in s3bucket.objects.filter(Prefix=prefix):
    # to get the output in a full AWS path,
    vsis3_s3_img_path = os.path.join("/vsis3/", bucket, object_summary.key).replace("\\", "/")
    print(vsis3_s3_img_path)

  1. Is the bucket landsat-pds available anymore or only usgs-landsat/collection02/`bucket for Landsat 8 datasets accessible?
  2. Can the bucket usgs-landsat/collection02/ be accessed without credentials?
  3. Element 84 used to handle the L8's open data collection but I could not trace a second L8 data source except the one managed by USGS.
AB_AWS
gefragt vor 7 Monaten271 Aufrufe
1 Antwort
0

Thanks for reaching out! The landsat-pds bucket no longer contains relevant data for this purpose and was deprecated in favor of the usgs-landsat bucket. More details in this announcement https://lists.osgeo.org/pipermail/landsat-pds/2020-December/000178.html.

USGS has provided access instructions at https://www.usgs.gov/node/28686, though I believe all of them require credentials for direct access to S3.

Hope that helps!

profile pictureAWS
beantwortet vor 7 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen