Skip to content

Commit

Permalink
added field_boundaries_sentinel_2_p1m for Field Boundaries PV support
Browse files Browse the repository at this point in the history
  • Loading branch information
cholmes committed Mar 20, 2024
1 parent cdc2768 commit f41c835
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@


Added:
- Support for field_boundaries_sentinel_2_p1m in Subscriptions API (#1026)

2.4.0 (2024-03-19)

Added:
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ extra_css:

plugins:
- search
- with-pdf
- mkdocstrings:
handlers:
python:
Expand Down
3 changes: 2 additions & 1 deletion planet/cli/subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,8 @@ def request_catalog(item_types,
"land_surface_temperature",
"soil_water_content",
"vegetation_optical_depth",
"forest_carbon_diligence_30m"
"forest_carbon_diligence_30m",
"field_boundaries_sentinel_2_p1m"
]),
)
@click.option('--var-id', required=True, help='Planetary variable id.')
Expand Down
7 changes: 4 additions & 3 deletions planet/subscription_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@ def planetary_variable_source(
"land_surface_temperature",
"soil_water_content",
"vegetation_optical_depth",
"forest_carbon_diligence_30m"],
"forest_carbon_diligence_30m",
"field_boundaries_sentinel_2_p1m"],
var_id: str,
geometry: Mapping,
start_time: datetime,
Expand All @@ -296,8 +297,8 @@ def planetary_variable_source(
Parameters:
var_type: one of "biomass_proxy", "land_surface_temperature",
"soil_water_content", "vegetation_optical_depth", or
"forest_carbon_diligence_30m".
"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

0 comments on commit f41c835

Please sign in to comment.