# Load the libraries
import requests
import fiona
import geopandas as gpd
from requests.auth import HTTPBasicAuth
# Define the url of the API
= "https://www.api.automaticfarmsolutionwebapp.com/AFS/AutoPrescriptionMapGEOjsonNew?fieldnumber=1&action=none&AutoPrescription=True&NumberZone=3&userfertilizer=200&Strategy=highwherehigh&ProductType=Solid&ProductName=Urea&GeographicReference=WGS84&basemap=one&DoseDifference=0"
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(url,
response =geojson_data,
data=headers,
headers=HTTPBasicAuth(USEREMAIL, APIKEY))
auth
= bytes(response.content)
b
with fiona.BytesCollection(b) as f:
= f.crs
crs = gpd.GeoDataFrame.from_features(f, crs=crs)
gdf
# Visualize the data
"Zone") gdf.explore(
Test the API
Start trying the API
After you have set the api key you are ready to go to use our service. In the next part of the documentation you will find two different block:
- Python
- R
- Node.js
- Java
Please try out the follow examples in order to see if the connection is working.
Python
In this example we will test the AutoPrescriptionMapGEOjson endpoint which allow the user to get an automatic prescription map.
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
Here to test the API connection 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 account information.
# Load the libraries
library(tictoc)
library(httr)
library(geojsonio)
library(mapview)
# Define the url of the API
<- "https://www.api.automaticfarmsolutionwebapp.com/AFS/AutoPrescriptionMapGEOjsonNew?fieldnumber=1&action=none&AutoPrescription=True&NumberZone=3&userfertilizer=200&Strategy=highwherehigh&ProductType=Solid&ProductName=Urea&GeographicReference=WGS84&basemap=one&DoseDifference=0"
url
# 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,::authenticate(
httruser = Sys.getenv(USEREMAIL),
password = Sys.getenv(APIKEY)
),body=httr::upload_file(file_path_to_geojson)
)
# Print out the seconds needed to create the prescription map
print("The API needed:")
[1] "The API needed:"
toc()
4.75 sec elapsed
# Visualize the prescription map
<- content(api_call, as = "text", type = "application/geo+json")
prscription_map <-geojson_sp(prscription_map)
prscription_mapmapview(prscription_map, zcol="Zone", layer.name="Prescription Map")
And here we go in just around 11.25 seconds you have created a prescription map that you can directly insert or send to the tractor display.
Node.js
Here to test the API connection 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 account information.
// Load Libraries
const fs = require('fs');
const axios = require('axios');
// Set the useremail & passowrd
const useremail = 'XXXXXXXXXXXXX';
const apikey = 'XXXXXXXXXXXXX';
// Set API Endpoint
const apiEndpoint = 'https://www.api.automaticfarmsolutionwebapp.com/AFS/AutoPrescriptionMapGEOjsonNew?fieldnumber=1&action=none&AutoPrescription=True&NumberZone=3&userfertilizer=200&Strategy=highwherehigh&ProductType=Solid&ProductName=Urea&GeographicReference=WGS84&basemap=one&DoseDifference=0';
// 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
};
})
const resultGeoJSON = response.data;
console.log('Answear of the API:', resultGeoJSON);
await fs.promises.writeFile(outputFilePath, JSON.stringify(resultGeoJSON, null, 2), 'utf8');
catch (err) {
} console.error('Error:', err.message);
}; })()
Java
Here to test the API connection 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 account information.
WORK IN PROGRESS
Easy - Fast - Customizable