📘

Quick Start

Here is a recipe for getting Sentinel-2 NDVI.

Access

ndvi.sentinel2 denotes NDVI at 10m resolution generated from the Sentinel-2 constellation. Sentinel-2 has an 5-day revisit cycle. Access it by setting variable to a list that includes ndvi.sentinel2. For example:

ndvi_request = {
    'variable': ['ndvi.sentinel2'],
    'space': [[-90.72529, 40.67410]], # Single US corn farm
    'time': {
        'start':'2019',
        'end':'2022',
    }
}

Output

Sample Output

timepointlatlonndvi.sentinel2qa.sentinel2
2019-01-010-90.7252940.674100.2423411.0
2019-01-020-90.7252940.674100.2763210.0

Field Definitions

ColumnDescription
timeThe date of the NDVI measurement. (UTC)
pointan integer identifier unique to each location in the request
lat, lonthe latitude and longitude
ndvi.sentinel2NDVI
qa.sentinel2a floating point number where 1.0 indicates the NDVI value is valid; 0.0 indicates it is invalid (because no good image was available that day.)