Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions planet/cli/subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,7 @@ def request_catalog(item_types,
required=True,
help='Planetary variable type.',
type=click.Choice([
"analysis_ready_ps",
"biomass_proxy",
"land_surface_temperature",
"soil_water_content",
Expand Down
10 changes: 6 additions & 4 deletions planet/subscription_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@ def catalog_source(


def planetary_variable_source(
var_type: Literal["biomass_proxy",
var_type: Literal["analysis_ready_ps",
"biomass_proxy",
"land_surface_temperature",
"soil_water_content",
"vegetation_optical_depth",
Expand All @@ -304,9 +305,10 @@ def planetary_variable_source(
Note: this function does not validate variable types and ids.

Parameters:
var_type: one of "biomass_proxy", "land_surface_temperature",
"soil_water_content", "vegetation_optical_depth",
"forest_carbon_diligence_30m, or field_boundaries_sentinel_2_p1m".
var_type: one of "analysis_ready_ps", "biomass_proxy",
"land_surface_temperature", "soil_water_content",
"vegetation_optical_depth", "forest_carbon_diligence_30m,
or field_boundaries_sentinel_2_p1m".
var_id: a value such as "SWC-AMSR2-C_V1.0_100" for soil water
content derived from AMSR2 C band.
geometry: The area of interest of the subscription that will be
Expand Down