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

fixed bug with Ocean_Day selection not including CONTINENTAL land_water_mask

parent 68f1b877
No related branches found
No related tags found
No related merge requests found
"""Functions that define scene type."""
import gc
import logging # noqa
import logging
import os
import ancillary_data as anc
......@@ -163,6 +163,7 @@ class IdentifyPixels:
water_scene = xr.where(
(self.data.land_water_mask == SceneConstants.SHALLOW_OCEAN)
| (self.data.land_water_mask == SceneConstants.DEEP_INLAND)
| (self.data.land_water_mask == SceneConstants.CONTINENTAL)
| (self.data.land_water_mask == SceneConstants.DEEP_OCEAN),
1,
water_scene,
......
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