forked from richonguzman/LoRa_APRS_Tracker
-
Notifications
You must be signed in to change notification settings - Fork 2
en 06 sd card
morel edited this page Mar 30, 2026
·
3 revisions
The SD card is optional but strongly recommended for maps and data persistence.
Required format: FAT32
/LoRa_Tracker/
├── config.json ← Device configuration
├── stats.json ← Station statistics
├── MapTiles/ ← Raster tiles (JPEG/PNG)
│ └── REGION/
│ └── Z8/
│ └── X/
│ └── Y.jpg
├── VectMaps/ ← Vector tiles (NAV)
│ └── REGION/
│ ├── Z9.nav
│ ├── Z10.nav
│ └── ...
└── GPX/ ← Recorded tracks
└── track_YYYYMMDD_HHMMSS.gpx
Raster tiles are standard OpenStreetMap images (XYZ/TMS format).
Use MOBAC (Mobile Atlas Creator):
- Select source: OpenStreetMap
- Select the geographic area
- Zoom levels: 8, 10, 12, 14 (Z8 alone is enough to start)
- Output format: Custom → folder
MapTiles/REGION_NAME/
/LoRa_Tracker/MapTiles/FRANCE/Z8/X/Y.jpg
NAV tiles offer more detailed rendering at high zoom (Z9+). They are compatible with the IceNav-v3 format.
.nav files are generated from OpenStreetMap data using the IceNav conversion tool.
/LoRa_Tracker/VectMaps/FRANCE_SOUTH/Z9.nav
/LoRa_Tracker/VectMaps/FRANCE_SOUTH/Z10.nav
...
/LoRa_Tracker/VectMaps/FRANCE_SOUTH/Z15.nav
One
.navfile per zoom level per region.
The tracker works without an SD card with reduced functionality:
| Feature | Without SD |
|---|---|
| Raster map | Grey background only |
| Vector map | Not available |
| APRS symbols on map | Red circles |
| Messages | Not persistent (lost on reboot) |
| Station stats | Not persistent |
| GPX tracks | Not available |
| Configuration | Saved in internal flash |