# Load the libraries
import requests
import fiona
import geopandas as gpd
from requests.auth import HTTPBasicAuth
="1"
fieldnumber="new"
action
# Define the url of the API
= "https://www.api.automaticfarmsolutionwebapp.com/AFS/Asynchronous?"
url
# Define the API call
= url+"fieldnumber="+fieldnumber+"&action="+action
api_url
# Set the useremail & Password
="useremail"
USEREMAIL="apikey""
APIKEY
# Path to the GeoJSON file
= "county.geojson"
file_path_to_geojson
# Read the GeoJSON file contents
with open(file_path_to_geojson, "r") as file:
= file.read()
geojson_data
# Set the headers for the request
= {
headers "Content-Type": "application/json"
}
# Make the POST request with the GeoJSON data as the request body
= requests.post(api_url,
response =geojson_data,
data=headers,
headers=HTTPBasicAuth(USEREMAIL, APIKEY)) auth
Asynchronous
In this part we will focus on the batch processing endpoint aka, “AFS/Asynchronous”.
This endpoint allows the user to be able to request the processing of many fields with a single post request.
It is an asynchronous request i.e., as soon as the request is executed, the process begins and it will take some time before everything is readily available for further requests. Once the technical time has passed, all the data will be available, quickly This is to reduce making a request for each new field and wait for the response.
Asynchronous
Python
In this example we will test the Asynchronous which allow the user to perform a batch processing on several fields.
To use the following example you have to replace:
- USEREMAIL
- APIKEY
- fieldnumber, The field number. You have to refereed to the field that you can get from the gid column of the UserField endpoint response
- action, the action must be setted as none, new, edit. If you want to receive the data based on the polygons saved in the past set none. If you want to add a new field set as new. If you want to change the shape of the polygons set edit.
- file_path_to_geojson (you can find it here county.geojson the county file of the example)
With your information and let’s try out the API.
R
In this example we will test the BatchProcessing which allow the user to get the latest vegetation index available for the Area of Interest in gejson format
To use the following example you have to replace:
- USEREMAIL
- APIKEY
- fieldnumber, The field number. You have to refereed to the field that you can get from the gid column of the UserField endpoint response
- action, the action must be setted as none, new, edit. If you want to receive the data based on the polygons saved in the past set none. If you want to add a new field set as new. If you want to change the shape of the polygons set edit.
- file_path_to_geojson (you can find it here county.geojson the county file of the example)
With your information and let’s try out the API.
# Load the libraries
library(tictoc)
library(httr)
library(geojsonio)
library(mapview)
# Define the API parameters
="1"
fieldnumber="new"
action
# Define the url of the API
= "https://www.api.automaticfarmsolutionwebapp.com/AFS/Asynchronous?"
url
# Define the API endpoint
<-paste0(url, "fieldnumber=",fieldnumber,"&action=",action)
url_endpoint
# Set the useremail & Password
="useremail"
USEREMAIL="apikey"
APIKEY
# Path to the GeoJSON file
= "county.geojson"
file_path_to_geojson
# Get the start time to API Call
tic()
# Make the POST request
<- POST(
api_call
url_endpoint,::authenticate(
httruser = Sys.getenv(USEREMAIL),
password = Sys.getenv(APIKEY)
),body=httr::upload_file(file_path_to_geojson)
)
Node.js
In this example we will test the BatchProcessing which allow the user to get the latest vegetation index available for the Area of Interest in gejson format
To use the following example you have to replace:
- USEREMAIL
- APIKEY
- fieldnumber, The field number. You have to refereed to the field that you can get from the gid column of the UserField endpoint response
- action, the action must be setted as none, new, edit. If you want to receive the data based on the polygons saved in the past set none. If you want to add a new field set as new. If you want to change the shape of the polygons set edit.
- file_path_to_geojson (you can find it here county.geojson the county file of the example)
With your information and let’s try out the API.
// Load Libraries
const fs = require('fs');
const axios = require('axios');
// Set the useremail & passowrd
const useremail = 'XXXXXXXXXXXXX';
const apikey = 'XXXXXXXXXXXXX';
// set the API parameter
const fieldnumber="1";
const action="new";
// Set API Url
const apiUrl='https://www.api.automaticfarmsolutionwebapp.com/AFS/Asynchronous?';
// Set the API endpoint
=apiUrl.concat("fieldnumber=",fieldnumber,"&action=",action)
ApiEndpoint
// Set path to load the geojson to send as body of POST request to the API
const file_path_to_geojson = './county.geojson';
// Set path to save the geojson prescription map
const outputFilePath = './result.geojson';
async () => {
(try {
const geojsonContent = await fs.promises.readFile(file_path_to_geojson, 'utf8');
const geojsonObject = JSON.parse(geojsonContent);
const authHeader = `Basic ${Buffer.from(`${useremail}:${apikey}`).toString('base64')}`;
const response = await axios.post(ApiEndpoint, geojsonObject, {
headers: {
'Content-Type': 'application/json',
'Authorization': authHeader
};
})
catch (err) {
} console.error('Error:', err.message);
}; })()
Java
Work in progress
Easy - Fast - Customizable