Features API support
We're excited to announce Features API support in v2.15! You can now create Features API collections and items using both the CLI and SDK.
Using the command line client:
planet features collections list
planet features collections create --title "my new collection" // returns collection ID
planet features items add $COLLECTION_ID ./my-feature.geojsonPython SDK:
from planet import Planet
def main():
pl = Planet()
# list items in a collection
items = pl.features.list_items(collection_id=collection_id)
for item in items:
# use items/AOIs directly in other Planet APIs
results = pl.data.search(["PSScene"], geometry=item)See the docs for more SDK examples. Please open an issue to report bugs or provide feedback.
What's Changed
- Features client by @tbarsballe in #1073
- add info about features support by @stephenhillier in #1097
Full Changelog: 2.14.0...2.15.0