Toolbox

Toolbox

A collection of handy web utilities

KML → DJI Safe
Converts KML, GeoJSON, GML, SHP and CSV polygon files into clean KML ready for DJI RC Pro 2 and other enterprise controllers. Splits multi-polygon files automatically.
Another Tool
A placeholder showing how a coming-soon entry looks. Set status to active and add the file when ready.
Stats
Auto-discovered tool. Add it to tools.json to customise this card.

Adding a tool

Drop a .php file in the root, or a sub-folder containing an index.php. It appears automatically, marked not in registry. To customise the card, add an entry to tools.json:

{
  "id":          "my-tool",
  "title":       "My Tool",
  "description": "What it does, in one or two sentences.",
  "path":        "my-tool.php",     // or "my-tool/" for a sub-folder
  "icon":        "tool",            // map-pin | image | file | code | database | calculator | globe | camera | settings | folder
  "tags":        ["Tag1", "Tag2"],
  "status":      "active"          // active | coming-soon
}

To show the shared nav bar inside a tool, add one line at the very top of the file (before any output):

<?php
include '_nav.php';       // root-level tool  (kml-converter.php etc.)
include '../_nav.php';    // tool in a sub-folder