View ble-covid19-filter.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
datetime(locations.timestamp, 'unixepoch', 'localtime') AS 'Timestamp', | |
devices.service_data AS 'R. Prox. Identifier', | |
locations.rssi AS 'RSSI', | |
locations.latitude AS 'Latitude', | |
locations.longitude AS 'Longitude' | |
FROM | |
devices | |
INNER JOIN locations ON devices.id = locations.device_id | |
WHERE |
View gist:f3f047c39c0fdebdcb4e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package openknowledge.de |