Formatting GeoJSON for TradeAware Application Uploads
What kind of geometries are accepted?
What properties are required?
Example 1: Uploading Points
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [30.713200, 2.194000]
},
"properties": {
"name": "Plot A",
"commodities": ["cocoa"]
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [30.760500, 2.163800]
},
"properties": {
"name": "Plot B",
"commodities": ["rubber"]
}
}
]
}Example 2: Uploading Polygons
Example 3: Uploading MultiPolygons
Example 4: Uploading both Points and Polygons (Mixed)
Important Notes
Last updated