Migrate phone wifi visible sensor to new data stream
parent
d42c6e9c91
commit
13290cd444
|
@ -489,3 +489,30 @@ Stream columns named `FLAG_TO_MUTATE` means they are extracted based on the `MUT
|
||||||
=== "IOS"
|
=== "IOS"
|
||||||
|
|
||||||
Same as ANDROID
|
Same as ANDROID
|
||||||
|
|
||||||
|
|
||||||
|
??? info "PHONE_WIFI_VISIBLE"
|
||||||
|
|
||||||
|
=== "ANDROID"
|
||||||
|
|
||||||
|
**RAPIDS_COLUMN_MAPPINGS**
|
||||||
|
|
||||||
|
| RAPIDS column | Stream column |
|
||||||
|
|----------------------|---------------------|
|
||||||
|
| TIMESTAMP | timestamp |
|
||||||
|
| DEVICE_ID | device_id |
|
||||||
|
| SSID | ssid |
|
||||||
|
| BSSID | bssid |
|
||||||
|
| SECURITY | security |
|
||||||
|
| FREQUENCY | frequency |
|
||||||
|
| RSSI | rssi |
|
||||||
|
|
||||||
|
**MUTATION**
|
||||||
|
|
||||||
|
- **COLUMN_MAPPINGS** (None)
|
||||||
|
- **SCRIPTS** (None)
|
||||||
|
|
||||||
|
=== "IOS"
|
||||||
|
|
||||||
|
This sensor is not supported by iOS devices.
|
||||||
|
|
||||||
|
|
|
@ -134,3 +134,16 @@ This is a description of the format RAPIDS needs to process data for the followi
|
||||||
| SSID | Currently connected access point network name |
|
| SSID | Currently connected access point network name |
|
||||||
| BSSID | Currently connected access point MAC address |
|
| BSSID | Currently connected access point MAC address |
|
||||||
|
|
||||||
|
|
||||||
|
??? info "PHONE_WIFI_VISIBLE"
|
||||||
|
|
||||||
|
| RAPIDS column | Description |
|
||||||
|
|--------------------|-----------------------------------------------------------------------------------|
|
||||||
|
| TIMESTAMP | An UNIX timestamp (13 digits) when a row of data was logged |
|
||||||
|
| DEVICE_ID | A string that uniquely identifies a device |
|
||||||
|
| SSID | Detected access point network name |
|
||||||
|
| BSSID | Detected access point MAC address |
|
||||||
|
| SECURITY | Active security protocols |
|
||||||
|
| FREQUENCY | Wi-Fi band frequency (e.g., 2427, 5180), in Hz |
|
||||||
|
| RSSI | RSSI dB to the scanned device |
|
||||||
|
|
||||||
|
|
|
@ -236,3 +236,17 @@ PHONE_WIFI_CONNECTED:
|
||||||
COLUMN_MAPPINGS:
|
COLUMN_MAPPINGS:
|
||||||
SCRIPTS: # List any python or r scripts that mutate your raw data
|
SCRIPTS: # List any python or r scripts that mutate your raw data
|
||||||
|
|
||||||
|
PHONE_WIFI_VISIBLE:
|
||||||
|
ANDROID:
|
||||||
|
RAPIDS_COLUMN_MAPPINGS:
|
||||||
|
TIMESTAMP: timestamp
|
||||||
|
DEVICE_ID: device_id
|
||||||
|
SSID: ssid
|
||||||
|
BSSID: bssid
|
||||||
|
SECURITY: security
|
||||||
|
FREQUENCY: frequency
|
||||||
|
RSSI: rssi
|
||||||
|
MUTATION:
|
||||||
|
COLUMN_MAPPINGS:
|
||||||
|
SCRIPTS: # List any python or r scripts that mutate your raw data
|
||||||
|
|
||||||
|
|
|
@ -83,6 +83,14 @@ PHONE_WIFI_CONNECTED:
|
||||||
- SSID
|
- SSID
|
||||||
- BSSID
|
- BSSID
|
||||||
|
|
||||||
|
PHONE_WIFI_VISIBLE:
|
||||||
|
- TIMESTAMP
|
||||||
|
- DEVICE_ID
|
||||||
|
- SSID
|
||||||
|
- BSSID
|
||||||
|
- SECURITY
|
||||||
|
- FREQUENCY
|
||||||
|
- RSSI
|
||||||
|
|
||||||
FITBIT_STEPS_SUMMARY:
|
FITBIT_STEPS_SUMMARY:
|
||||||
- TIMESTAMP
|
- TIMESTAMP
|
||||||
|
|
Loading…
Reference in New Issue