I'm developing an android wifi localization app that uses a grid approach, where you select a grid tile and then it scans and collects all of the BSSIDs and RSSI values nearby that point and saves them along with the x,y coordinate of that grid tile.
What would be the best way to save that data? Should I use an sql database or would creating a text file be better?
This is a rough sketch of the data I need to save.
RadioMap: {
“filename”: String,
“points(list)”: {
“x”: Int,
“y”: Int,
“collections(list)”: {
“BSSID”: String
“RSSI”: Int
}
}
}