Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marianpekar/wifi-cartographer
https://github.com/marianpekar/wifi-cartographer
android android-application gps-location kotlin kotlin-android wifi-map wifi-scanning
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/marianpekar/wifi-cartographer
- Owner: marianpekar
- Created: 2024-11-03T01:08:50.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-20T19:50:57.000Z (about 1 month ago)
- Last Synced: 2024-11-20T20:34:27.992Z (about 1 month ago)
- Topics: android, android-application, gps-location, kotlin, kotlin-android, wifi-map, wifi-scanning
- Language: Kotlin
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Wi-Fi Cartophrapher
An Android app written in [Kotlin](https://kotlinlang.org) for scanning Wi-Fi networks and capturing BSSID, SSID, capabilities, and signal strength at specific geolocations. The output is a JSON file, with the default name `wifi_map_data.json`, that contains an array of objects that follow this JSON schema.
```json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"patternProperties": {
"^[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){5}$": {
"type": "object",
"properties": {
"capabilities": {
"type": "string",
"pattern": "\\[.*\\]"
},
"frequency": {
"type": "integer",
},
"lastUpdateTime": {
"type": "integer",
},
"levels": {
"type": "object",
"patternProperties": {
"^\\d{2}\\.\\d+,-?\\d{2}\\.\\d+$": {
"type": "integer",
"minimum": -90,
"maximum": 0
}
},
"additionalProperties": false
},
"ssid": {
"type": "string",
}
},
"required": ["capabilities", "frequency", "lastUpdateTime", "levels", "ssid"],
"additionalProperties": false
}
},
"additionalProperties": false
}
```This repository is part of a toolchain. For full context, please see:
🗄️ https://github.com/marianpekar/wifi-map-guide