📘

Quick Start

Here is a recipe for getting Landsat NDVI.

Access

ndvi.landsat denotes NDVI at 30m resolution generated from the Landsat constellation. Landsat has an 8-day revisit cycle. Access it by setting variable to a list that includes ndvi.landsat. For example:

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

Output

Sample Output

timepointlatlonndvi.landsatqa.landsat
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.landsatNDVI
qa.landsata 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.)