Přeskočit na hlavní obsah

Downloading the Collected Data

After your successful drone detections, you might want to download the data in open formats to either store it for later or to process it in your own systems.

While the data is stored in a PostgreSQL database internally, the database is not designed to be accessed directly. We provide a HTTP REST API to access the data in a more user-friendly way.

Exporting data using the app

The app itself provides the easiest way to download the data. Access the app via the web browser on your computer and follow these steps:

  1. Open the detections list (icon in bottom right corner)
  2. Select a detection you wish to export
  3. Click on the "Export" button in the top right corner

Using the API

The API documentation is available at:

http://dt-onprem-<ID>.local/airspace/docs

OR

http://<YOUR-INSTANCE-IP:PORT>/airspace/docs
Familiarity with Cloud REST API

If you have previously used our cloud instance (https://api-docs.dronetag.com) you may be familiar with the API. The on-premise API provide virtually the same data, just on different URL adresses.

Understanding the DUMP

By exploring the API documentation, you will find that we use several separated data telemetry streams – TELE-UA, TELE-Operator and TELE-System. Learn the difference in the Understanding DUMP section.

Examples

  • Retrieve a list of recent detections in the last 8 hours.
    • GET http://dt-onprem-<ID>.local/airspace/v1/operations?from=-8:00:00
  • Retrieve UA telemetry of a specific place in the last 15 minutes.
    • GET http://dt-onprem-<ID>.local/airspace/v1/telemetry/ua?from=-15:00:00&bbox=14.0,50.0,14.1,50.1
  • Retrieve all UA telemetry of a single detection (operation).
    • GET http://dt-onprem-<ID>.local/airspace/v1/telemetry/ua?operation_id=2db24d2b-e95a-451b-aa1e-5e39017f5eb2