Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 2.21 KB

File metadata and controls

44 lines (36 loc) · 2.21 KB

Sentinel2ATileEntry

Properties

Name Type Description Notes
b01 BandInformationEntry [optional]
b02 BandInformationEntry [optional]
b03 BandInformationEntry [optional]
b04 BandInformationEntry [optional]
b05 BandInformationEntry [optional]
b06 BandInformationEntry [optional]
b07 BandInformationEntry [optional]
b08 BandInformationEntry [optional]
b09 BandInformationEntry [optional]
b10 BandInformationEntry [optional]
b11 BandInformationEntry [optional]
b12 BandInformationEntry [optional]
info str The url to Sentinel2A scene information
metadata str The url to Sentinel2A scene XML metadata
preview str The url to Sentinel2A scene preview image
url str The url to Sentinel2A scene root directory that contains all informations about the scene
timestamp str The sensing time of the scene

Example

from actinia_openapi_python_client.models.sentinel2_a_tile_entry import Sentinel2ATileEntry

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

# convert the object into a dict
sentinel2_a_tile_entry_dict = sentinel2_a_tile_entry_instance.to_dict()
# create an instance of Sentinel2ATileEntry from a dict
sentinel2_a_tile_entry_form_dict = sentinel2_a_tile_entry.from_dict(sentinel2_a_tile_entry_dict)

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