Skip to content

Update Subscriptions API data layers with forest_carbon_diligence_30m #1012

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 16, 2023
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
3 changes: 2 additions & 1 deletion planet/cli/subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ def request_catalog(item_types,
"biomass_proxy",
"land_surface_temperature",
"soil_water_content",
"vegetation_optical_depth"
"vegetation_optical_depth",
"forest_carbon_diligence_30m"
]),
)
@click.option('--var-id', required=True, help='Planetary variable id.')
Expand Down
6 changes: 4 additions & 2 deletions planet/subscription_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ def planetary_variable_source(
var_type: Literal["biomass_proxy",
"land_surface_temperature",
"soil_water_content",
"vegetation_optical_depth"],
"vegetation_optical_depth",
"forest_carbon_diligence_30m"],
var_id: str,
geometry: Mapping,
start_time: datetime,
Expand All @@ -286,7 +287,8 @@ def planetary_variable_source(

Parameters:
var_type: one of "biomass_proxy", "land_surface_temperature",
"soil_water_content", or "vegetation_optical_depth".
"soil_water_content", "vegetation_optical_depth", or
"forest_carbon_diligence_30m".
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