eemont.image.getScaleParams

eemont.image.getScaleParams(self)[source]

Gets the scale parameters for each band of the image.

Parameters

self (ee.Image (this)) – Image to get the scale parameters from.

Returns

Dictionary with the scale parameters for each band.

Return type

dict

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}