Source code for demcompare.classification_layer.global_classification

#!/usr/bin/env python
# coding: utf8
#
# Copyright (c) 2022 Centre National d'Etudes Spatiales (CNES).
#
# This file is part of demcompare
# (see https://github.com/CNES/demcompare).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""
Mainly contains the GlobalClassification class.
"""
import logging
from collections import OrderedDict
from typing import Dict

import numpy as np
import xarray as xr

from ..internal_typing import ConfigType
from .classification_layer import ClassificationLayer
from .classification_layer_template import ClassificationLayerTemplate


@ClassificationLayer.register("global")
[docs] class GlobalClassificationLayer(ClassificationLayerTemplate): """ GlobalClassificationLayer Classification layer with on single class that considers all non nodata and nonan pixels """ def __init__( self, name: str, classification_layer_kind: str, cfg: Dict, dem: xr.Dataset = None, ): """ Init function :param name: classification layer name :type name: str :param classification_layer_kind: classification layer kind :type classification_layer_kind: str :param cfg: layer's configuration :type cfg: ConfigType :param dem: dem :type dem: xr.DataSet containing : - image : 2D (row, col) xr.DataArray float32 - georef_transform: 1D (trans_len) xr.DataArray - classification_layer_masks : 3D (row, col, indicator) xr.DataArray :return: None """ # Call generic init before supercharging super().__init__(name, classification_layer_kind, cfg, dem) # Checking configuration during initialisation step # doesn't require classification layers if dem is not None: # Create labelled map to classification_layer from self._create_labelled_map() # Create class masks self._create_class_masks() logging.debug("ClassificationLayer created as: %s", self)
[docs] def fill_conf_and_schema(self, cfg: ConfigType = None) -> ConfigType: """ Add default values to the dictionary if there are missing elements and define the configuration schema :param cfg: coregistration configuration :type cfg: ConfigType :return cfg: coregistration configuration updated :rtype: ConfigType """ # Default global class self.classes = OrderedDict([("global", [1])]) cfg["classes"] = self.classes # Call generic fill_conf_and_schema cfg = super().fill_conf_and_schema(cfg) # Add subclass parameter to the default schema self.schema["classes"] = OrderedDict return cfg
[docs] def _create_labelled_map(self): """ Create the labelled map and save it if necessary :return: None """ # Global classification layer has a single class that # considers all non nodata and nonan pixels map_img = np.ones(self.dem["image"].shape) map_img[np.where(np.isnan(self.dem["image"].data))] = np.nan # Store map_image self.map_image["ref"] = map_img # If output_dir is set, create map_dataset and save if self.output_dir: self.save_map_img(map_img, "ref")