Good afternoon!
I am receiving a {"message":"Forbidden"} error when requesting temporary credentials from this link: https://data.lpdaac.earthdatacloud.nasa.gov/s3credentials
This started about an hour ago.
Thanks!
Search found 9 matches
- Tue Apr 15, 2025 12:16 pm America/New_York
- Forum: Home
- Question: "Forbidden" error when requesting temporary credentials
- Replies: 2
- Fri Dec 06, 2024 10:43 am America/New_York
- Forum: Home
- Question: API error when querying cloudstac with an irregular geometry
- Replies: 5
Re: API error when querying cloudstac with an irregular geometry
Thanks for your help! I have just confirmed this solution works for me.
For others who may come across this thread, the query worked when I reordered the points of the failing_aoi shapely polygon with this line of code:
aoi_reordered = shapely.geometry.polygon.orient(aoi, sign=1.0)
For others who may come across this thread, the query worked when I reordered the points of the failing_aoi shapely polygon with this line of code:
aoi_reordered = shapely.geometry.polygon.orient(aoi, sign=1.0)
- Thu Nov 21, 2024 10:10 am America/New_York
- Forum: Home
- Question: API error when querying cloudstac with an irregular geometry
- Replies: 5
Re: API error when querying cloudstac with an irregular geometry
Thanks for the reply. I'm still waiting on a response from cmr-support@earthdata.nasa.gov. I'll let you know when I receive an update.
- Mon Nov 18, 2024 5:15 pm America/New_York
- Forum: Home
- Question: API error when querying cloudstac with an irregular geometry
- Replies: 5
API error when querying cloudstac with an irregular geometry
Good evening! I am getting the following error when querying cloudstac (using pystac_client) with a geometry that has a slightly irregular shape (mostly rectangular, but not quite). The failing polygon is the left half of the working polygon, so it's smaller and I would expect it to pull fewer scene...
- Tue Oct 08, 2024 12:59 pm America/New_York
- Forum: Home
- Question: Certain HLS (S30) granule(s) lack imagery
- Replies: 7
Re: Certain HLS (S30) granule(s) lack imagery
Also following
- Thu Aug 29, 2024 12:16 pm America/New_York
- Forum: Home
- Question: 403: Forbidden errors when requesting temporary credentials
- Replies: 7
Re: 403: Forbidden errors when requesting temporary credentials
The issue has been resolved for me as well. Thank you!
- Wed Aug 28, 2024 12:44 pm America/New_York
- Forum: Home
- Question: 403: Forbidden errors when requesting temporary credentials
- Replies: 7
403: Forbidden errors when requesting temporary credentials
Good afternoon, I am getting a 403: Forbidden error code when requesting temporary credentials from https://data.lpdaac.earthdatacloud.nasa.gov/s3credentials. This is the function I'm using to request the credentials: def get_temp_creds(): temp_creds_url = 'https://data.lpdaac.earthdatacloud.nasa.go...
- Tue Aug 13, 2024 10:23 am America/New_York
- Forum: Home
- Question: Tips for using HLS with Dask distributed and pystac_client?
- Replies: 3
Re: Tips for using HLS with Dask distributed and pystac_client?
Good morning, To follow up on this discussion, I've made some advancements that might provide some more insight. I managed to stabilize one version of the image compositing processing by adjusting some of the GDAL settings, specifically by adding GDAL_HTTP_MAX_RETRY and GDAL_HTTP_RETRY_DELAY to the ...
- Wed Jul 31, 2024 12:33 pm America/New_York
- Forum: Home
- Question: Tips for using HLS with Dask distributed and pystac_client?
- Replies: 3
Tips for using HLS with Dask distributed and pystac_client?
Good afternoon, I am currently using Dask distributed to query and process HLS data from CloudSTAC with pystac_client and Open Data Cube. I use client.map() to create percentile composites for 7 bands across several timeframes in parallel. However, it usually takes 5-10 tries to start the processing...