📘

Quick Start

Here is a recipe for getting a daily, 10m resolution NDVI time series from Streambatch (ndvi.streambatch)

Access

ndvi.streambatch denotes Streambatch NDVI which is daily, 10m resolution NDVI for every point on Earth with history to 2013. It is constructed through the fusion of satellite imagery from the Sentinel-2, Landsat, and MODIS constellations. This is the highest resolution, highest frequency NDVI data available from Streambatch.

Access it by setting variable to a list that includes ndvi.streambatch For example:

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

Output

Sample Output

timepointlatlonndvi.streambatchsource.streambatch
2018-01-010-20.7829-44.149130.4523411.0
2018-01-020-20.7829-44.149130.4603211.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.streambatchNDVI
source.streambatcha floating point number denoting the satellite system from which NDVI was derived. See table below for mappings.

source.streambatch mappings

Source CodeConstellation
3.0Sentinel-2
2.0Landsat
1.0MODIS
0.0No new data was available; NDVI is an extrapolation.

Caveats

The maximum polygon size for ndvi.streambatch is 1000 hectares.