📘

Quick Start

Here is a recipe for getting MODIS NDVI.

Access

ndvi.modis denotes NDVI at 250m resolution generated from the MODIS constellation. MODIS has a daily revisit cycle. Access it by setting variable to a list that includes ndvi.modis. For example:

ndvi_request = {
    'variable': ['ndvi.modis'],
    '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.6222411.0
2019-01-020-90.7252940.674100.6542611.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.modisNDVI
qa.modisa 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.)