You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When accessing a protected bucket, like all NASA DAACs, that require authentication (EDL), to get a short term S3 session, you must make sure not to use the environment option: os.environ['AWS_NO_SIGN_REQUEST'] = 'YES'
This option is only for some public buckets that specifically do not accept account information. If you accidentally include this, tools like rasterio will skip your AWS Session.
@wildintellect in those notebooks, I'm adding the environment variable and setting it to 'NO' like above and making an additional note to set it to no/not include it at all or the data cannot be accessed - is that fine for the users?
When accessing a protected bucket, like all NASA DAACs, that require authentication (EDL), to get a short term S3 session, you must make sure not to use the environment option:
os.environ['AWS_NO_SIGN_REQUEST'] = 'YES'
This option is only for some public buckets that specifically do not accept account information. If you accidentally include this, tools like rasterio will skip your AWS Session.
We need to add a note to pages that use rio.env
https://docs.maap-project.org/en/latest/search.html?q=rio.env&check_keywords=yes&area=default
And possibly make a clearer general page. I noticed https://docs.maap-project.org/en/latest/technical_tutorials/access/lpdaac_gedi_access.html only talks about GEDI S3 but we don't have a page about all EarthDataCloud data.
@Phabs can provide some code examples
The text was updated successfully, but these errors were encountered: