diff --git a/opendm/photo.py b/opendm/photo.py index 14e6ec63..f594e562 100644 --- a/opendm/photo.py +++ b/opendm/photo.py @@ -734,7 +734,15 @@ def get_horizontal_irradiance(self): scale = 1.0 # Assumed if self.irradiance_scale_to_si is not None: scale = self.irradiance_scale_to_si - elif self.camera_make == "MicaSense" and self.camera_model == "RedEdge-P": + elif ( + self.camera_make == "MicaSense" + and ( + self.camera_model == "RedEdge-P" + or self.camera_model == "RedEdge-M" + or self.camera_model == "Altum" + or self.camera_model == "Altum-PT" + ) + ): scale = 0.01 return self.horizontal_irradiance * scale