Skip to content

Commit 33e2f6b

Browse files
committed
enable arps in subs
1 parent dd1cb0e commit 33e2f6b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

planet/cli/subscriptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@ def request_catalog(item_types,
406406
required=True,
407407
help='Planetary variable type.',
408408
type=click.Choice([
409+
"analysis_ready_ps",
409410
"biomass_proxy",
410411
"land_surface_temperature",
411412
"soil_water_content",

planet/subscription_request.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ def catalog_source(
280280

281281

282282
def planetary_variable_source(
283-
var_type: Literal["biomass_proxy",
283+
var_type: Literal["analysis_ready_ps",
284+
"biomass_proxy",
284285
"land_surface_temperature",
285286
"soil_water_content",
286287
"vegetation_optical_depth",
@@ -304,9 +305,10 @@ def planetary_variable_source(
304305
Note: this function does not validate variable types and ids.
305306
306307
Parameters:
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".
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".
310312
var_id: a value such as "SWC-AMSR2-C_V1.0_100" for soil water
311313
content derived from AMSR2 C band.
312314
geometry: The area of interest of the subscription that will be

0 commit comments

Comments
 (0)