Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.61 KB

File metadata and controls

30 lines (22 loc) · 1.61 KB

Sentinel2ASceneListModel

This schema defines the JSON input of the sentinel time series creator resource

Properties

Name Type Description Notes
bands List[str] A list of band names that should be downloaded and imported for each Sentinel-2 scene.Available are the following band names: "B01", "B02", "B03", "B04", "B05", "B06", "B07","B08", "B8A", "B09" "B10", "B11", "B12"
product_ids List[str] A list of Sentinel-2 scene names of which the tile download urls and metadata infor urls should be provided.

Example

from actinia_openapi_python_client.models.sentinel2_a_scene_list_model import Sentinel2ASceneListModel

# TODO update the JSON string below
json = "{}"
# create an instance of Sentinel2ASceneListModel from a JSON string
sentinel2_a_scene_list_model_instance = Sentinel2ASceneListModel.from_json(json)
# print the JSON string representation of the object
print Sentinel2ASceneListModel.to_json()

# convert the object into a dict
sentinel2_a_scene_list_model_dict = sentinel2_a_scene_list_model_instance.to_dict()
# create an instance of Sentinel2ASceneListModel from a dict
sentinel2_a_scene_list_model_form_dict = sentinel2_a_scene_list_model.from_dict(sentinel2_a_scene_list_model_dict)

[Back to Model list] [Back to API list] [Back to README]