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.
- {planet-2.6 → planet-2.6.dev0}/PKG-INFO +1 -1
- planet-2.6.dev0/planet/__version__.py +1 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/subscriptions.py +0 -1
- {planet-2.6 → planet-2.6.dev0}/planet/subscription_request.py +4 -6
- {planet-2.6 → planet-2.6.dev0}/planet.egg-info/PKG-INFO +1 -1
- planet-2.6/planet/__version__.py +0 -1
- {planet-2.6 → planet-2.6.dev0}/LICENSE +0 -0
- {planet-2.6 → planet-2.6.dev0}/README.md +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/__init__.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/auth.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/__init__.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/auth.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/cli.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/cmds.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/collect.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/data.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/io.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/options.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/orders.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/session.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/cli/types.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/clients/__init__.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/clients/data.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/clients/orders.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/clients/subscriptions.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/constants.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/data/Feature.json +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/data/README.md +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/data/orders_product_bundle_2023-02-24.json +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/data_filter.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/exceptions.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/geojson.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/http.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/io.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/models.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/order_request.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/reporting.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet/specs.py +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet.egg-info/SOURCES.txt +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet.egg-info/dependency_links.txt +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet.egg-info/entry_points.txt +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet.egg-info/not-zip-safe +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet.egg-info/requires.txt +0 -0
- {planet-2.6 → planet-2.6.dev0}/planet.egg-info/top_level.txt +0 -0
- {planet-2.6 → planet-2.6.dev0}/setup.cfg +0 -0
- {planet-2.6 → planet-2.6.dev0}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '2.6dev'
|
|
@@ -280,8 +280,7 @@ def catalog_source(
|
|
|
280
280
|
|
|
281
281
|
|
|
282
282
|
def planetary_variable_source(
|
|
283
|
-
var_type: Literal["
|
|
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 "
|
|
309
|
-
"
|
|
310
|
-
"
|
|
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
|
planet-2.6/planet/__version__.py
DELETED
|
@@ -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
|
|
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
|