Skip to main content

Ordering Imagery

Request new aerial imagery captures for areas where existing coverage is outdated or unavailable.

Order Process

  1. Define your area — Provide a GeoJSON polygon or bounding box
  2. Select resolution — Choose from 2cm to 25cm per pixel
  3. Choose priority — Standard (48hrs) or express (24hrs)
  4. Submit order — Receive an order ID for tracking
  5. 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

ResolutionStandardExpress
25 cm/pxFrom $2/haFrom $4/ha
10 cm/pxFrom $5/haFrom $10/ha
5 cm/pxFrom $12/haFrom $24/ha
2 cm/pxFrom $30/haFrom $60/ha

Visit geolocarta.com/pricing for full pricing details.

Was this page helpful?