planet 2.6__tar.gz → 2.6.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. {planet-2.6 → planet-2.6.dev0}/PKG-INFO +1 -1
  2. planet-2.6.dev0/planet/__version__.py +1 -0
  3. {planet-2.6 → planet-2.6.dev0}/planet/cli/subscriptions.py +0 -1
  4. {planet-2.6 → planet-2.6.dev0}/planet/subscription_request.py +4 -6
  5. {planet-2.6 → planet-2.6.dev0}/planet.egg-info/PKG-INFO +1 -1
  6. planet-2.6/planet/__version__.py +0 -1
  7. {planet-2.6 → planet-2.6.dev0}/LICENSE +0 -0
  8. {planet-2.6 → planet-2.6.dev0}/README.md +0 -0
  9. {planet-2.6 → planet-2.6.dev0}/planet/__init__.py +0 -0
  10. {planet-2.6 → planet-2.6.dev0}/planet/auth.py +0 -0
  11. {planet-2.6 → planet-2.6.dev0}/planet/cli/__init__.py +0 -0
  12. {planet-2.6 → planet-2.6.dev0}/planet/cli/auth.py +0 -0
  13. {planet-2.6 → planet-2.6.dev0}/planet/cli/cli.py +0 -0
  14. {planet-2.6 → planet-2.6.dev0}/planet/cli/cmds.py +0 -0
  15. {planet-2.6 → planet-2.6.dev0}/planet/cli/collect.py +0 -0
  16. {planet-2.6 → planet-2.6.dev0}/planet/cli/data.py +0 -0
  17. {planet-2.6 → planet-2.6.dev0}/planet/cli/io.py +0 -0
  18. {planet-2.6 → planet-2.6.dev0}/planet/cli/options.py +0 -0
  19. {planet-2.6 → planet-2.6.dev0}/planet/cli/orders.py +0 -0
  20. {planet-2.6 → planet-2.6.dev0}/planet/cli/session.py +0 -0
  21. {planet-2.6 → planet-2.6.dev0}/planet/cli/types.py +0 -0
  22. {planet-2.6 → planet-2.6.dev0}/planet/clients/__init__.py +0 -0
  23. {planet-2.6 → planet-2.6.dev0}/planet/clients/data.py +0 -0
  24. {planet-2.6 → planet-2.6.dev0}/planet/clients/orders.py +0 -0
  25. {planet-2.6 → planet-2.6.dev0}/planet/clients/subscriptions.py +0 -0
  26. {planet-2.6 → planet-2.6.dev0}/planet/constants.py +0 -0
  27. {planet-2.6 → planet-2.6.dev0}/planet/data/Feature.json +0 -0
  28. {planet-2.6 → planet-2.6.dev0}/planet/data/README.md +0 -0
  29. {planet-2.6 → planet-2.6.dev0}/planet/data/orders_product_bundle_2023-02-24.json +0 -0
  30. {planet-2.6 → planet-2.6.dev0}/planet/data_filter.py +0 -0
  31. {planet-2.6 → planet-2.6.dev0}/planet/exceptions.py +0 -0
  32. {planet-2.6 → planet-2.6.dev0}/planet/geojson.py +0 -0
  33. {planet-2.6 → planet-2.6.dev0}/planet/http.py +0 -0
  34. {planet-2.6 → planet-2.6.dev0}/planet/io.py +0 -0
  35. {planet-2.6 → planet-2.6.dev0}/planet/models.py +0 -0
  36. {planet-2.6 → planet-2.6.dev0}/planet/order_request.py +0 -0
  37. {planet-2.6 → planet-2.6.dev0}/planet/reporting.py +0 -0
  38. {planet-2.6 → planet-2.6.dev0}/planet/specs.py +0 -0
  39. {planet-2.6 → planet-2.6.dev0}/planet.egg-info/SOURCES.txt +0 -0
  40. {planet-2.6 → planet-2.6.dev0}/planet.egg-info/dependency_links.txt +0 -0
  41. {planet-2.6 → planet-2.6.dev0}/planet.egg-info/entry_points.txt +0 -0
  42. {planet-2.6 → planet-2.6.dev0}/planet.egg-info/not-zip-safe +0 -0
  43. {planet-2.6 → planet-2.6.dev0}/planet.egg-info/requires.txt +0 -0
  44. {planet-2.6 → planet-2.6.dev0}/planet.egg-info/top_level.txt +0 -0
  45. {planet-2.6 → planet-2.6.dev0}/setup.cfg +0 -0
  46. {planet-2.6 → planet-2.6.dev0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: planet
3
- Version: 2.6
3
+ Version: 2.6.dev0
4
4
  Summary: Planet SDK for Python
5
5
  Home-page: https://github.com/planetlabs/planet-client-python
6
6
  Author: Jennifer Reiber Kyle
@@ -0,0 +1 @@
1
+ __version__ = '2.6dev'
@@ -406,7 +406,6 @@ def request_catalog(item_types,
406
406
  required=True,
407
407
  help='Planetary variable type.',
408
408
  type=click.Choice([
409
- "analysis_ready_ps",
410
409
  "biomass_proxy",
411
410
  "land_surface_temperature",
412
411
  "soil_water_content",
@@ -280,8 +280,7 @@ def catalog_source(
280
280
 
281
281
 
282
282
  def planetary_variable_source(
283
- var_type: Literal["analysis_ready_ps",
284
- "biomass_proxy",
283
+ var_type: Literal["biomass_proxy",
285
284
  "land_surface_temperature",
286
285
  "soil_water_content",
287
286
  "vegetation_optical_depth",
@@ -305,10 +304,9 @@ def planetary_variable_source(
305
304
  Note: this function does not validate variable types and ids.
306
305
 
307
306
  Parameters:
308
- var_type: one of "analysis_ready_ps", "biomass_proxy",
309
- "land_surface_temperature", "soil_water_content",
310
- "vegetation_optical_depth", "forest_carbon_diligence_30m,
311
- or field_boundaries_sentinel_2_p1m".
307
+ var_type: one of "biomass_proxy", "land_surface_temperature",
308
+ "soil_water_content", "vegetation_optical_depth",
309
+ "forest_carbon_diligence_30m, or field_boundaries_sentinel_2_p1m".
312
310
  var_id: a value such as "SWC-AMSR2-C_V1.0_100" for soil water
313
311
  content derived from AMSR2 C band.
314
312
  geometry: The area of interest of the subscription that will be
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: planet
3
- Version: 2.6
3
+ Version: 2.6.dev0
4
4
  Summary: Planet SDK for Python
5
5
  Home-page: https://github.com/planetlabs/planet-client-python
6
6
  Author: Jennifer Reiber Kyle
@@ -1 +0,0 @@
1
- __version__ = '2.6'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes