eemont.imagecollection.getOffsetParams¶
- eemont.imagecollection.getOffsetParams(self)[source]¶
Gets the offset parameters for each band of the image collection.
- Parameters
self (ee.ImageCollection (this)) – Image collection to get the offset parameters from.
- Returns
Dictionary with the offset parameters for each band.
- Return type
dict
See also
getScaleParamsGets the scale parameters for each band of the image collection.
scaleAndOffsetScales bands on an image collection according to their scale and offset parameters.
Examples
>>> import ee, eemont >>> ee.Authenticate() >>> ee.Initialize() >>> ee.ImageCollection('MODIS/006/MOD11A2').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}