eoAPI_Maxar_demo: raster endpoint #201
nsshah1288
started this conversation in
General
Replies: 2 comments
-
one more thing I forgot, the paging to get all the items was not working for me. I think it was not properly hitting the next link and therefore was requesting the same set of items over and over again. I changed the cell to look like the following, using a counter:
and then it worked and returned 2115 items. I will make a small PR for this if I get some time |
Beta Was this translation helpful? Give feedback.
0 replies
-
@nsshah1288 🙏 thanks Would you be able to make a PR to update the notebook? 🙏 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, thank you so much for the demo located here: https://github.com/developmentseed/eoAPI/blob/main/demo/Maxar/eoAPI_Maxar_demo.ipynb
it is very helpful!
One small comment, when I was doing the Asset visualization, when I did
info = httpx.get(f"{raster_endpoint}/collections/{collection_id}/items/{item_id}/info").json()
, I was getting the following error:{
"detail": "AWS_SECRET_ACCESS_KEY and AWS_NO_SIGN_REQUEST configuration options not defined, and /root/.aws/credentials not filled"
}
In the docker-compose.yml file here, I removed the
AWS_ACCESS_KEY_ID
andAWS_SECRET_ACCESS_KEY
environment variables from titiler-pgstac and addedAWS_NO_SIGN_REQUEST=true
. Then, the raster endpoint worked to return the metadata for the assets.Thank you again for the demo!
Beta Was this translation helpful? Give feedback.
All reactions