ZYRNTOPO Documentation
Complete reference for every feature in ZYRNTOPO — an offline-capable topographic mapping application for Android and Web. The core app is free with no account; ZYRNTOPO Pro is an optional unlock for the power features — permanent for a one-time price, or monthly. Your data stays on your device.
Getting Started
Install, permissions, and your first map.
Map Interface
Layers, 3D terrain, controls, and compass.
Team Sync
P2P, LAN, drone, ATAK.
Offline Maps
PMTiles archives, Area Saver, storage.
Search & Rescue
Periods, resources, clues, and gear.
Bridge Tools
LAN relay, ATAK/SoRD bridges.
Installation
ZYRNTOPO runs on Android, Windows, Linux and the web. Choose the one that fits your device.
Android
- Install from Google Play. Updates arrive automatically, like any other app.
- On a Fire tablet, or any device without Google Play, install from the Amazon Appstore instead. It handles installation and updates for you.
- Or install the APK directly — zyrntopo-1.15.26-beta.apk. It is the same signed build the stores get, universal across all four ABIs, for devices with no store access or when you want a specific version on hand. Android will ask you to allow installs from your browser or file manager the first time. A sideloaded copy does not update itself — come back here for a new one, or switch to a store build.
- On first launch, the app shows a prominent disclosure and requests Location (for GPS position and track recording). The Microphone is requested only when you record a voice note. You can update these any time in Android Settings.
- The app works immediately — no sign-in, no setup wizard.
curl -fLO https://pois.zyrntopo.com/downloads/zyrntopo-1.15.26-beta.apk
adb install zyrntopo-1.15.26-beta.apkThe APK is around 9 MB because the points-of-interest dataset is not bundled on Android — at roughly 340 MB it is far past Google Play's base-download limit. The app range-reads it from pois.zyrntopo.com on first run and streams a copy into device storage in the background, so every launch after the first is fully offline. The desktop builds bundle it outright, which is why those installers are ~400 MB.
Linux (desktop)
The desktop build is the same application in an Electron shell, serving the web build from a loopback port — service worker, offline tile caches and the POI store all behave exactly as they do in the browser. One command installs it on any distribution:
curl -fsSL https://zyrntopo.com/install.sh | shThe script resolves the current release, detects your distribution and your CPU architecture, verifies the package's SHA-256 against the published checksum file, and installs it. Re-running it upgrades in place. It never installs unverified bytes: a checksum mismatch aborts before anything is written.
- Debian, Ubuntu, Mint, Pop!_OS —
.debviaapt - Fedora, RHEL, CentOS, openSUSE —
.rpmviadnf,yum,zypperorrpm - Arch, Manjaro, CachyOS, EndeavourOS —
.pacmanviapacman -U - Anything else — a self-contained
.AppImageinstalled under~/.local, needing no root
Architectures
Every format ships for both x86_64 (also called amd64 — any normal PC or laptop) and ARM64 (aarch64 — ARM laptops, a Raspberry Pi 4 or 5 running a 64-bit OS, ARM servers and VMs). The installer reads uname -m and fetches the matching package; there is nothing to choose. If you are downloading by hand and are not sure, run uname -m: x86_64 means the x86_64 files, aarch64 means the ARM64 ones.
There is no 32-bit build, and there will not be one. The desktop app is built on Electron, which dropped 32-bit Linux support in 2019 — it is not a gap waiting to be filled. If that is the hardware you have, the web app runs in any modern browser and works offline once loaded: app.zyrntopo.com.
Updating, checking and removing
Installing also puts a zyrntopo command on your PATH, so you manage it like any other program — no need to keep the install URL to hand. Note that native packages are installed directly rather than from a repository, so apt upgrade and friends will not pick up new ZYRNTOPO releases; use zyrntopo update.
zyrntopo # launch the app
zyrntopo update # upgrade to the current release
zyrntopo version # installed vs current
zyrntopo remove # uninstall (keeps your saved maps)
zyrntopo helpUninstalling removes the application but keeps your saved maps and downloaded tiles, which live in ~/.config/ZYRNTOPO. Delete that directory too if you want a clean slate. If you prefer your package manager, the package is named zyrntopo-desktop: apt remove zyrntopo-desktop, dnf remove zyrntopo-desktop or pacman -R zyrntopo-desktop.
Useful overrides:
# pin a specific version instead of the current release
ZYRN_VERSION=1.15.15 sh -c "$(curl -fsSL https://zyrntopo.com/install.sh)"
# force the no-root AppImage even on a deb/rpm/Arch system
ZYRN_METHOD=appimage sh -c "$(curl -fsSL https://zyrntopo.com/install.sh)"
# install the AppImage somewhere other than ~/.local
ZYRN_PREFIX=/opt/zyrntopo ZYRN_METHOD=appimage sh -c "$(curl -fsSL https://zyrntopo.com/install.sh)"Prefer to read the script before running it? Fetch it first — it is plain POSIX sh: zyrntopo.com/install.sh. Direct package downloads and checksums are listed on the Downloads page.
AppImage and FUSE. AppImages normally mount themselves with FUSE 2, which Arch, Fedora 38+ and Ubuntu 22.04+ no longer ship. The installer works around this: it puts a small launcher on your PATH that uses FUSE when present and falls back to --appimage-extract-and-run when it is not, so you never see "AppImages require FUSE to run". If you downloaded the .AppImage manually instead, run it as ./zyrntopo-1.15.15-linux-x86_64.AppImage --appimage-extract-and-run (or ./zyrntopo-1.15.15-linux-arm64.AppImage on ARM64).
Windows (desktop)
The same Electron shell as the Linux build, on Windows 10 or 11. Every installer carries the whole application — there is nothing to download on first launch. Pick the architecture first, then the format:
- 64-bit (x64) — the normal choice for any PC bought in the last decade: zyrntopo-1.15.26-win-x64-setup.exe or zyrntopo-1.15.26-win-x64.msi.
- ARM64 — for Windows on ARM machines (Snapdragon X, Surface Pro 9 5G / 11, Copilot+ PCs). Runs natively instead of under x64 emulation, which is noticeably easier on the battery during a long day of navigation: zyrntopo-1.15.26-win-arm64-setup.exe or zyrntopo-1.15.26-win-arm64.msi.
- 32-bit (x86) — for older x86 hardware. It also runs on 64-bit Windows, so it is the safe fallback if you are not sure what a machine is: zyrntopo-1.15.26-win-ia32-setup.exe or zyrntopo-1.15.26-win-ia32.msi.
The -setup.exe is the normal choice: it installs for the current user only, so it needs no administrator, lets you pick the install directory, and creates Start menu and desktop shortcuts. The .msi is for managed fleets — it installs per-machine into C:\Program Files\ZYRNTOPO for every user and deploys unattended through Group Policy or Intune, e.g. msiexec /i zyrntopo-1.15.26-win-x64.msi /qn.
-setup.exe instead.Upgrading is the same step as installing: run the new installer over the old version. Uninstall from Settings ▸ Apps (or msiexec /x for the MSI); either way your saved maps and downloaded tiles are kept, in %APPDATA%\ZYRNTOPO. Delete that folder too for a clean slate.
Get-FileHash zyrntopo-1.15.26-win-x64-setup.exe against the published SHA-256 below, then choose More info ▸ Run anyway.Web / PWA
Open app.zyrntopo.com in any modern browser. For offline use, install it as a PWA: in Chrome/Edge click Install app in the address bar; in Firefox/Safari use Add to home screen.
Verifying a download
Every release publishes a checksum manifest. To check a file by hand:
curl -fLO https://pois.zyrntopo.com/downloads/SHA256SUMS-1.15.15.txt
sha256sum -c SHA256SUMS-1.15.15.txt --ignore-missingOn Windows, in PowerShell:
Get-FileHash zyrntopo-1.15.26-win-x64-setup.exe
# compare the hash with the line for that file in
# https://pois.zyrntopo.com/downloads/SHA256SUMS-1.15.26.txtEvery published build is listed in the download archive — each version with its files, sizes and SHA-256s. Scripts can read the same data from releases.json. Leave ZYRN_VERSION unset to take the latest; set it to pin an older release, which the archive keeps downloadable — releases.json lists every version still held, and current names the newest.
First Launch
On first launch ZYRNTOPO shows a prominent disclosure, then requests Location using the native OS dialog. Location is used for map position, tracks, route following, and nearby field context; for everything except track recording it is foreground-only. Background location is optional and asked separately the first time you Record Track, so a recording can continue with the screen off. Online weather, elevation, routing, or search features may send the needed coordinates or query to their provider. The Microphone permission is requested in-context the first time you record a voice note. On Web, the browser asks for Location when you first use GPS.
The default base layer on first launch is VersaTiles Eclipse — a full-detail dark vector street map rendered via MapLibre GL. Your map starts centered at the contiguous US (z4) or at your last-saved position if you've used the app before.
After your first session, all key UI state is automatically persisted — base layer selection, map position and zoom, and hillshade opacity are restored exactly as you left them on every subsequent launch.
Base Layers
Tap the layer icon (stack icon in top bar) to open the layer panel. The current basemap shows as a single compact row — tap it to open the base-layer picker, grouped by category with a thumbnail preview per layer. Sixteen base layers are included — 15 raster layers organized into groups, plus the no-key VersaTiles Eclipse vector basemap — plus a built-in browser for 1,345 additional worldwide imagery sources (OSM Editor Layer Index).
The Offline column reflects each provider's terms — ✓ = saveable with the Area Saver; Online only = view-only (terms forbid bulk/offline download, import a .pmtiles instead).
Topo & Terrain
| Layer | Best for | Max zoom | Offline |
|---|---|---|---|
| USGS Topo | USGS composite topo, US-focused | 16 | ✓ |
| USGS Imagery + Topo | Aerial imagery overlaid with topo labels | 16 | ✓ |
| OpenTopoMap | Worldwide topographic contours, elevation, terrain | 17 | Online only |
| NatGeo World | National Geographic styled topographic map | 16 | Online only |
| Esri World Topo | Esri's worldwide topographic basemap | 19 | Online only |
| USA Topo (Historical) | Historical USGS quadrangle scans (via Esri) | 15 | Online only |
| Esri World Physical | Physical terrain without labels — clean reference | 8 | Online only |
Imagery
| Layer | Best for | Max zoom | Offline |
|---|---|---|---|
| Esri Satellite | High-resolution aerial imagery worldwide | 19 | Online only |
| USGS Imagery | USGS-sourced US aerial imagery | 16 | ✓ |
Water / Bathymetric
| Layer | Best for | Max zoom | Offline |
|---|---|---|---|
| Esri Ocean Basemap | Bathymetry, depth contours, GEBCO / NOAA marine data — strong for water-SAR | 13 | Online only |
Street & General
| Layer | Best for | Max zoom | Offline |
|---|---|---|---|
| OpenStreetMap | Standard OSM street map (also the never-blank fallback) | 19 | Online only |
| OSM Humanitarian | Humanitarian OSM Team styled map | 19 | Online only |
| CyclOSM | Roads + cycle infrastructure detail | 18 | Online only |
Vector Basemaps
VersaTiles Eclipse is the built-in no-key vector basemap and the app default — no PMTiles import required — rendered by MapLibre GL JS. It is free, needs no API key, and overzooms cleanly (it stays sharp at any zoom). Its style, glyphs, and sprites are bundled in the app, so the vector map renders even from a cold offline start (only the tiles need a connection until you download an area).
| Layer | Style | Best for |
|---|---|---|
| VersaTiles Eclipse (default) | Dark / night, detailed street + terrain labels | General navigation, hiking, field ops, low-light and night use |
.pmtiles vector archive). The app ships a single vector basemap, Eclipse. Topo, satellite, and bathymetric layers stay raster (no no-key vector equivalent exists).Imagery Catalog
Beyond the 16 built-in layers, ZYRNTOPO ships with a filtered copy of the OSM Editor Layer Index — 1,345 worldwide imagery sources curated for OSM editing (regional aerials, government topo maps, historical photos, etc.). Tap Layers → Custom WMS / WMTS → Browse Imagery Catalog and filter by:
- Search — name, country code, description
- Type — XYZ (TMS) or WMS
- Category — aerial photo, map, historic photo, historic map, elevation, OSM-based, QA
- Country — ISO country code dropdown
One-tap Add converts the entry into a custom source (TMS templates have {zoom} rewritten to {z}; WMS endpoints have LAYERS and FORMAT auto-extracted) and persists it across sessions. Added sources appear in the dropdown alongside the built-in 16 base layers.
The Offline column shows which bases ZYRNTOPO will pre-download into a local .pmtiles archive. This is gated by each provider's terms: USGS The National Map (US-government public domain, attribution requested) and the VersaTiles vector basemap is downloadable; Esri, OpenStreetMap, OpenTopoMap, and NatGeo stay online-only because their terms prohibit bulk/offline tile download. For those, import a provider-approved .pmtiles instead — see Offline Maps (PMTiles).
You can also add custom tile sources manually: tap Add WMS/WMTS Source at the bottom of the layer panel, enter a tile URL template (https://example.com/{z}/{x}/{y}.png), a name, and tap Add.
Overlays
Overlays layer on top of any base map. Multiple overlays can be active simultaneously, each with an adjustable opacity slider.
Terrain & Topography
- Slope Angle Shading — terrain coloured by steepness, computed on-device from the elevation (DEM) data — no external service. The avalanche-oriented ramp keeps gentle terrain clear and heats up through the critical band: 27–29° yellow, 30–34° orange, 35–45° red (where most slab avalanches release), 46–50° purple, 51–59° blue, 60°+ grey (cliffs). Toggle it under Layers → Conditions → Slope Angle with an opacity slider. Works online (Mapterhorn DEM) and offline once DEM tiles are cached or a terrain archive is imported. Renders from zoom 8 in.
- Slope Aspect — terrain coloured by the compass direction each slope faces, computed on-device from the same DEM as slope angle. An 8-sector colour rose (N, NE, E … NW) for planning sun exposure, snow loading, and avalanche aspect. Toggle it from the overlay picker with its own opacity slider; an on-map legend appears while it's active. Works online and offline (cached DEM / terrain archive).
- Hillshade — shaded relief from Esri's
World_Hillshadeservice (DEM-derived). Pairs well with imagery and any topo layer. - USGS Topo Overlay — overlays USGS Topo at adjustable opacity for blending with satellite imagery.
- USGS Hydrography — streams, rivers, water bodies from USGS National Map.
Reference
- Country & state borders — always on, and drawn from the offline vector tiles rather than fetched, so they are there with no signal. Country and state/province lines are both solid purple, with countries drawn heavier so the two stay distinguishable; region names are set in caps. State and province lines appear from zoom 7 in — the offline tiles carry no state-level boundary data below that zoom. County lines are not available offline — the offline tile schema carries national and state/province levels only, so there is nothing to draw below that.
- Boundaries & Places — Esri labels overlay (great companion for satellite imagery).
- Transportation — Esri's roads/highways reference layer.
Route Discovery
- Hiking Trails — Waymarked Trails hiking-route overlay (display only — see CORS note).
- Cycling Routes — Waymarked Trails cycling network (display only).
- MTB Trails — Waymarked Trails mountain-bike network (display only).
- Public Lands (BLM) — US Bureau of Land Management ownership and surface management. Available at zoom 9+ (display only).
- OpenSeaMap — nautical seamarks for coastal/marine ops.
- OpenSnowMap pistes (NEW) — worldwide ski/snowboard pistes and lifts — great for winter SAR and backcountry skiing.
- OpenRailwayMap (NEW) — global rail infrastructure: tracks, stations, signals.
- OpenInfraMap power (NEW) — high-voltage transmission lines and substations from OSM data.
- Esri Reference Labels (NEW) — transparent label-only overlay; pairs with satellite/physical bases.
Weather & Hazards
- Wind Plot (NEW) — standard meteorological wind barbs on a grid across the current view, sourced from Open-Meteo. A half barb is 5 kt, a full barb 10, a pennant 50, and speed is rounded to the nearest 5 before it is drawn; below 3 kt the station shows as an open circle for calm. Each barb points along the true wind direction and deliberately does not rotate with the map, so a northerly still reads as a northerly however the map is spun. The grid re-samples when you stop panning and refreshes on a 15-minute cycle, matching how often the data updates. Online-only, with its own opacity slider in Layers → Weather & hazards. Like every source in the app it needs no API key and no account.
- Weather Radar (NEXRAD) — near-real-time NEXRAD base-reflectivity mosaic (Iowa Environmental Mesonet), refreshed about every 5 minutes. Online-only — radar is time-sensitive and isn't cached for offline use.
- Active Wildfires (NIFC) — current US wildland-fire perimeters (over 100 acres) from the National Interagency Fire Center, drawn as vector polygons; tap a perimeter for the incident name, acreage, and discovery date. Loaded on demand and refreshed every few minutes.
- Avalanche Danger — US avalanche-forecast zones from avalanche.org, colour-coded by the current North American danger scale (1 Low → 5 Extreme). Tap a zone for its rating; an on-map legend appears while it's active. Online-only and refreshed periodically (off-season zones show with no active rating).
Field Data — US
- PLSS Survey Grid (BLM) — the Public Land Survey System township / section / intersected grid, shown as a reference overlay.
- USFS Motor Vehicle Use Map — legal motorized roads & trails on national-forest land (the authority for vehicle access while hunting and scouting).
- USFS Ownership — US Forest Service surface-ownership / administrative boundaries, for confirming you're on national-forest land vs. adjacent private or other-agency parcels.
- Wetlands (NWI) — USFWS National Wetlands Inventory polygons (waterfowl habitat and fishing / launch context).
- Tribal Lands / Reservations (NEW) — American Indian, Alaska Native, and Native Hawaiian areas from the US Census Bureau: Federal & State reservations, off-reservation trust lands, and Hawaiian home lands. Jurisdiction and access context in the backcountry. Toggle it from the overlay picker with its own opacity slider (display only, like the other field-data layers).
- USGS Contours — transparent topographic contour lines to drape over satellite imagery.
- Watersheds (USGS WBD) — HUC drainage-basin boundaries for hydrology and fishing.
These US field-data layers come from free, no-API-key ArcGIS map services via a generic dynamic-MapServer overlay type, so any number of them can be stacked at adjustable opacity.
<img> loader doesn't need CORS), but their servers don't send Access-Control-Allow-Origin, so the Area Saver can't read tile bytes for offline pre-download. To take those overlays offline, you'd need a third-party PMTiles export of the same data and import it via Settings → Offline Maps → Import .pmtiles.3D Terrain View
Tap the 3D badge in the layer panel or the top bar to switch to 3D terrain mode, powered by MapLibre GL with WebGL rendering.
- Real DEM elevation data from Mapterhorn (Terrarium-encoded WebP)
- Drapes any base layer over the 3D terrain mesh
- Hillshade and sky atmosphere included
- Two-finger drag to pitch the view; two-finger rotate to spin
- Use the pitch slider to adjust terrain tilt
- Terrain exaggeration can be increased in Settings
Offline 3D Terrain
Save terrain data offline so 3D mode works without a connection:
- Pan/zoom to your AOI
- Open Layers → Save Terrain
- Confirm the tile count + size estimate; ZYRNTOPO downloads the Mapterhorn DEM tiles (z0–10 by default) and packs them into a
.pmtilesarchive tagged withkind: 'dem' - From then on, any 3D activation prefers the local DEM archive over the network — fully air-gapped 3D terrain
The DEM archive is independent from base-tile archives. Both can coexist; the 3D engine combines them via MapLibre's raster-dem source pointed at a pmtiles:// URL.
You can also bundle a starter DEM archive with the app by adding an entry to public/maps/manifest.json with "kind": "dem" — see Offline Maps.
Vector PMTiles
ZYRNTOPO can display vector PMTiles archives (OpenFreeMap exports, Protomaps Basemaps, tippecanoe output, etc.) — not just raster ones. The app uses MapLibre GL's addProtocol('pmtiles') to read tiles directly from the in-OPFS archive without any network round-trip.
.pmtiles) to take the vector tiles offline.- Import any
.pmtilesfile (raster or vector) via Layers → Offline Maps → Import .pmtiles. - Activate a vector archive: tap Use (3D) in the offline maps list. The app enters 3D mode and switches to a MapLibre style.
- A default style is auto-generated from the archive's
vector_layersmetadata: every layer gets a fill, line, and circle entry filtered by geometry type, plus label symbols where the layer has anamefield. - Vector tiles drape over the DEM just like raster bases — so vector maps get real 3D terrain too.
- Raster + vector PMTiles can coexist; switch between them from the base-layer dropdown.
pmtiles://<fileName>. A "load custom style" picker is planned for a future version.Controls & Compass
All map controls are accessible from the map canvas:
- Zoom buttons (+/−) — bottom-right corner
- Download map area — the offline-area button lives in the top bar, to the right of Point Info. Tap it to draw/drag a box and download that region. See Area Saver.
- Compass rose — tap to reset rotation to North-up; long-press to enable heading-up mode (map rotates with your bearing)
- Center crosshair — a fixed crosshair at the map center for precise location reading
- Context menu — long-press the map anywhere for: drop marker here, start line from here, view point info, navigate here
Night Mode
Tap the moon icon to cycle through three states: Off → Dim → Dark. Night mode applies a CSS filter to the map canvas to reduce brightness and blue light without affecting the UI. It works on all base layers and overlays and is preserved across sessions.
Coordinate Display
Your current GPS position is always shown in the bottom status bar. Choose your preferred format in Settings → Coordinate Format:
| Format | Example |
|---|---|
| Decimal Degrees (DD) | 39.0835° N, 108.5601° W |
| Degrees Minutes Seconds (DMS) | 39°05'00" N, 108°33'36" W |
| Degrees Decimal Minutes (DDM) | 39° 05.010' N, 108° 33.606' W |
| UTM | 12S 741234 4328765 |
| MGRS | 12SVJ4123428765 |
Tap any displayed coordinate to copy it to the clipboard.
UTM / MGRS grid overlay
Add the UTM / MGRS grid from the overlay picker (Layers → Add an overlay → Topographic / Reference) to draw a labelled military-style reference grid over any base map. The grid is computed in the view-centre UTM zone, redraws as you pan and zoom, and has its own opacity slider in the layer stack. Spacing scales with zoom (100 km → 10 km → 1 km) — the same grid lines underlie MGRS.
Markers & Waypoints
Drop a marker by long-pressing the map and selecting Drop Marker Here, or tap GPS marker to drop one at your current location. A details panel opens immediately.
Marker properties
- Name — any text label
- Notes — multi-line description or clue notes
- Icon — choose from 50+ typed icons: trailhead, summit, camp, water, warning, medical, wildlife, and more
- Color — full color picker with preset swatches
- Folder — assign to any existing folder
- SAR attributes — mark as clue, assign to operational period, set find status
Tap an existing marker to open its info card. From there: edit, delete, navigate to, copy coordinates, or zoom-in.
Averaged waypoint
For higher-accuracy waypoints, use Add → Average WP. Hold the device still over the point while it collects continuous GPS fixes; the dialog shows a live sample count, the running average position, and an estimated ± accuracy that tightens as samples accumulate (random error falls off as roughly √N). Tap Save waypoint to drop a marker at the averaged position, tagged with the sample count and accuracy.
Lines & Routes
Tap Draw in the top bar then select Line. Tap the map to place vertices. A live distance display shows the running total. When done, tap Finish.
- Each line segment shows distance in your preferred units
- Edit mode: drag existing vertices, insert new ones, or delete
- Assign name, color, and folder
- Free Draw — open Tools → Free Draw and drag on the map to sketch. Each stroke saves immediately as a line you can rename, recolour, or move later. Works with touch or mouse; pinch-zoom still works mid-sketch. Press Escape to exit the tool.
Elevation profile
Open any line, track, or route and tap Elevation in its editor to see a CalTopo/Gaia-style elevation profile: the path is resampled evenly by distance, elevations are fetched, and a profile chart is drawn with total distance and gain / loss / min / max in your preferred units. Needs a connection to fetch elevation data.
Polygons & Areas
Select Polygon in the Draw menu. Tap to place polygon vertices; the shape closes automatically when you tap Finish. Area is calculated and shown in the info panel (acres, sq km, sq mi).
Buffer zones — tap an existing object and choose Buffer Zone to create a polygon offset by a specified distance.
Sectors / wedges — from the context menu choose Draw Sector to create a pie-wedge search area with configurable bearing and radius.
Highlight — select Highlight in the Draw menu to shade an area with a translucent fill (preset colours or a custom colour). Use it to mark a search segment, a hazard zone, a planned burn, or an area of interest without hiding the map underneath.
Circle — open Tools → Circle, press at the centre point and drag outward. A live radius readout appears while you size it; release to name and save. Saved as a buffer-style polygon you can edit like any other shape.
Range Rings
Long-press a marker or tap More → Range Rings to draw concentric search rings around a point. Configure:
- Number of rings — 1 to 10
- Spacing — distance between each ring (meters or feet)
- Custom radii — override with specific values per ring
- Bearing offset — rotate the ring set for directional probability
Range rings are stored as a single object and can be edited or deleted from the Objects panel.
Folders & Organization
Open More → Folders to manage folders. Folders help group objects by purpose — e.g., "Day 1 Search", "Water Sources", "Hazards".
- Create folder with name and color
- Assign any marker, line, or polygon to a folder
- Toggle folder visibility — hides/shows all objects inside on the map
- Export a single folder as GeoJSON
Operational Periods
Open More → Operational Periods. Operational periods (OPs) are standard SAR planning containers — typically one per 12 or 24 hour shift.
- Create an OP with a name, start time, and active status
- Assign any map object to an OP
- Objects belonging to an inactive OP can be filtered out of view
- Export a single OP as GeoJSON
GPS Modes
The GPS button (bottom-right of map) cycles through three states:
- Off — no GPS. Button is gray.
- Follow — map re-centers on your position every few seconds. Button is blue.
- Heading-up — map rotates to match your bearing AND follows your position. Button is blue with rotation indicator.
An accuracy circle is displayed around your position marker. In poor GPS conditions (dense canopy, canyon) the circle will be large — always verify position against known landmarks.
External GNSS receivers New in 1.15.3
A separate receiver — USB or Bluetooth — can be used instead of the phone's own GPS. Once connected it becomes the position source for everything: the live dot, track recording and anything shared with your team. Disconnect it and the device GPS takes over again.
Receivers are read over NMEA 0183, which is what essentially every GNSS unit speaks. Sentences are checksum-verified, and anything that fails is discarded rather than guessed at.
| Connection | Where it works |
|---|---|
| USB serial | Android |
| USB serial (Web Serial) | Windows, Linux, Chrome/Edge |
| Bluetooth LE | Android app, Chrome/Edge on desktop |
On Android, a USB receiver and a MAVLink drone link cannot both be connected at once: there is one USB port and connecting a receiver disconnects the drone.
Track Recording
Tap the track icon (footprints, top bar) to start recording. A live track is drawn on the map in real time. The track bar shows live stats:
- Distance traveled
- Elevation gain (from GPS altitude)
- Elapsed time
- Average speed (mph or km/h)
Tap Stop to end the recording. A trip summary (distance, elevation gain, duration, and max speed) is shown, and the track is saved as a line object in your map objects list — exportable as GPX or GeoJSON, and you can open its elevation profile from the editor.
Measurement Tools
Tap More → Measure to open the measure tool. Tap points on the map to build a measurement path:
- Point-to-point distance with running total
- Bearing between last two points
- Area measurement — close the shape to get area in acres or sq km
- Elevation profile — tap two points to see the elevation chart along the path
- Viewshed / line-of-sight — tap an observer point and the tool shades the terrain that's visible from it in green, computed on-device from the DEM. Set observer and target height, a maximum radius, and an optional radio (4/3-earth) mode that models radio-horizon bending for comms planning. Distances and areas report in your chosen units. Great for siting repeaters, lookouts, or signal mirrors.
Measurement results appear in a card directly on the map and stay visible while you keep working, so you can read them without reopening the Measure panel. Tap the card's × to dismiss the result and clear the drawing.
Tap Clear to reset without saving the measurement.
Field Navigation Shortcuts
ZYRNTOPO includes a few quick actions for search and field coordination without adding military-specific marker sets or fire-planning workflows.
- Heading Line: open Tools → Heading Line while GPS/compass is active to create a bearing line from your current position and current heading. Choose a length such as
500 m,1 km,0.5 mi, or1000 ft, then save or edit the line. - Bearing Sight: open Tools → Sight for a fullscreen compass HUD. It shows the live azimuth your device is pointing — toggle between magnetic and true (local declination is applied), with mils, a rotating compass card, and a vertical inclination angle. Tap Shoot azimuth → map to drop a bearing line from your GPS fix (or the map centre). It runs entirely from the device's compass and accelerometer, so it works fully offline and needs no camera.
- Share Loc: open Tools → Share Loc to share your current GPS position, or the map center if GPS is off. The share card includes DD, DMS, UTM, MGRS coordinates, and a map link.
- Share point: long-press any location and choose Share point to send a clean coordinate card for that exact point.
Search & Point Info
Place Name Search
Tap the search icon in the top bar. Type a place name, address, or coordinates. Results come from Nominatim (OpenStreetMap geocoding). Tap a result to jump to it on the map and optionally drop a marker.
You can also paste raw coordinates directly into the search bar in any supported format (DD, DMS, DDM, UTM, MGRS).
Point Info Panel
Long-press any map location and tap Point Info. The panel shows:
- Coordinates in your selected format
- Elevation from a point-elevation query (requires network)
- Weather — a live conditions widget for the exact point you tapped: weather icon, temperature, condition, and wind, from the free Open-Meteo API (no key)
- Sun & daylight — sunrise / sunset, civil twilight, and daylight-remaining for that point, computed on-device so it works offline
Offline Maps (PMTiles)
The primary offline mechanism is a real .pmtiles archive stored as a single file in the device's Origin Private File System (OPFS). This replaces fragile per-tile browser caching with something that survives storage pressure, works across reloads, and can be transferred to teammates as a single file.
What you can save offline
ZYRNTOPO only pre-downloads tiles from sources whose terms permit offline storage. That's a deliberate choice — it keeps you compliant and avoids provider rate-limit / IP blocks. Here's exactly what the Area Saver (and Save Terrain) can save:
- USGS The National Map (US-government public domain, attribution requested) — USGS Topo, USGS Imagery, USGS Imagery + Topo, and the USGS Topo & Hydrography overlays.
- Vector basemap — VersaTiles Eclipse (the app default).
- 3D terrain elevation — Mapterhorn DEM, via Save Terrain in the same view.
- Computed layers — slope angle, slope aspect, and the UTM/MGRS grid render on-device from the saved DEM, so they work offline automatically (nothing extra to download).
- Any imported
.pmtiles— raster or vector archives you bring yourself (Protomaps, OpenFreeMap exports, your own builds).
- OpenStreetMap, OSM Humanitarian, CyclOSM, OpenTopoMap — their tile policies explicitly prohibit "save area for offline."
- Esri ArcGIS — Esri Satellite, World Topo, World Physical, Ocean, USA Topo (Historical), NatGeo World, hillshade, reference labels, boundaries, transportation (Esri requires its own export service + subscription).
- Community overlays — Waymarked hiking / cycling / MTB, OpenSeaMap, OpenSnowMap pistes, OpenRailwayMap, OpenInfraMap power.
- Government services — BLM Public Lands & PLSS, USFS Motor Vehicle Use & ownership, NWI wetlands, US Census tribal lands / reservations, and USGS contours & watersheds (render-on-demand dynamic services).
- Live / time-sensitive — NEXRAD weather radar, NIFC active wildfires, avalanche forecast.
.pmtiles of the same data via Settings → Offline Maps → Import.Why PMTiles instead of a tile cache?
- Single file — random-access via byte ranges. No millions of Cache API entries.
- Eviction-resistant — when the browser grants persistent storage, the saved file isn't dropped under storage pressure.
- Sneakernet-friendly — copy a 500 MB regional archive over USB, share it over LAN.
- Same format used by Protomaps, OpenFreeMap, BBBike — bring your own archive from any of these sources.
What ships with the app
The POI dataset is a PMTiles archive of its own, and the two app families get it differently:
- Desktop (Windows, Linux) — the archive is inside the installer. Points of interest are searchable offline from the moment the app is installed, with nothing to fetch. It is also why those installers are ~400 MB.
- Android — the archive is not bundled. At roughly 340 MB it is well past Google Play's base-download limit, so the APK stays around 9 MB and the app range-reads the archive from
pois.zyrntopo.comon first run, streaming a copy into device storage in the background. The first launch therefore needs a connection for POI search; every launch after it does not.
No bundled basemap archive is included on any platform — on first launch the default basemap is VersaTiles Eclipse (hosted vector, requires network until cached). To take the map offline, either use the Area Saver to build your own archive, or import any .pmtiles file you have.
Importing a PMTiles file
- Open Settings → OFFLINE MAPS (.PMTILES).
- Tap Import .pmtiles and pick a file from your device.
- The bytes stream-copy into OPFS (multi-GB safe), the header is parsed, and the archive appears in your list with bounds, zoom range, and tile format.
- Switch to it in the base-layer dropdown under My Maps (offline). Disable Wi-Fi to confirm — tiles render straight from the file.
Recommended sources: Protomaps, OpenFreeMap, BBBike Extract, or any tippecanoe / pmtiles convert output.
Area Saver — Build Your Own Archive
The Area Saver downloads tiles for the current viewport at any zoom range and packs them into a brand-new .pmtiles archive on your device. This is the answer to "all zoom levels for my area" — without trying to bundle the whole world.
How it works
- Pan the map to your area of interest (a county, a search grid, a trail system).
- Open Settings → OFFLINE MAPS → Select Area, or tap the offline-tiles button on the map toolbar. A green selection box appears on the map.
- Drag the box to reposition and pull any corner to resize, then set the min and max zoom. A live estimate shows tile count + size.
- Tap Download Area → confirm the download size → progress bar shows tiles downloaded and bytes written.
- The archive lands in your My Maps list automatically, ready to use.
Select Area on Map
For a precise, Google-Maps-style selection, open Settings → OFFLINE MAPS → Select Area. A green box appears on the map — drag it to reposition and pull any corner to resize until it frames exactly the area you want. Pick the min/max zoom (the panel shows a live tile-count and size estimate), then tap Download Area. It downloads that exact rectangle of the current base map — raster or vector — into a .pmtiles archive via the same background, resumable engine.
Download by Region
Don't want to frame the viewport by hand? Open Settings → OFFLINE MAPS → Download Offline Map → Browse and tap Pick a region to download. Choose a preset continent, country, or mountain range, pick the zoom range with a live size estimate, and the current base map is saved for that whole area — no panning required. The same sheet also lists ready-made packages and accepts a direct .pmtiles / .mbtiles URL.
- Preset regions — continents, countries, and mountain ranges with one-tap download
- Per-download zoom — choose min/max zoom with a live tile-count & size estimate before you commit
- Background & resumable — downloads run in the background and resume automatically after an app restart, so a dropped connection or a closed app won't lose progress
Why it scales
- Streaming write — tiles go straight from the network to OPFS via the
FileSystemWritableFileStream. The app never holds the whole archive in memory, so multi-GB regions are safe even on phones. - SHA-1 deduplication — identical tiles (ocean, forest canopy, blank areas) are stored once. Typical savings: 30–50% on raster regions with lots of homogeneous terrain.
- Cancellable — tap Cancel and the partial OPFS file is removed cleanly.
- Polite — concurrency capped at 4 simultaneous fetches.
Realistic sizing
| Region | Zoom range | Tiles | Approx size |
|---|---|---|---|
| Single county (~50 × 50 km) | z6–z14 | ~10K | ~120 MB |
| Single county | z6–z16 | ~50K | ~600 MB |
| Single state | z6–z14 | ~80K | ~1 GB |
| Single state | z6–z16 | ~400K | ~5 GB |
.pmtiles via Settings → Offline Maps → Import. The downloader also backs off automatically if a server signals overload (HTTP 429/503) and sends an identifying User-Agent, to stay a good citizen.Online Tile Cache (Fallback)
For tiles you happen to view while online — outside any imported PMTiles archive — the service worker still caches them to Cache API storage as a stale-while-revalidate fallback. This is a secondary mechanism; PMTiles archives are the canonical offline source. Opportunistic caching is deliberately restrained so it stays responsive without overwhelming low-end devices.
- All base layers and overlays cached independently while online
- Cached tiles continue to serve when the connection drops
- DEM terrain tiles (for 3D) cached alongside base layers
- Retina-aware:
{r}=@2xURL substitution matches between cache write and live<img>request - Viewport preloading warms nearby tiles and adjacent zoom levels, with deduped and bounded queues
- Cached parent tiles are used as fallback when exact tiles are unavailable, including opaque no-CORS tiles served back through the service worker
- When connectivity returns, visible tile layers redraw and run a light re-warm pass
- Subject to OS storage-pressure eviction (which is exactly why PMTiles archives are the canonical mechanism — they're not evicted)
Storage Management
Open Settings → OFFLINE MAPS for archive management, or scroll down for online-cache controls:
- My archive list — name, size, zoom range, and tile format per imported archive. Each row has Use / Remove buttons. Bundled archives are flagged.
- Tile cache size — total storage used by the online fallback cache
- Clear tile cache — removes only the online cache; PMTiles archives are unaffected
- Clear app cache — clears app-level cache (does not delete map objects or archives)
Team Sync — Overview
Team Sync lets multiple ZYRNTOPO users share a live map — markers, lines, and polygons propagate to all connected peers in real time, along with each user's GPS position. Open via More → Team Sync. Team Sync and Team Chat are ZYRNTOPO Pro features; the free Team Members roster (contacts, roles, medical/emergency info) needs no account.
How it works
- Objects are synced with a last-write-wins CRDT — the most recent edit always wins
- GPS positions broadcast every 4 seconds; peers appear as colored circles on the map
- Peer identity is ephemeral per session (no accounts)
- Four transport modes are available depending on connectivity
| Mode | Internet | LAN only | Offline | Range |
|---|---|---|---|---|
| P2P (Nostr) | ✓ | ✗ | ✗ | Global |
| LAN Hub | ✗ | ✓ | ✓ | LAN (~150m WiFi) |
| MAVLink Drone | ✗ | ✓ | ✓ | WiFi/serial |
Team Sync — P2P (Internet)
Uses Trystero over Nostr relays — serverless peer-to-peer WebRTC. No server infrastructure to maintain; peers discover each other via public Nostr relay nodes.
- In Team Sync, enter your display name and role, pick a color.
- Select Internet / P2P mode (default).
- Enter or generate a 6-character session code and share it with teammates (QR code button or copy).
- Tap Join Session. Teammates enter the same code.
Team Sync — LAN Hub
For use when all devices are on the same WiFi network — ideal for incident command posts and field ops with a local hotspot. Run relay.mjs on any Node.js device on the network:
node bridge/relay.mjs [port]
# Default port: 8080
# Example output:
# URL: ws://192.168.1.45:8080In Team Sync, switch to Advanced → LAN Hub transport and enter ws://<relay-ip>:8080.
Bonus: relay.mjs automatically joins the ATAK CoT multicast group (239.2.3.1:6969). If SoRD or any ATAK-compatible device is broadcasting detections on the same network, they flow to all connected ZYRNTOPO clients with no extra configuration.
Team Sync — Drone Telemetry (MAVLink)
Connect any MAVLink-compatible drone autopilot to ZYRNTOPO via WebSocket or, in compatible desktop browsers, directly over USB/serial. The app parses both MAVLink v1 and v2 binary frames and JSON bridges.
Supported messages
GLOBAL_POSITION_INT(msgid 33) — lat/lon/alt/heading → drone marker on mapHEARTBEAT(msgid 0) — armed statusSYS_STATUS(msgid 1) — battery percentage
Compatible bridges
| Bridge | URL format |
|---|---|
| DroneBridge ESP32 | ws://192.168.4.1:5760 |
| mavproxy | --out=wsserver:0.0.0.0:5760 |
| MAVSDK gRPC Web Bridge | see MAVSDK docs |
| Direct USB / telemetry radio serial | Team Sync → Drone tracking → Connect USB / Serial |
| Any raw MAVLink WebSocket | ws://<ip>:<port> |
Wired MAVLink notes
- Desktop web: Chrome/Edge can use Web Serial. Plug in a USB-C/OTG serial adapter or telemetry radio, choose the baud rate (commonly
57600,115200, or921600), and tap Connect USB / Serial. - Android app: the APK includes a native USB serial bridge for common FTDI, CP210x, CH340/CH341, PL2303, and CDC/ACM adapters. Plug in with USB-C/OTG, grant Android's USB permission prompt, leave the selector on Auto-detect port / baud, and tap Connect USB / Serial. ZYRNTOPO scans supported adapters across common MAVLink baud rates; manual baud selection remains available for known hardware.
- Flight controller ports: ArduPilot/PX4 telemetry ports must be configured for MAVLink output at the same baud rate as the adapter.
In Team Sync, expand Drone Telemetry (MAVLink), enter the WebSocket URL or use Connect USB / Serial with auto-detect or a manual baud rate. The drone appears on the map as a rotating 4-arm icon. The tooltip shows altitude, armed state, and battery level.
Team Sync — TAK Server
A TAK server is shared infrastructure: everyone connected to the same one sees each other's positions, markers and chat, whether they are running ZYRNTOPO, ATAK or WinTAK. This is different from the ATAK CoT bridge below, which is a LAN multicast link with no server involved.
Connecting
Team Sync → TAK server. It is pre-set to the ZYRNTOPO server, but nothing is sent until you press Connect — joining a server publishes your position to everyone else on it, so it is never done automatically, and it does not resume by itself the next time you open the app.
Choose My own TAK server to point at your own instead, and enter the address your server printed during setup.
Running your own
Free, open, and everything stays on hardware you control. It runs on a Raspberry Pi 4 (4 GB+) or better, any spare 64-bit Linux box or Mac, a small VPS, or Windows with Docker Desktop. A 32-bit Raspberry Pi OS will not work — several dependencies ship no armv7 wheel.
On a VPS, a Pi, or any Linux or Mac box, one command downloads the kit, checks it and runs the installer:
curl -fsSL https://zyrntopo.com/tak-server.sh | shTo pass the installer an option, give sh a -s -- first — for example to publish it over Tailscale with TLS rather than LAN-only:
curl -fsSL https://zyrntopo.com/tak-server.sh | sh -s -- --tailscaleIt unpacks to ~/zyrntopo-tak-server. Set ZYRN_TAK_DIR to change that, or ZYRN_TAK_NORUN=1 to unpack without installing. Requirements, the port table and manual verification are on the TAK server page.
Or download the kit and run it yourself — zyrntopo-tak-server-1.15.9.tar.gz (39 KB) · .zip for Windows, which has no curl | sh path and uses the PowerShell script:
tar xzf zyrntopo-tak-server-1.15.9.tar.gz
cd zyrntopo-tak-server-1.15.9
./setup-tak-server.shThe script generates its own secrets, builds and starts OpenTAKServer, creates the certificate authority, provisions everything it needs, and then tests the whole path end to end before telling you it worked. Windows uses .\setup-tak-server.ps1 with the same switches. Re-running it is safe and is the normal way to repair a stack — existing secrets, the CA and issued certificates are never regenerated.
d86c021f8a8509ee4e5201b05fef6b578492ed31a4dd9172540263027f7edc1f .tar.gz2aed1d40c49d15e7b1ec971a5b2ada50d2239dbfe20208134530c11aae64b3c4 .zipsha256sum zyrntopo-tak-server-1.15.9.tar.gz on Linux/Mac, or Get-FileHash on Windows. The curl | sh path above does this for you and refuses to run on a mismatch.Ports — note that ZYRNTOPO uses 8090, not 8089
A TAK server's client port (8089) is raw TLS over TCP. ZYRNTOPO speaks WebSocket rather than raw TCP on every platform it ships for — browser, Android, Fire OS and desktop. The stack therefore includes a small WebSocket relay on 8090 that sits in front of 8089, and that is the address ZYRNTOPO connects to. ATAK and WinTAK are unaffected and connect straight to 8089 as usual.
| Port | Used by | Open by default |
|---|---|---|
8090 | ZYRNTOPO (WebSocket relay) | Yes |
8089 | ATAK / WinTAK (TLS CoT) | Yes |
8443 | Certificate enrolment for ATAK | Yes |
8081 | Admin web UI | Localhost only |
ws:// and has no authentication of its own — anyone who can reach port 8090 can join your server's feed. Keep it on a VPN such as Tailscale or WireGuard, or put it behind a reverse proxy with TLS. A proxy is also required if your team uses the ZYRNTOPO web app: a browser refuses a ws:// connection from an https:// page, so the address has to be wss://. The installed desktop and Android builds do not have that restriction.If everything looks healthy but nobody sees anybody
This is the failure worth recognising, because nothing reports an error on either side. OpenTAKServer is three separate processes, and if the one that distributes events is not running, clients connect, authenticate and register perfectly while no position ever arrives. Check all services are up with docker compose ps, and re-run the setup script — it repairs this and reports whether the end-to-end test passed.
Team Sync — ATAK CoT / SoRD Detections
ZYRNTOPO talks ATAK Cursor on Target (CoT) over UDP multicast both ways. Your team members appear on any ATAK device on the same LAN, and inbound detections from ATAK or the SoRD SAR drone platform appear on your map as color-coded markers in real time.
Bidirectional behavior
- Outbound: when ZYRNTOPO is connected to
atak_bridge.py, every GPS update is converted to a CoT 2.0 PLI event of typea-f-G-U-C-I(friendly · ground · unit · civilian · individual) and broadcast to239.2.3.1:6969. Each peer gets a stable UID (ZYRN.<peerId>) so ATAK updates the same marker rather than spawning new ones, with a 60-secondstaleattribute so dropped peers auto-clear. - Inbound: incoming CoT events are parsed for position, callsign, remarks, detection scores, CoT type,
color argb, and the originalstaletimestamp. Scores are read from the structured<sord>detail block when present and from the legacyremarkstext otherwise — see the detection contract. All scores are displayed on the marker label and detection list. A sweeper auto-removes detections after their stale time elapses (default 120 s), matching ATAK's own behavior.
The detection contract
Detection scores used to be recovered by string-matching the CoT <remarks> text for Conf: XX%, Thermal: 0.XX and ArcFace: 0.XX. That worked, but it was an interface with no schema and no failure signal: if the sender renamed a label, ZYRNTOPO simply stopped populating that score, and nothing on screen distinguished “no score was sent” from “the parser stopped matching”. On a life-safety marker that is not an acceptable failure mode — and it was not hypothetical, since SoRD has already replaced ArcFace face embeddings with appearance/re-ID embeddings (at SAR altitudes a face is rarely resolvable).
Structured values now travel in a <sord> element inside <detail>. Stock TAK clients ignore unknown detail elements, so this is invisible to ATAK, and <remarks> stays human-readable for them:
<detail>
<contact callsign="SoRD-D-0147"/>
<sord schema="1">
<mission id="2026-08-03-A" op="1"/>
<score type="thermal" value="0.72"/>
<score type="reid" value="0.88"/>
<score type="composite" value="0.85"/>
<thresholds autoalert="0.85" review="0.60"/>
<source sensor="lepton35" mode="night" altitude_agl_m="48"/>
<tier value="auto"/>
</sord>
<remarks>SoRD detection · Conf: 85% · Thermal: 0.72 · ReID: 0.88</remarks>
</detail>- Structured wins, remarks are the fallback. ZYRNTOPO prefers the block, falls back to remarks parsing when there is none, and records which path produced the numbers. The remarks parser is kept indefinitely rather than retired — field kits are imaged once and then live in a case for a year, so assume an older image is always in circulation somewhere.
- Thresholds travel with the detection. The auto-alert and review cutoffs are the sender's to choose. Carrying them per-event means retuning them on the sensor side moves the marker colours to match, instead of silently making them wrong.
- Unknown schema versions warn, they do not fail. A newer
schemathan this build knows is reported and the recognised fields are still rendered — refusing to draw an event that has perfectly good coordinates would be the worse outcome. - Detection UIDs are matched case-insensitively. The
soRD-prefix is a wire-format value rather than a label, so a client holdingsoRD-0147that begins receivingSoRD-0147would otherwise render both and leave the stale one on the map until it expired — duplicate pins at one coordinate, mid-incident.
GeoChat & markers
- GeoChat bridging (both ways): messages you send in Team Chat are emitted as ATAK GeoChat (
b-t-f) CoT, so they land in ATAK's chat window; inbound ATAK GeoChat appears in ZYRNTOPO chat tagged (ATAK). Works even in an ATAK-only session with no P2P/LAN room. Echo of your own messages is suppressed via aBAO.F.ZYRN.source tag. - Affiliation classification: inbound events now carry an
affiliation(friend / hostile / neutral / unknown) derived from the CoT type, so friendly units, neutral contacts and placed markers — not just hostile detections — are distinguished on the map. - Outbound markers: the bridge accepts
cot_markerframes and emits them as CoT marker events, so a ZYRNTOPO-placed point can be pushed to ATAK. - TAK Protocol "Mesh SA" framing: the bridge unwraps the
0xbfTAK Protocol header. Version 0 (CoT XML) is decoded; version 1 (protobuf) is detected and skipped with a one-time notice — set ATAK to "CoT XML" output, or route protobuf mesh through a TAK server.
Detection confidence colors
Marker colour comes from the confidence score, against the thresholds carried on the event (defaulting to 0.85 / 0.60):
- Red circle — at or above the auto-alert threshold (default ≥85%)
- Orange circle — between the two thresholds (default 60–85%) — manual verification needed
- Slate circle — below the review threshold — logged, low confidence
- Friendly circle — a friendly CoT type (
a-f-*), i.e. a PLI / teammate position rather than a detection
cot_type — red or orange for a-h-* (“hostile”), blue otherwise. SoRD emits a-h-G, a placeholder carried over from early development, and a missing person is not a hostile contact: on a multi-agency incident an outside ATAK operator seeing that would reasonably filter it as a threat track. The fix on the sensor side is to retype detections to something honest such as a-u-G — but under the old rule that retype would have pushed every detection into the friendly branch and drawn it in the same blue as a searcher's own position marker. Colouring from confidence instead means each side can change its CoT typing independently; a-h-* still renders exactly as before.Automatic connection
The app silently tries ws://localhost:4243 at startup; if the bridge is running on the same machine (or you enter its LAN address), it connects automatically and your team starts publishing CoT.
Manual setup
pip install --user --break-system-packages websockets
python3 bridge/atak_bridge.py --ws-port 4243 --mcast-group 239.2.3.1In Team Sync, expand ATAK CoT Detections (SoRD) and enter ws://<bridge-ip>:4243.
If you're using the LAN relay (relay.mjs) instead, CoT detections flow automatically as before — but outbound CoT requires atak_bridge.py.
Wired SoRD / ATAK notes
- If the cable/adapters create a network interface (USB Ethernet, USB tethering, or a radio gateway with IP), keep using
atak_bridge.pyand enter the bridge address in ZYRN. - If the private SoRD stack emits CoT XML over raw serial, the Android APK can read it directly through ATAK detections (SoRD) → Connect USB / Serial. Auto-detect scans supported adapters and common baud rates until valid CoT XML is seen; manual baud selection remains available.
- If the serial source uses TAK protobuf or a proprietary framing format, route it through a small adapter that emits standard CoT XML first.
- ZYRNTOPO does not need SoRD internals. It only needs the resulting ATAK/CoT position, callsign, score, and remarks fields.
SoRD platform overview (v5)
SoRD is a compact SAR drone system. The v5 ground station adds a multimodal detection pipeline and per-mission folder management:
- FLIR Lepton 3.5 thermal sensor → ESP32-S2 DAC → 5.8 GHz VTX video transmitter
- MS2109 USB capture → YOLOv5n CPU inference → appearance / re-ID embeddings for match scoring
- Composite score, thermal score and re-ID score reach ZYRNTOPO in a structured CoT detail block and are displayed separately on markers (see ATAK Bridge for the wire format)
- Scores ≥0.85 trigger automatic ATAK CoT broadcasts to
239.2.3.1:6969with a 120 s stale window - Scores 0.6–0.85 enter an operator review queue (also broadcast as CoT with lower score)
- Per-mission folders: detections, crops, and thermal frames are saved under a timestamped mission directory; the operator review dialog lets you accept/reject each detection
- WiFi latency ~260 ms; LoRa relay latency 3–30 s
Team Chat
Chat is available in any Team Sync session. Tap the chat bubble icon to open the chat panel. The input bar sits at the top of the panel so it remains visible when the keyboard is open on mobile.
- Text messages — sent to all peers in the session
- Voice messages — tap-and-hold the microphone button to record; release to send; tap to cancel
- Chat history is stored locally for the current session
- Unread message badge on the chat button
- ATAK GeoChat bridge — when the ATAK bridge is connected, text chat is mirrored to/from ATAK's GeoChat, so ZYRNTOPO and ATAK users share one conversation.
SAR — Operational Periods
Open More → Operational Periods. Each period represents a planning cycle (typically 12 or 24 hours) in a search operation. Assign map objects to periods to keep your map organized and filterable.
- Name, start date/time, and status (active/inactive)
- Toggle visibility of all objects in a period with one switch
- Export a period's objects as GeoJSON for incident documentation
SAR — Resources & Roles
Open More → Team Members. Each member has:
- Name and role (team leader, member, medical, air, K9, logistics, etc.)
- Contact info — radio channel, phone, callsign
- Assignment — linked to an operational period
Import/export team rosters as JSON or CSV for briefings and ICS documentation.
SAR — Gear / Pack List
Open More → Gear. Build a complete inventory of field equipment with:
- Item name, category, quantity, weight
- Total pack weight summary
- Category grouping (shelter, navigation, medical, comms, etc.)
- Export as JSON or CSV for logistics planning
- Import from a previous operation's export
SAR — Clue & Find Logging
Any marker can be flagged as a clue or find using its SAR properties panel:
- Type: Physical clue, track, trail, scent, shelter, victim found, deceased
- Description: Detailed notes
- Time found: Timestamp recorded automatically
- Assigned to OP: Links to an operational period
- Photo: Attach a camera photo directly to the clue marker
All clue markers are also exported in GeoJSON with full SAR metadata intact.
Import & Export — GeoJSON
GeoJSON is ZYRNTOPO's primary exchange format. All map objects are serialized to standard GeoJSON with ZYRNTOPO-specific properties in the properties object.
Export
Open More → Export → GeoJSON. Choose to export all objects, a specific folder, or a specific operational period. The file saves to the device's Downloads folder or triggers a browser download.
Import
Open More → Import and select a .geojson or .json file. Objects are merged into the current map — existing objects with the same ID are updated; new IDs are created. Drag-and-drop import is supported in the web app.
Import & Export — KML / KMZ
Export to KML for use in Google Earth, CalTopo, or other GIS tools. KMZ (zipped KML) is also supported for import. Exported KML includes point placemarks, line strings, and polygon features with names and color styling.
Import & Export — GPX
GPX export is ideal for loading routes onto dedicated GPS devices (Garmin, Suunto, etc.). Waypoints export as <wpt> elements; recorded tracks export as <trk>. GPX import reads both <wpt> and <trk>/<rte> elements.
Import & Export — CSV
CSV export writes all marker coordinates and properties to a spreadsheet-compatible file — useful for importing into ArcGIS, QGIS, or sharing data with agencies that use spreadsheet-based tools. Team member rosters and gear lists also export/import as CSV.
Print to PDF
Open More → Print. The current map viewport is rendered to a printable layout with:
- All visible map objects (markers, lines, polygons)
- Map title (from Settings → Map Title)
- Coordinate grid overlay (optional)
- Scale bar
- Date/time stamp
On Android, the system print dialog opens allowing PDF save or physical printing. In the web app, the browser print dialog is used — choose Save as PDF.
Bridge Tools — LAN Relay (relay.mjs)
The LAN relay is a lightweight Node.js WebSocket server for offline LAN-only Team Sync. It requires no internet connection — just Node.js installed on any device on the network.
# Start on default port 8080
node bridge/relay.mjs
# Custom port
node bridge/relay.mjs 9000The relay prints its WebSocket URLs on startup. Share one with teammates for the LAN Hub URL field in Team Sync. The relay also automatically listens on UDP multicast 239.2.3.1:6969 for ATAK CoT detection events and forwards them to all connected clients — no separate bridge needed.
Bridge Tools — ATAK CoT Bridge (atak_bridge.py)
A bidirectional CoT ↔ ZYRNTOPO bridge. Receives ATAK / SoRD detections from UDP multicast and forwards them as JSON to the WS client; in the other direction, it accepts position frames from ZYRNTOPO over WS and re-broadcasts them as proper CoT XML so any ATAK device on the LAN sees your team.
pip install --user --break-system-packages websockets
python3 bridge/atak_bridge.py [--ws-port 4243] [--mcast-group 239.2.3.1] [--mcast-port 6969]ZYRNTOPO automatically tries ws://localhost:4243 at startup, so if the bridge is running on the same machine it connects automatically.
Outbound CoT (ZYRNTOPO → ATAK)
Position frames received from ZYRNTOPO — in either {t:'pos', d:{name, lat, lng, …}} or {type:'cot_pos', …} shape — are converted to a CoT 2.0 PLI event and sent to 239.2.3.1:6969:
<event version="2.0" uid="ZYRN.<peerId>" type="a-f-G-U-C-I"
how="m-g" time="..." start="..." stale="+60s (peers)">
<point lat="..." lon="..." hae="..." ce="9999999" le="9999999"/>
<detail>
<contact callsign="..."/>
<__group name="Cyan" role="Team Member"/>
<precisionlocation altsrc="GPS" geopointsrc="GPS"/>
<remarks>ZYRNTOPO</remarks>
</detail>
</event>The stable per-peer UID prevents marker duplication on the ATAK side; the 60-second stale means peers auto-clear when they go offline. Echoes of our own outbound frames are filtered on the inbound listener.
Inbound CoT (ATAK → ZYRNTOPO)
Incoming CoT XML is parsed for:
- Event UID (prepended with
soRD-) — stable across updates - Position from
<point lat lon hae /> - Callsign from
<detail><contact callsign="…"/> - Remarks text — full string forwarded to client
- Composite confidence — from
<score type="composite"/>, orConf: XX%in remarks on a legacy sender thermal_score— from<score type="thermal"/>, orThermal: 0.XXin remarksrgb_score— from<score type="reid"/>, or the legacyArcFace: 0.XXremarkthresholds,tier,source,mission— structured block only; absent on a legacy sendercolor— from<color argb="…"/>elementcot_type,cot_time,stale,how— passed through to the client
The client honors the stale timestamp (SoRD v5 detections use a 120 s window) and a sweeper auto-removes expired markers every 5 seconds. Marker colour is set from the detection's confidence score against the thresholds on the event; cot_type is used only to recognise a friendly track (a-f-*), which is a teammate position rather than a detection.
Settings — Coordinate Formats
Open More → Settings → Coordinate Format and choose from DD, DMS, DDM, UTM, or MGRS. This affects all coordinate displays: status bar, point info panel, marker info, and CSV export.
Settings — Units & Display
- Distance — Imperial (miles, feet) or Metric (km, meters)
- Area — Acres or Hectares
- Elevation — Feet or Meters
- Speed — mph or km/h
- Map title — appears on PDF prints
- Default base layer — layer shown on first load (default: VersaTiles Eclipse)
- Terrain exaggeration — 3D mesh vertical scale (1.0–3.0×)
Accessibility
- Glove mode — enlarges buttons and touch targets across the app for use with gloves or in motion.
- Colour-blind-safe palette — switches the computed terrain layers (slope angle / aspect) to a colour-blind-friendly ramp; legends update to match.
- Night mode — a separate 3-state map dimming / red-light cycle (see Night Mode).
Map display toggles
Declutter the map by hiding chrome you don't need — each is an independent on/off switch under Settings → Map display:
- Coordinates readout, live weather widget, scale bar, the on-map control buttons, and the Tools button can each be shown or hidden.
Automatic persistence
The following state is saved automatically and restored on every launch — no manual action required:
- Base layer selection — the active basemap (raster, vector, or imported archive) is remembered; the same layer loads on the next launch.
- Map position & zoom — the last map center and zoom level are saved (debounced 1.5 s after panning stops) and restored on launch.
- Hillshade opacity — the global relief opacity slider value is preserved across sessions.
zyrntopo_settings. Clearing site data in your browser will reset them to defaults.Settings — Permissions
On first launch all permissions are requested via native dialogs. If you denied a permission and need to re-enable it:
- Android: Settings → Apps → ZYRNTOPO → Permissions
- Web / Chrome: Click the lock icon in the address bar → Permissions
Permissions used by the app:
| Permission | Used for | Required |
|---|---|---|
| Location (Fine; background optional while recording) | GPS tracking, position broadcasts, track recording | For GPS features |
| Microphone | Voice messages in Team Chat (requested in-context) | Optional |
| Storage (Android ≤9) | Legacy file import/export (newer Android uses the system file picker, no permission) | Optional |
Platforms — Android
Minimum Android 7.0 (API 24), targeting API 36. One universal binary covers all four ABIs — armeabi-v7a, arm64-v8a, x86 and x86_64.
- Install from Google Play, the Amazon Appstore for Fire tablets and devices without Play, or the signed APK directly
- Every hardware feature the app touches — location, GPS, network location, microphone, USB host — is declared
required="false", so no permission removes the app from a device that lacks that hardware. That is what keeps it installable on Wi-Fi-only Fire tablets, which have no GPS receiver - Location is foreground-only except while you are recording a GPS track, which may continue in the background with a persistent notification; location is never sent to ZYRNTOPO servers
- The keyboard uses
adjustResizeso the chat input bar stays visible when typing - Production build hardening: app backup disabled and mixed content disabled; cleartext is intentionally allowed for operator-managed local
ws://field bridges such as LAN, MAVLink, and ATAK integrations - Release builds are signed; debug builds use
.debugapp ID suffix
Platforms — Web / PWA
The web version runs in any modern browser (Chrome, Firefox, Edge, Safari) at app.zyrntopo.com. Install as a PWA for an app-like experience:
- Chrome / Edge: Click the install icon in the address bar
- Firefox: Menu → Install as App (Firefox 128+)
- iOS Safari: Share → Add to Home Screen
The PWA uses a Service Worker for offline-first operation — all app code and viewed tiles are cached automatically. No separate install or download manager needed.