feat: add HDA dataset discovery notebook (PySTAC) - #170
Open
alefonsecagom wants to merge 10 commits into
Open
Conversation
Staging, API key example
Staging - gpu examples and HDA for climate DT ph. II and updates on HDA incr.6
…aateum-patch-1 Update update_insula_branch.yml
…aateum-patch-2 Update update_insula_branch.yml
…sergenerated-code-updates Legacy non standard ItemFolderNamingConvention handled
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
JessBurEum
reviewed
Jul 31, 2026
JessBurEum
left a comment
Contributor
There was a problem hiding this comment.
Don't merge this Pull Request from fork. Too many files in PR. Create a separate Issue and PR just to integrate the 1 file HDA-Dataset-Discovery-STAC-API-Filter-Extension.ipynb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A new beginner-oriented notebook showing how a first-time user can explore
the DestinE Data Lake catalog and find the dataset (collection) IDs needed
for any later data search or download.
Path:
HDA/PySTAC/Data-Discovery/HDA-Dataset-Discovery.ipynbThe notebook walks through several ways to discover datasets against the
HDA STAC API v2 (
https://hda.data.destination-earth.eu/stac/v2) usingpystac-client:List all collections : print every collection ID and title.
Search by keyword : free-text search with the
qparameter(single term, OR-style comma lists, exact phrases).
Browse by provider / information type : group the catalog by the
EO.<PROVIDER>ID convention and inspect per-collection keywords.Filter by space and time : restrict results with a bounding box and
a datetime range.
From collection to queryables : bridge to the item-search step by
listing the filters available inside a chosen collection.
Notes
pystac-client(pip install pystac-client).