Skip to content

Features API support

Choose a tag to compare

@stephenhillier stephenhillier released this 24 Feb 20:37
· 91 commits to main since this release
65b7792

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.geojson

Python 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

Full Changelog: 2.14.0...2.15.0