GeoJSON plot template
A valid FeatureCollection with one point plot (with Area) and one polygon plot. Replace the placeholder values and coordinates with the supplier plots.
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"ProducerName": "Supplier or producer legal name",
"ProducerCountry": "BR",
"ProductionPlace": "Plot reference or lot ID",
"Area": 2.5
},
"geometry": {
"type": "Point",
"coordinates": [-47.001000, -15.001000]
}
},
{
"type": "Feature",
"properties": {
"ProducerName": "Supplier or producer legal name",
"ProducerCountry": "BR",
"ProductionPlace": "Plot reference over 4 ha"
},
"geometry": {
"type": "Polygon",
"coordinates": [[
[-47.001000, -15.001000],
[-46.998800, -15.001000],
[-46.998800, -14.998800],
[-47.001000, -14.998800],
[-47.001000, -15.001000]
]]
}
}
]
}