Example #1
0
 def __init__(self, *args, **kwargs):
     """
     Init the class. Options will be passed to parent class
     (pysiral.l2proc.procsteps.Level2ProcessorStep)
     :param args:
     :param kwargs:
     """
     Level2ProcessorStep.__init__(self, *args, **kwargs)
     SLABaseFunctionality.__init__(self)
Example #2
0
    def __init__(self, *args, **kwargs):
        """
        Init the class. All *args and **kwargs will be directed to Level2ProcessorStep as
        SurfaceTypeClassifier does not take any input at __init__
        :param args:
        :param kwargs:
        """

        # Init the parent classes
        Level2ProcessorStep.__init__(self, *args, **kwargs)
        SurfaceTypeClassifier.__init__(self)

        # Set the classes that this classifier will detect
        self._classes = ["unknown", "ocean", "lead", "sea_ice", "land"]
Example #3
0
    def __init__(self, *args, **kwargs):
        """
        Init the class. All *args and **kwargs will be directed to Level2ProcessorStep as
        SurfaceTypeClassifier does not take any input at __init__
        :param args:
        :param kwargs:
        """

        # Init the parent classes
        Level2ProcessorStep.__init__(self, *args, **kwargs)
        SurfaceTypeClassifier.__init__(self)

        # Properties of this class
        self.reference_date = None