Source code for eemont.image

import warnings

import ee
import ee_extra
import ee_extra.Spectral.core
import ee_extra.Algorithms.core
import requests

from .extending import extend


@extend(ee.image.Image)
def __getitem__(self, key):
    """Gets the band of the image according to the specified key.

    Parameters
    ----------
    self : ee.Image
        Image to get the bands from.
    key : numeric | string | list[numeric] | list[string] | slice
        Key used to get the specified band. If numeric, it gets the band at that index.
        If string, it gets the band with that name or that matches with regex. If list, it
        gets multiple bands. If slice, it calls the slice() method (the step parameter is
        ignored).

    Returns
    -------
    ee.Image
        Image with the selected bands.
    """
    if isinstance(key, slice):

        if key.start == None:
            start = 0
        else:
            start = key.start

        if key.stop == None:
            stop = self.bandNames().size()
        else:
            stop = key.stop

        selected = self.slice(start, stop)

    else:
        selected = self.select(key)

    return selected


[docs]@extend(ee.image.Image) def __add__(self, other): """Computes the addition between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Addition of two images. """ return self.add(other)
[docs]@extend(ee.image.Image) def __radd__(self, other): """Computes the addition between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Addition of two images. """ return self.add(other)
@extend(ee.image.Image) def __sub__(self, other): """Computes the subtraction between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Subtraction of two images. """ return self.subtract(other) @extend(ee.image.Image) def __rsub__(self, other): """Computes the subtraction between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Subtraction of two images. """ return ee.Image(other).subtract(self) @extend(ee.image.Image) def __mul__(self, other): """Computes the multiplication between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Multiplication of two images. """ return self.multiply(other) @extend(ee.image.Image) def __rmul__(self, other): """Computes the multiplication between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Multiplication of two images. """ return self.multiply(other) @extend(ee.image.Image) def __truediv__(self, other): """Computes the division between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Division of two images. """ return self.divide(other) @extend(ee.image.Image) def __rtruediv__(self, other): """Computes the division between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Division of two images. """ return ee.Image(other).divide(self) @extend(ee.image.Image) def __floordiv__(self, other): """Computes the floor division of two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Floor division of two images. """ return self.divide(other).floor() @extend(ee.image.Image) def __rfloordiv__(self, other): """Computes the floor division of two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Floor division of two images. """ return ee.Image(other).divide(self).floor() @extend(ee.image.Image) def __mod__(self, other): """Computes the modulo of two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Modulo of two images. """ return self.mod(other) @extend(ee.image.Image) def __rmod__(self, other): """Computes the modulo of two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Modulo of two images. """ return ee.Image(other).mod(self) @extend(ee.image.Image) def __pow__(self, other): """Computes the base (left operand) to the power (right operand). Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Bsae to the power of two images. """ return self.pow(other) @extend(ee.image.Image) def __rpow__(self, other): """Computes the base (left operand) to the power (right operand). Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Base to the power of two images. """ return ee.Image(other).pow(self) @extend(ee.image.Image) def __lshift__(self, other): """Computes the left shift operation between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Left shift operation. """ return self.leftShift(other) @extend(ee.image.Image) def __rlshift__(self, other): """Computes the left shift operation between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Left shift operation. """ return ee.Image(other).leftShift(self) @extend(ee.image.Image) def __rshift__(self, other): """Computes the right shift operation between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Right shift operation. """ return self.rightShift(other) @extend(ee.image.Image) def __rrshift__(self, other): """Computes the right shift operation between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Right shift operation. """ return ee.Image(other).rightShift(self) @extend(ee.image.Image) def __and__(self, other): """Computes the binary operator AND between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Binary operator AND. """ return self.And(other) @extend(ee.image.Image) def __rand__(self, other): """Computes the binary operator AND between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Binary operator AND. """ return ee.Image(other).And(self) @extend(ee.image.Image) def __or__(self, other): """Computes the binary operator OR between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Binary operator OR. """ return self.Or(other) @extend(ee.image.Image) def __ror__(self, other): """Computes the binary operator OR between two images. Parameters ---------- self : ee.Image Right operand. other : ee.Image | numeric | list[numeric] Left operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Binary operator OR. """ return ee.Image(other).Or(self) @extend(ee.image.Image) def __lt__(self, other): """Computes the rich comparison LOWER THAN between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Rich comparison LOWER THAN. """ return self.lt(other) @extend(ee.image.Image) def __le__(self, other): """Computes the rich comparison LOWER THAN OR EQUAL between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Rich comparison LOWER THAN OR EQUAL. """ return self.lte(other) @extend(ee.image.Image) def __eq__(self, other): """Computes the rich comparison EQUAL between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Rich comparison EQUAL. """ return self.eq(other) @extend(ee.image.Image) def __ne__(self, other): """Computes the rich comparison NOT EQUAL THAN between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Rich comparison NOT EQUAL. """ return self.neq(other) @extend(ee.image.Image) def __gt__(self, other): """Computes the rich comparison GREATER THAN between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Rich comparison GREATER THAN. """ return self.gt(other) @extend(ee.image.Image) def __ge__(self, other): """Computes the rich comparison GREATER THAN OR EQUAL between two images. Parameters ---------- self : ee.Image Left operand. other : ee.Image | numeric | list[numeric] Right operand. If numeric, an ee.Image is created from its value. If list, an ee.Image with n bands (n = len(list)) is created from its values. Returns ------- ee.Image Rich comparison GREATER THAN OR EQUAL. """ return self.gte(other) @extend(ee.image.Image) def __neg__(self): """Computes the unary operator NEGATIVE on an image. Parameters ---------- self : ee.Image Operand. Returns ------- ee.Image Unary operator NEGATIVE. """ return self.multiply(-1) @extend(ee.image.Image) def __invert__(self): """Computes the unary operator NOT on an image. Parameters ---------- self : ee.Image Operand. Returns ------- ee.Image Unary operator NOT. """ return self.Not()
[docs]@extend(ee.image.Image) def index( self, index="NDVI", G=2.5, C1=6.0, C2=7.5, L=1.0, cexp=1.16, nexp=2.0, alpha=0.1, slope=1.0, intercept=0.0, gamma=1.0, kernel="RBF", sigma="0.5 * (a + b)", p=2.0, c=1.0, online=False, drop=False, ): """Computes one or more spectral indices (indices are added as bands) for an image. .. deprecated:: 0.3.0 Use :func:`spectralIndices()` instead. Tip ---------- Check more info about the supported platforms and spectral indices in the :ref:`User Guide<Spectral Indices Computation>`. Parameters ---------- self : ee.Image [this] Image to compute indices on. Must be scaled to [0,1]. index : string | list[string], default = 'NDVI' Index or list of indices to compute.\n Available options: - 'vegetation' : Compute all vegetation indices. - 'burn' : Compute all burn indices. - 'water' : Compute all water indices. - 'snow' : Compute all snow indices. - 'drought' : Compute all drought indices. - 'urban' : Compute all urban (built-up) indices. - 'kernel' : Compute all kernel indices. - 'all' : Compute all indices listed below. Awesome Spectral Indices for GEE: Check the complete list of indices `here <https://awesome-ee-spectral-indices.readthedocs.io/en/latest/list.html>`_. G : float, default = 2.5 Gain factor. Used just for index = 'EVI'. C1 : float, default = 6.0 Coefficient 1 for the aerosol resistance term. Used just for index = 'EVI'. C2 : float, default = 7.5 Coefficient 2 for the aerosol resistance term. Used just for index = 'EVI'. L : float, default = 1.0 Canopy background adjustment. Used just for index = ['EVI','SAVI']. cexp : float, default = 1.16 Exponent used for OCVI. nexp : float, default = 2.0 Exponent used for GDVI. alpha : float, default = 0.1 Weighting coefficient used for WDRVI. slope : float, default = 1.0 Soil line slope. intercept : float, default = 0.0 Soil line intercept. gamma : float, default = 1.0 Weighting coefficient used for ARVI. kernel : str, default = 'RBF' Kernel used for kernel indices.\n Available options: - 'linear' : Linear Kernel. - 'RBF' : Radial Basis Function (RBF) Kernel. - 'poly' : Polynomial Kernel. sigma : str | float, default = '0.5 * (a + b)' Length-scale parameter. Used for kernel = 'RBF'. If str, this must be an expression including 'a' and 'b'. If numeric, this must be positive. p : float, default = 2.0 Kernel degree. Used for kernel = 'poly'. c : float, default = 1.0 Free parameter that trades off the influence of higher-order versus lower-order terms in the polynomial kernel. Used for kernel = 'poly'. This must be greater than or equal to 0. online : boolean, default = False Whether to retrieve the most recent list of indices directly from the GitHub repository and not from the local copy. drop : boolean, default = True Whether to drop all bands except the new spectral indices. Returns ------- ee.Image Image with the computed spectral index, or indices, as new bands. See Also -------- scale : Scales bands on an image collection. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> S2 = ee.ImageCollection('COPERNICUS/S2_SR').scale().first() - Computing one spectral index: >>> S2.index('NDVI') - Computing indices with different parameters: >>> S2.index('SAVI',L = 0.5) - Computing multiple indices: >>> S2.index(['NDVI','EVI','GNDVI']) - Computing a specific group of indices: >>> S2.index('vegetation') - Computing kernel indices: >>> S2.index(['kNDVI'],kernel = 'poly',p = 5) - Computing all indices: >>> S2.index('all') """ warnings.warn( "index() is deprecated, please use spectralIndices() instead", DeprecationWarning, ) return self
[docs]@extend(ee.image.Image) def spectralIndices( self, index="NDVI", G=2.5, C1=6.0, C2=7.5, L=1.0, cexp=1.16, nexp=2.0, alpha=0.1, slope=1.0, intercept=0.0, gamma=1.0, omega=2.0, kernel="RBF", sigma="0.5 * (a + b)", p=2.0, c=1.0, online=False, drop=False, ): """Computes one or more spectral indices (indices are added as bands) for an image from the Awesome List of Spectral Indices. Tip ---------- Check more info about the supported platforms and spectral indices in the :ref:`User Guide<Spectral Indices Computation>`. Parameters ---------- self : ee.Image [this] Image to compute indices on. Must be scaled to [0,1]. index : string | list[string], default = 'NDVI' Index or list of indices to compute.\n Available options: - 'vegetation' : Compute all vegetation indices. - 'burn' : Compute all burn indices. - 'water' : Compute all water indices. - 'snow' : Compute all snow indices. - 'drought' : Compute all drought indices. - 'urban' : Compute all urban (built-up) indices. - 'kernel' : Compute all kernel indices. - 'all' : Compute all indices listed below. Awesome Spectral Indices for GEE: Check the complete list of indices `here <https://awesome-ee-spectral-indices.readthedocs.io/en/latest/list.html>`_. G : float, default = 2.5 Gain factor. Used just for index = 'EVI'. C1 : float, default = 6.0 Coefficient 1 for the aerosol resistance term. Used just for index = 'EVI'. C2 : float, default = 7.5 Coefficient 2 for the aerosol resistance term. Used just for index = 'EVI'. L : float, default = 1.0 Canopy background adjustment. Used just for index = ['EVI','SAVI']. cexp : float, default = 1.16 Exponent used for OCVI. nexp : float, default = 2.0 Exponent used for GDVI. alpha : float, default = 0.1 Weighting coefficient used for WDRVI. slope : float, default = 1.0 Soil line slope. intercept : float, default = 0.0 Soil line intercept. gamma : float, default = 1.0 Weighting coefficient used for ARVI. omega : float, default = 2.0 Weighting coefficient used for MBWI. kernel : str, default = 'RBF' Kernel used for kernel indices.\n Available options: - 'linear' : Linear Kernel. - 'RBF' : Radial Basis Function (RBF) Kernel. - 'poly' : Polynomial Kernel. sigma : str | float, default = '0.5 * (a + b)' Length-scale parameter. Used for kernel = 'RBF'. If str, this must be an expression including 'a' and 'b'. If numeric, this must be positive. p : float, default = 2.0 Kernel degree. Used for kernel = 'poly'. c : float, default = 1.0 Free parameter that trades off the influence of higher-order versus lower-order terms in the polynomial kernel. Used for kernel = 'poly'. This must be greater than or equal to 0. online : boolean, default = False Whether to retrieve the most recent list of indices directly from the GitHub repository and not from the local copy. drop : boolean, default = True Whether to drop all bands except the new spectral indices. Returns ------- ee.Image Image with the computed spectral index, or indices, as new bands. See Also -------- scaleAndOffset : Scales bands on an image collection. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> S2 = ee.ImageCollection('COPERNICUS/S2_SR').scaleAndOffset().first() - Computing one spectral index: >>> S2.spectralIndices('NDVI') - Computing indices with different parameters: >>> S2.spectralIndices('SAVI',L = 0.5) - Computing multiple indices: >>> S2.spectralIndices(['NDVI','EVI','GNDVI']) - Computing a specific group of indices: >>> S2.spectralIndices('vegetation') - Computing kernel indices: >>> S2.spectralIndices(['kNDVI'],kernel = 'poly',p = 5) - Computing all indices: >>> S2.spectralIndices('all') """ return ee_extra.Spectral.core.spectralIndices( self, index, G, C1, C2, L, cexp, nexp, alpha, slope, intercept, gamma, omega, kernel, sigma, p, c, online, drop, )
[docs]@extend(ee.image.Image) def maskClouds( self, method="cloud_prob", prob=60, maskCirrus=True, maskShadows=True, scaledImage=False, dark=0.15, cloudDist=1000, buffer=250, cdi=None, ): """Masks clouds and shadows in an image (valid just for Surface Reflectance products). Tip ---------- Check more info about the supported platforms and clouds masking in the :ref:`User Guide<Masking Clouds and Shadows>`. Parameters ---------- self : ee.Image [this] Image to mask. method : string, default = 'cloud_prob' Method used to mask clouds.\n Available options: - 'cloud_prob' : Use cloud probability. - 'qa' : Use Quality Assessment band. This parameter is ignored for Landsat products. prob : numeric [0, 100], default = 60 Cloud probability threshold. Valid just for method = 'cloud_prob'. This parameter is ignored for Landsat products. maskCirrus : boolean, default = True Whether to mask cirrus clouds. Valid just for method = 'qa'. This parameter is ignored for Landsat products. maskShadows : boolean, default = True Whether to mask cloud shadows. For more info see 'Braaten, J. 2020. Sentinel-2 Cloud Masking with s2cloudless. Google Earth Engine, Community Tutorials'. scaledImage : boolean, default = False Whether the pixel values are scaled to the range [0,1] (reflectance values). This parameter is ignored for Landsat products. dark : float [0,1], default = 0.15 NIR threshold. NIR values below this threshold are potential cloud shadows. This parameter is ignored for Landsat products. cloudDist : int, default = 1000 Maximum distance in meters (m) to look for cloud shadows from cloud edges. This parameter is ignored for Landsat products. buffer : int, default = 250 Distance in meters (m) to dilate cloud and cloud shadows objects. This parameter is ignored for Landsat products. cdi : float [-1,1], default = None Cloud Displacement Index threshold. Values below this threshold are considered potential clouds. A cdi = None means that the index is not used. For more info see 'Frantz, D., HaS, E., Uhl, A., Stoffels, J., Hill, J. 2018. Improvement of the Fmask algorithm for Sentinel-2 images: Separating clouds from bright surfaces based on parallax effects. Remote Sensing of Environment 2015: 471-481'. This parameter is ignored for Landsat products. Returns ------- ee.Image Cloud-shadow masked image. Notes ----- This method may mask water as well as clouds for the Sentinel-3 Radiance product. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> S2 = (ee.ImageCollection('COPERNICUS/S2_SR') ... .first() ... .maskClouds(prob = 75,buffer = 300,cdi = -0.5)) """ return ee_extra.QA.clouds.maskClouds( self, method, prob, maskCirrus, maskShadows, scaledImage, dark, cloudDist, buffer, cdi, )
[docs]@extend(ee.image.Image) def scale(self): """Scales bands on an image. .. deprecated:: 0.3.0 Use :func:`scaleAndOffset()` instead. Tip ---------- Check more info about the supported platforms and image scaling the :ref:`User Guide<Image Scaling>`. Parameters ---------- self : ee.Image [this] Image to scale. Returns ------- ee.Image Scaled image. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> S2 = ee.ImageCollection('COPERNICUS/S2_SR').first().scale() """ warnings.warn( "scale() is deprecated, please use scaleAndOffset() instead", DeprecationWarning, ) return ee_extra.STAC.core.scaleAndOffset(self)
[docs]@extend(ee.image.Image) def getScaleParams(self): """Gets the scale parameters for each band of the image. Parameters ---------- self : ee.Image (this) Image to get the scale parameters from. Returns ------- dict Dictionary with the scale parameters for each band. See Also -------- getOffsetParams : Gets the offset parameters for each band of the image. scaleAndOffset : Scales bands on an image according to their scale and offset parameters. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> ee.ImageCollection('MODIS/006/MOD11A2').first().getScaleParams() {'Clear_sky_days': 1.0, 'Clear_sky_nights': 1.0, 'Day_view_angl': 1.0, 'Day_view_time': 0.1, 'Emis_31': 0.002, 'Emis_32': 0.002, 'LST_Day_1km': 0.02, 'LST_Night_1km': 0.02, 'Night_view_angl': 1.0, 'Night_view_time': 0.1, 'QC_Day': 1.0, 'QC_Night': 1.0} """ return ee_extra.STAC.core.getScaleParams(self)
[docs]@extend(ee.image.Image) def getOffsetParams(self): """Gets the offset parameters for each band of the image. Parameters ---------- self : ee.Image (this) Image to get the offset parameters from. Returns ------- dict Dictionary with the offset parameters for each band. See Also -------- getScaleParams : Gets the scale parameters for each band of the image. scaleAndOffset : Scales bands on an image according to their scale and offset parameters. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> ee.ImageCollection('MODIS/006/MOD11A2').first().getOffsetParams() {'Clear_sky_days': 0.0, 'Clear_sky_nights': 0.0, 'Day_view_angl': -65.0, 'Day_view_time': 0.0, 'Emis_31': 0.49, 'Emis_32': 0.49, 'LST_Day_1km': 0.0, 'LST_Night_1km': 0.0, 'Night_view_angl': -65.0, 'Night_view_time': 0.0, 'QC_Day': 0.0, 'QC_Night': 0.0} """ return ee_extra.STAC.core.getOffsetParams(self)
[docs]@extend(ee.image.Image) def scaleAndOffset(self): """Scales bands on an image according to their scale and offset parameters. Tip ---------- Check more info about the supported platforms and image scaling the :ref:`User Guide<Image Scaling>`. Parameters ---------- self : ee.Image [this] Image to scale. Returns ------- ee.Image Scaled image. See Also -------- getScaleParams : Gets the scale parameters for each band of the image. getOffsetParams : Gets the offset parameters for each band of the image. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> S2 = ee.ImageCollection('COPERNICUS/S2_SR').first().scaleAndOffset() """ return ee_extra.STAC.core.scaleAndOffset(self)
[docs]@extend(ee.image.Image) def preprocess(self, **kwargs): """Pre-processes the image: masks clouds and shadows, and scales and offsets the image. Tip ---------- Check more info here about the supported platforms, :ref:`Image Scaling<Image Scaling>` and :ref:`Masking Clouds and Shadows<Masking Clouds and Shadows>`. Parameters ---------- self : ee.Image [this] Image to pre-process. **kwargs : Keywords arguments for maskClouds(). Returns ------- ee.Image Pre-processed image. See Also -------- getScaleParams : Gets the scale parameters for each band of the image. getOffsetParams : Gets the offset parameters for each band of the image. scaleAndOffset : Scales bands on an image according to their scale and offset parameters. maskClouds : Masks clouds and shadows in an image. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> S2 = ee.ImageCollection('COPERNICUS/S2_SR').first().preprocess() """ return ee_extra.QA.pipelines.preprocess(self, **kwargs)
[docs]@extend(ee.image.Image) def getSTAC(self): """Gets the STAC of the image. Parameters ---------- self : ee.Image [this] Image to get the STAC from. Returns ------- dict STAC of the image. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> ee.ImageCollection('COPERNICUS/S2_SR').first().getSTAC() {'stac_version': '1.0.0-rc.2', 'type': 'Collection', 'stac_extensions': ['https://stac-extensions.github.io/eo/v1.0.0/schema.json'], 'id': 'COPERNICUS/S2_SR', 'title': 'Sentinel-2 MSI: MultiSpectral Instrument, Level-2A', 'gee:type': 'image_collection', ...} """ return ee_extra.STAC.core.getSTAC(self)
[docs]@extend(ee.image.Image) def getDOI(self): """Gets the DOI of the image, if available. Parameters ---------- self : ee.Image [this] Image to get the DOI from. Returns ------- str DOI of the ee.Image dataset. See Also -------- getCitation : Gets the citation of the image, if available. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> ee.ImageCollection('NASA/GPM_L3/IMERG_V06').first().getDOI() '10.5067/GPM/IMERG/3B-HH/06' """ return ee_extra.STAC.core.getDOI(self)
[docs]@extend(ee.image.Image) def getCitation(self): """Gets the citation of the image, if available. Parameters ---------- self : ee.Image [this] Image to get the citation from. Returns ------- str Citation of the ee.Image dataset. See Also -------- getDOI : Gets the DOI of the image, if available. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> ee.ImageCollection('NASA/GPM_L3/IMERG_V06').first().getCitation() 'Huffman, G.J., E.F. Stocker, D.T. Bolvin, E.J. Nelkin, Jackson Tan (2019), GPM IMERG Final Precipitation L3 Half Hourly 0.1 degree x 0.1 degree V06, Greenbelt, MD, Goddard Earth Sciences Data and Information Services Center (GES DISC), Accessed: [Data Access Date], [doi:10.5067/GPM/IMERG/3B-HH/06](https://doi.org/10.5067/GPM/IMERG/3B-HH/06)' """ return ee_extra.STAC.core.getCitation(self)
[docs]@extend(ee.image.Image) def panSharpen(self, method="SFIM", qa=None, **kwargs): """Apply panchromatic sharpening to the Image. Optionally, run quality assessments between the original and sharpened Image to measure spectral distortion and set results as properties of the sharpened Image. Parameters ---------- self : ee.Image [this] Image to sharpen. method : str, default="SFIM" The sharpening algorithm to apply. Current options are "SFIM" (Smoothing Filter-based Intensity Modulation), "HPFA" (High Pass Filter Addition), "PCS" (Principal Component Substitution), and "SM" (simple mean). Different sharpening methods will produce different quality sharpening results in different scenarios. qa : str | list, default=None One or more optional quality assessment names to apply after sharpening. Results will be stored as image properties with the pattern `eemont:metric`, e.g. `eemont:RMSE`. **kwargs : Keyword arguments passed to ee.Image.reduceRegion() such as "geometry", "maxPixels", "bestEffort", etc. These arguments are only used for PCS sharpening and quality assessments. Returns ------- ee.Image The Image with all sharpenable bands sharpened to the panchromatic resolution and quality assessments run and set as properties. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> source = ee.Image("LANDSAT/LC08/C01/T1_TOA/LC08_047027_20160819") >>> sharp = source.panSharpen(method="HPFA", qa=["MSE", "RMSE"], maxPixels=1e13) """ return ee_extra.Algorithms.core.panSharpen(img=self, method=method, qa=qa, prefix="eemont", **kwargs)
[docs]@extend(ee.image.Image) def matchHistogram(self, target, bands, geometry=None, maxBuckets=256): """Adjust the image's histogram to match a target image. Parameters ---------- self : ee.Image [this] Image to adjust. target : ee.Image Image to match. bands : dict A dictionary of band names to match, with source bands as keys and target bands as values. geometry : ee.Geometry, default=None The region to match histograms in that overlaps both images. If none is provided, the geometry of the source image will be used. maxBuckets : int, default=256 The maximum number of buckets to use when building histograms. Will be rounded to the nearest power of 2. Returns ------- ee.Image The adjusted image containing the matched source bands. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> source = ee.Image("LANDSAT/LC08/C01/T1_TOA/LC08_047027_20160819") >>> target = ee.Image("LANDSAT/LE07/C01/T1_TOA/LE07_046027_20150701") >>> bands = { >>> "B4": "B3", >>> "B3": "B2", >>> "B2": "B1" >>> } >>> matched = source.matchHistogram(target, bands) """ return ee_extra.Spectral.core.matchHistogram( source=self, target=target, bands=bands, geometry=geometry, maxBuckets=maxBuckets )
[docs]@extend(ee.image.Image) def tasseledCap(self): """Calculates tasseled cap brightness, wetness, and greenness components. Tasseled cap transformations are applied using coefficients published for these supported platforms: * Sentinel-2 MSI Level 1C [1]_ * Landsat 8 OLI TOA [2]_ * Landsat 7 ETM+ TOA [3]_ * Landsat 5 TM Raw DN [4]_ * Landsat 4 TM Raw DN [5]_ * Landsat 4 TM Surface Reflectance [6]_ * MODIS NBAR [7]_ Parameters ---------- self : ee.Image Image to calculate tasseled cap components for. Must belong to a supported platform. Returns ------- ee.Image Image with the tasseled cap components as new bands. References ---------- .. [1] Shi, T., & Xu, H. (2019). Derivation of Tasseled Cap Transformation Coefficients for Sentinel-2 MSI At-Sensor Reflectance Data. IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, 1–11. doi:10.1109/jstars.2019.2938388 .. [2] Baig, M.H.A., Zhang, L., Shuai, T. and Tong, Q., 2014. Derivation of a tasselled cap transformation based on Landsat 8 at-satellite reflectance. Remote Sensing Letters, 5(5), pp.423-431. .. [3] Huang, C., Wylie, B., Yang, L., Homer, C. and Zylstra, G., 2002. Derivation of a tasselled cap transformation based on Landsat 7 at-satellite reflectance. International journal of remote sensing, 23(8), pp.1741-1748. .. [4] Crist, E.P., Laurin, R. and Cicone, R.C., 1986, September. Vegetation and soils information contained in transformed Thematic Mapper data. In Proceedings of IGARSS’86 symposium (pp. 1465-1470). Paris: European Space Agency Publications Division. .. [5] Crist, E.P. and Cicone, R.C., 1984. A physically-based transformation of Thematic Mapper data---The TM Tasseled Cap. IEEE Transactions on Geoscience and Remote sensing, (3), pp.256-263. .. [6] Crist, E.P., 1985. A TM tasseled cap equivalent transformation for reflectance factor data. Remote sensing of Environment, 17(3), pp.301-306. .. [7] Lobser, S.E. and Cohen, W.B., 2007. MODIS tasselled cap: land cover characteristics expressed through transformed MODIS data. International Journal of Remote Sensing, 28(22), pp.5079-5101. Examples -------- >>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> img = ee.Image("LANDSAT/LT05/C01/T1/LT05_044034_20081011") >>> img = img.tasseledCap() """ return ee_extra.Spectral.core.tasseledCap(self)