Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.56 KB

File metadata and controls

31 lines (23 loc) · 1.56 KB

LandsatSceneListModel

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

Properties

Name Type Description Notes
atcor_method str The method for atmospheric correction
strds str The basename of the new space-time raster datasets (strds). One for each band will be created and the basename will be extended by a band specific suffix.
scene_ids List[str] A list of Landsat scene names that should be downloaded and imported. Only scenes from a specific satelleite can be imported and represented as strds. Mixing of different satellites is not permitted. All bands will be imported and atmospherically corrected

Example

from actinia_openapi_python_client.models.landsat_scene_list_model import LandsatSceneListModel

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

# convert the object into a dict
landsat_scene_list_model_dict = landsat_scene_list_model_instance.to_dict()
# create an instance of LandsatSceneListModel from a dict
landsat_scene_list_model_form_dict = landsat_scene_list_model.from_dict(landsat_scene_list_model_dict)

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