File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ Version 2.0 includes support for the core workflows of the following APIs:
13
13
* [ Data] ( https://developers.planet.com/docs/data/ ) - Search for imagery from Planet's data catalog.
14
14
* [ Orders] ( https://developers.planet.com/docs/orders/ ) - Process and download or deliver imagery.
15
15
* [ Subscriptions] ( https://developers.planet.com/docs/subscriptions/ ) - Set up a search to auto-process and deliver imagery.
16
+ * [ Features] ( https://developers.planet.com/docs/apis/features/ ) - Upload areas of interest to the Planet platform.
16
17
17
18
After the initial 2.0 release there will be additional work to support the
18
19
remaining Planet APIs: [ basemaps] ( https://developers.planet.com/docs/basemaps/ ) ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ class Planet:
19
19
`data`: for interacting with the Planet Data API.
20
20
`orders`: Orders API.
21
21
`subscriptions`: Subscriptions API.
22
+ `features`: Features API
22
23
23
24
Quick start example:
24
25
```python
@@ -47,7 +48,7 @@ def __init__(self, session: Optional[Session] = None) -> None:
47
48
self ._session = session or Session ()
48
49
self ._session ._client .headers .update ({
49
50
"X-Planet-App" : SYNC_CLIENT_X_PLANET_APP ,
50
- "User-Agent" : f"planet-client-python/{ __version__ } /sync"
51
+ "User-Agent" : f"planet-client-python/{ __version__ } /sync" ,
51
52
})
52
53
53
54
self .data = DataAPI (self ._session )
You can’t perform that action at this time.
0 commit comments