Changes between Version 3 and Version 4 of OpenCellID


Ignore:
Timestamp:
04/06/25 23:44:13 (3 months ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenCellID

    v3 v4  
    3838~]$
    3939}}}
     40
     41If use sqlite3 command, we can query to change epoch time to  date time.
     42{{{
     43sqlite> SELECT
     44    lat,
     45    lon,
     46    datetime(created_at, 'unixepoch', 'localtime') AS created_local,
     47    datetime(updated_at, 'unixepoch', 'localtime') AS updated_local
     48FROM cell WHERE mcc='520' AND mnc='3' AND lac='842' AND cellid='164612740';
     4913.7159|100.6512|2025-02-14 10:19:55|2025-04-05 16:59:02
     50sqlite>
     51}}}