eemont.image.getOffsetParams

eemont.image.getOffsetParams(self)[source]

Gets the offset parameters for each band of the image.

Parameters

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

Returns

Dictionary with the offset parameters for each band.

Return type

dict

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}