-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
landsat collection 1 #229
Comments
Hello @bucricket , thanks for pointing this out. Is this for Landsat data that is not available on AWS? Downloading data for any Landsat data available on AWS should still work using the scene ID. For data available only through USGS we will look into it, thanks again! |
Hi Matt,
This is for the non-AWS data. I actually use the search feature from Landsat-util to find the scenes and then use the espa-api to order and download the data. I have a work around right now using the https://landsat.usgs.gov/landsat/metadata_service/bulk_metadata_files/LANDSAT_8_C1.csv <https://landsat.usgs.gov/landsat/metadata_service/bulk_metadata_files/LANDSAT_8_C1.csv> file and importing it into pandas but its pretty slow. Don’t know if you are willing to implement collection 1 into Landsat-util since I guess it is a bit out of the scope of it as you are only dealing with AWS and google data. I use ESPA because I need higher level products.
Mitch
… On Apr 10, 2017, at 11:52 PM, Matthew Hanson ***@***.***> wrote:
Hello @bucricket <https://github.com/bucricket> , thanks for pointing this out. Is this for Landsat data that is not available on AWS? Downloading data for any Landsat data available on AWS should still work using the scene ID. For data available only through USGS we will look into it, thanks for bringing it up!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#229 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AHdNEHdlLqHleIVw3OjdqzfrAfw2Gq3Cks5ruvjsgaJpZM4M5epB>.
|
Just wanted to post this here, AWS is also changing their data structure for the new Collection-1. As of April 30th no new imagery will be posted in the old AWS scene ID structure, it is now based on product ID. This is an email we received last week: _Hello and thank you for indicating interest in the Landsat on AWS dataset (https://aws.amazon.com/public-datasets/landsat/). We wanted to make you aware of some upcoming changes to the data structure based on USGS’ move to Collections (https://landsat.usgs.gov/april-3-2017-changes-landsat-pre-collection-processing). We'll proceed with a new Collection 1 prefix: s3://landsat-pds/c1/L8/// and a fresh scene list located at s3://landsat-pds/c1/L8/scene_list.gz. It has the same form as the previous scene list, with the addition of the product id. Collection 1 data is being brought in as of now. Pre-collection will continue to flow until USGS stops updating the archive, which we believe will be at the end of this month per https://landsat.usgs.gov/april-3-2017-changes-landsat-pre-collection-processing. There is an example Collection 1 image at https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/149/039/LC08_L1TP_149039_20170411_20170415_01_T1/index.html._ |
Good to know. Will you be implementing the “ProductID” that collection 1 uses instead of the “sceneID” that pre-collection uses?
Mitch
… On May 1, 2017, at 2:10 PM, noahpvaughn ***@***.***> wrote:
Just wanted to post this here, AWS is also changing their data structure for the new Collection-1. As of April 30th no new imagery will be posted in the old AWS scene ID structure, it is now based on product ID. This is an email we received last week:
_Hello and thank you for indicating interest in the Landsat on AWS dataset (https://aws.amazon.com/public-datasets/landsat/ <https://aws.amazon.com/public-datasets/landsat/>). We wanted to make you aware of some upcoming changes to the data structure based on USGS’ move to Collections (https://landsat.usgs.gov/april-3-2017-changes-landsat-pre-collection-processing <https://landsat.usgs.gov/april-3-2017-changes-landsat-pre-collection-processing>).
We'll proceed with a new Collection 1 prefix: s3://landsat-pds/c1/L8/// and a fresh scene list located at s3://landsat-pds/c1/L8/scene_list.gz. It has the same form as the previous scene list, with the addition of the product id.
Collection 1 data is being brought in as of now. Pre-collection will continue to flow until USGS stops updating the archive, which we believe will be at the end of this month per https://landsat.usgs.gov/april-3-2017-changes-landsat-pre-collection-processing <https://landsat.usgs.gov/april-3-2017-changes-landsat-pre-collection-processing>. There is an example Collection 1 image at https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/149/039/LC08_L1TP_149039_20170411_20170415_01_T1/index.html <https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/149/039/LC08_L1TP_149039_20170411_20170415_01_T1/index.html>._
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#229 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AHdNEMzqhFpDSWzPkinBhGM6jqVV-_y7ks5r1iAagaJpZM4M5epB>.
|
Any updates on this? I'm very interested in getting collection 1 data. |
@bucricket the api used for search now has collection-1 data being added, we're working on updating all of the download links so that it points to the right data across USGS/AWS/Google. That should be coming soon and we can update this library to advantage of that soon |
@drewbo |
The solution for download from USGS is very simple. See PR #235 |
@drewbo was wondering if there is any news regarding updated download links. I'm trying to download collection 1 data (files that exist on AWS/Google) and I'm getting RemoteFileDoesntExist exceptions. Any guidance on the best way to download collection 1 data from AWS/Google using the sceneIDs or productIDs generated by landsat-util search? Thanks! |
Hey Nick, the Landsat on AWS is supposed to be updated to use collection 1, but right now it's still older data, and the links are bad because USGS incremented the revision number but they have not been updated on AWS. So, if you want Collection 1 I think you are stuck with USGS for now. If you are fine with using previous revisions of the file, but just want the download to work then there's another option. I made a new lightweight repository called sat-search, works for both sentinel-2 and landsat-8. As a work-around for landsat-8, while it won't update the (incorrect) links, if you use sat-search to download the files and it can't find it, it will try previous revisions until it can. It's just a beta, and no one has really used it yet, but you are welcome to try if you find it useful. While I put a beta version on PyPi it's already outdated and it's best to install it from source. |
This has been fixed in the old version of sat-api: https://api.developmentseed.org/satellites/ and the AWS links work now (although still are the older revisions on AWS). Note there is a new version of sat-api now that conforms to the STAC spec: |
Hi,
I'm wondering if you are planning on implementing the new collection 1 information? The ESPA ordering system no longer stores the pre-collection data and so the sceneID information doesn't work anymore. We need the Landsat-product ID now.
Mitch
The text was updated successfully, but these errors were encountered: