Skip to content

Commit

Permalink
Add iOS BT and Wifi visible to formats for old devices
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioV committed Mar 30, 2021
1 parent ca2dfac commit 99dae07
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/snippets/aware_format.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ For some sensors, we need to transform iOS data into Android format; you can ref

=== "IOS"

This sensor is not supported by iOS devices.
Only old iOS versions supported this sensor (same mapping as Android).


??? info "PHONE_CALLS"
Expand Down Expand Up @@ -602,5 +602,5 @@ For some sensors, we need to transform iOS data into Android format; you can ref

=== "IOS"

This sensor is not supported by iOS devices.
Only old iOS versions supported this sensor (same mapping as Android).

22 changes: 22 additions & 0 deletions src/data/streams/aware_csv/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,16 @@ PHONE_BLUETOOTH:
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data
IOS:
RAPIDS_COLUMN_MAPPINGS:
TIMESTAMP: timestamp
DEVICE_ID: device_id
BT_ADDRESS: bt_address
BT_NAME: bt_name
BT_RSSI: bt_rssi
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data

PHONE_CALLS:
ANDROID:
Expand Down Expand Up @@ -312,4 +322,16 @@ PHONE_WIFI_VISIBLE:
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data
IOS:
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

22 changes: 22 additions & 0 deletions src/data/streams/aware_influxdb/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,16 @@ PHONE_BLUETOOTH:
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data
IOS:
RAPIDS_COLUMN_MAPPINGS:
TIMESTAMP: timestamp
DEVICE_ID: device_id
BT_ADDRESS: bt_address
BT_NAME: bt_name
BT_RSSI: bt_rssi
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data

PHONE_CALLS:
ANDROID:
Expand Down Expand Up @@ -312,4 +322,16 @@ PHONE_WIFI_VISIBLE:
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data
IOS:
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

22 changes: 22 additions & 0 deletions src/data/streams/aware_mysql/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,16 @@ PHONE_BLUETOOTH:
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data
IOS:
RAPIDS_COLUMN_MAPPINGS:
TIMESTAMP: timestamp
DEVICE_ID: device_id
BT_ADDRESS: bt_address
BT_NAME: bt_name
BT_RSSI: bt_rssi
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data

PHONE_CALLS:
ANDROID:
Expand Down Expand Up @@ -312,4 +322,16 @@ PHONE_WIFI_VISIBLE:
MUTATION:
COLUMN_MAPPINGS:
SCRIPTS: # List any python or r scripts that mutate your raw data
IOS:
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

0 comments on commit 99dae07

Please sign in to comment.