A list of all the scale and offset parameters for each raster dataset in Google Earth Engine.
The list of scale and offset parameters for each raster dataset (check the list here) is presented in the ee-catalog-scale-offset-parameters.json
file. This list will be be used by the eemont Python package for the .scale()
method in ee.Image
and ee.ImageCollection
extensions.
The structure of the list follows this standard:
{
...,
'dataset_id': {
'band1_name': {
'scale': 'scale_value',
'offset': 'offset_value'
},
'band2_name': {
'scale': 'scale_value',
'offset': 'offset_value'
},
...
},
...
}
The scale
and offset
parameters for each band are the gee:scale
and gee:offset
keys for each one of the bands in the eo:bands
key of the raster datasets in the Google Earth Engine STAC.
If a specific band doesn't have the gee:scale
attribute, the scale
attribute is set as 1.0
, while the offset
attribute is set to 0.0
if the gee:offset
attribute doesn't exist.
If a raster dataset doesn't have bands in the eo:bands
attribute, the dataset is not included in this list.
Check the full list of scale and offset parameters here.
You can download or clone the repository:
git clone https://github.com/davemlz/ee-catalog-scale-offset-params.git
Or you can download the single file here (right-click > Save link as...):
- json file: Raw list.
The list is updated every day from the Google Earth Engine STAC by using GitHub Actions.