Ordering Imagery
Request new aerial imagery captures for areas where existing coverage is outdated or unavailable.
Order Process
- Define your area — Provide a GeoJSON polygon or bounding box
- Select resolution — Choose from 2cm to 25cm per pixel
- Choose priority — Standard (48hrs) or express (24hrs)
- Submit order — Receive an order ID for tracking
- Get notified — Webhook or email when imagery is ready
Creating an Order
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"area": {
"type": "Polygon",
"coordinates": [[
[153.02, -27.48], [153.04, -27.48],
[153.04, -27.46], [153.02, -27.46],
[153.02, -27.48]
]]
},
"resolution": "5cm",
"priority": "standard",
"webhook_url": "https://yourapp.com/webhooks/imagery"
}' \
https://api.geolocarta.com/v1/imagery/orders
Checking Order Status
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.geolocarta.com/v1/imagery/orders/ord_abc123
Pricing
| Resolution | Standard | Express |
|---|---|---|
| 25 cm/px | From $2/ha | From $4/ha |
| 10 cm/px | From $5/ha | From $10/ha |
| 5 cm/px | From $12/ha | From $24/ha |
| 2 cm/px | From $30/ha | From $60/ha |
Visit geolocarta.com/pricing for full pricing details.
Was this page helpful?