This feature transforms sensor data for privacy concerns, where raw data are obfuscated. It is an opt-in feature and is supported by the sensors below
- GPS
- Bluetooth BLE Proximity
Nearness is the only obfuscation method available for both sensors.
When enabled for BLE, the data to be obfuscated is the raw RSSI reading. The raw RSSI values are mapped into categories for each device and its interactions. Below are the readings to categories mappings.
Sample output
[ { "rawRSSI": "0", "deviceName": "SELF_ODIN_xxx_xxx_abcdefghij_DISCOVERABLE", "smoothedRSSI": "0.0" }]
[ { "deviceName": "SELF_ODIN_xxx_xxx_abcdefghij_DISCOVERABLE", "rawRSSI": "0", "smoothedRSSI": "0.0" }, { "deviceName": "ODIN_xxx_xxx_zyxpqrstuv", "rawRSSI": "-97", "smoothedRSSI": "-97.0" }]
{
"abcdefghij": "M",
"zyxpqrstuv": D
}
[ { "rawRSSI": "0", "smoothedRSSI": "0.0", "deviceName": "SELF_ODIN_xxx_xxx_abcdefghij_DISCOVERABLE" }, { "rawRSSI": "-98", "smoothedRSSI": "-98.0", "deviceName": "ODIN_xxx_xxx_zyxpqrstuv" }, { "rawRSSI": "-81", "smoothedRSSI": "-81.0", "deviceName": "ODIN_xxx_xxx_qwertyuiop" }]
{
"abcdefghij": "M",
"zyxpqrstuv": "D",
"qwertyuiop": "E"
}
When enabled, this feature obfuscates the longitudinal and latitudinal coordinates of the participant's device. Based on the GPS rules defined for the survey, we calculate the distance between the device and the rule locations and when this falls within the rule radius, the data is included in the obfuscated form with the rule identifier and distance.
Assuming a study has 2 GPS rules
Multilocation rule with 3 location
On-arrival rule
Sample output
{ "latitude":"-1.0", "longitude":"-1.0"}
{ "latitude":"50.353262", "longitude":"10.1283316"
}
{
"1":{
"1": 21.4,
"3": 4.5
},
"2":{
"1":33.8
}
}
{ "latitude":"15.741895", "longitude":"10.989308"}
{
"1":{
"1": 18.9,
"2": 26.6,
"3": 9.5
},
"2":{}
}
Obfuscated rows
The device was not within the radius of any of the defined rules
The device was 21.4 and 4.5 meters from multilocation rules 1 and 3 respectively as well as 33.8 meters from the on-arrival rule
The device was 18.9, 26.6 and 9.5 meters from multilocation rules 1, 2 and 3. but not within the radius of the on-arrival rule