Flight Plans
The app can import and export multiple data types for a flight plan.
.csv
.json
.kmz
Imported Types
The app can read .csv and .json files to produce a flight plan.
CSV
A CSV file can populate a flight boundary in the app. Flight parameters cannot be included in the CSV file; only boundary coordinates can be imported with this file format.
Requirements
The boundary points should be ordered correctly from a clockwise or counter-clockwise direction.
There must be exactly two fields per row.
lat-lon
If the .csv column labels are lat,lon
or absent, the subsequent rows must contain precisely two fields, ordered latitude and longitude.
There is an example CSV file below.
lon-lat
If the .csv column labels are lon,lat
the subsequent rows must contain precisely two fields ordered longitude and latitude.
JSON
A .json file can provide both flight boundary (geometry) and flight parameters to the app.
Requirements
The file must follow the JSON Schema below.
Below is an example JSON file that conforms to the schema above.
Exported Types
The app can export .kmz files representing flight plans with flight parameters and coordinates.
KMZ
The app can export a flight plan for use in DJI Pilot 2.
Requirements
The format of the KMZ file is documented on DJI's Developer Page.
Last updated