openapi: 3.0.1 info: title: eMODIS description: 'This eMODIS API provides a Normalized Difference Vegetation Index (NDVI), which quantifies vegetation by measuring the difference between near-infrared (which vegetation strongly reflects) and red light (which vegetation absorbs). Overall, NDVI is a standardized way to measure healthy vegetation. When you have high NDVI values, you have healthier vegetation. When you have low NDVI, you have less or no vegetation. ' version: '1.0' servers: - url: https://ag-analytics.azure-api.net/eMODIS paths: /: get: summary: GET Request eMODIS description: "\n\n\n\n\n\n
\n

\n Please note, you need to purchase a subscription key to call the API.
\n Please use the trial version to try now for a limited amount of uses before purchase.\n

\n
\n \n
\n
\n\n
\n\n\n\n \n
\n
eMODIS API data in FarmScope
\n
\n
\n
\n
\n \n\n\n
\n\n\n\n\n\n\n\n\n
\n

Click the Jupyter Notebook Static Sample to view a static rendition of this APIs Jupyter Notebook.
Click the Jupyter Notebook Github Repo to access the Jupyter Notebook .ipynb files and
instructions needed in order to run this APIs Jupyter Notebook.
\n
\n" operationId: get-request-emodis parameters: - name: year in: query description: ' The year of which you would like to receive data up to. (e.g. – 2018)' required: true schema: enum: - '' type: '' default: '' - name: shape in: query description: "(ESRI Polygon shape): The shape information for field in esriGeometryPolygon format.\nSee example request below. Standard open source JavaScript front-end libraries (e.g., Leaflet)\ncan be used to structure the shape." required: true schema: enum: - '' type: '' default: '' - name: filtered in: query description: Filter values using modified SG filter. required: true schema: enum: - '' type: '' default: '' - name: startYear in: query description: The year you would like the historical range to start. (e.g. 2002 -) required: true schema: enum: - '' type: '' default: '' responses: '200': description: '' content: application/json: { } components: securitySchemes: apiKeyHeader: type: apiKey name: Ocp-Apim-Subscription-Key in: header apiKeyQuery: type: apiKey name: subscription-key in: query security: - apiKeyHeader: [ ] - apiKeyQuery: [ ]