-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Description
Currently, stackstac supports sat-stac, pystac, and plain lists/dicts in STAC format. My impression is that the community has consolidated around pystac and pystac-client, and sat-stac is not used much anymore. For maintenance, just supporting pystac might make things simpler.
Any thoughts on:
- Dropping support for sat-stac
- Dropping support for plain Python lists/dicts in STAC format
There's really no urgency to this. I just happened to notice we're still using get_all_tiems()
with pystac, which is now deprecated, and thought some of this might be slightly easier to maintain if we weren't supporting as many possible input types.
stackstac/stackstac/stac_types.py
Lines 187 to 188 in 30e7c5b
if isinstance(items, PystacCatalog): | |
return [item.to_dict() for item in items.get_all_items()] |
Metadata
Metadata
Assignees
Labels
No labels