📘

Quick Start

Here is a recipe that gets NDVI for a single point.

Points

There are two types of points queries:

  • Single point
  • Multiple points

All point queries use the WGS84 (EPSG:4326) coordinate reference system (CRS) as the standard for specifying longitude and latitude coordinates.

Single Point

To get NDVI for a single point set the space parameter to a list containing one element of the form [lon,lat]:

'space': [[-44.149163, -20.789250]] # [lon,lat]

Multiple Points

To get NDVI for multiple points set the space parameter to a list containing multiple elements, each of the form [lon,lat]:

points = [
    [-110.77218240128887, 53.047207162913054], # [lon,lat] 
    [-107.71114557157661, 42.069834687214886], # [lon,lat] 
    [-89.77438693960706, 61.06958184371825] # [lon,lat] 
]

'space': points