Skip to content
Snippets Groups Projects
Commit e08df8bc authored by Paolo Veglio's avatar Paolo Veglio
Browse files

added bands and fixed SCENE_LIST

parent 13c45f5d
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,17 @@ class ConstantsNamespace:
RTD = 180.0 / np.pi
@dataclass(frozen=True)
class SensorConstants:
"""Sensor-dependent constants."""
VIIRS_VIS_BANDS = ("M01", "M02", "M03", "M04", "M05", "M06", "M07", "M08", "M09", "M10")
VIIRS_IR_BANDS = ("M11", "M12", "M13", "M14", "M15", "M16")
VIIRS_IMG_BANDS = ("I01", "I02", "I03", "I04", "I05")
REFLECTIVE_BANDS = ("M01", "M04", "M05", "M07", "M10", "M11", "I01", "I02", "I03")
EMISSIVE_BANDS = ("M12", "M13", "M14", "M15", "M16", "I04", "I05")
@dataclass(frozen=True)
class SceneConstants:
"""Constants for scenes."""
......@@ -102,7 +113,6 @@ class SceneConstants:
"Land_Night",
"Day_Snow",
"Night_Snow",
"Coast_Day",
"Land_Day_Desert",
"Antarctic_Day",
"Polar_Day_Snow",
......@@ -116,8 +126,6 @@ class SceneConstants:
"Polar_Night_Ocean",
"Land_Day_Desert_Coast",
"Land_Day_Coast",
"Desert",
"Australia",
)
FLAGS = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment