Changes between Initial Version and Version 1 of OpenCellID


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

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenCellID

    v1 v1  
     1= OpenCell ID
     2
     3Ref [https://github.com/janjongboom/opencellid/blob/master/README.md here]
     4
     5Download and create an sqlite database from the csv data that you can get from [http://opencellid.org/downloads/ opencellid]. The thing is that it now requires a login, so the best way is to download it from browser and store it as cells.txt.gz in this folder. If you want to run this on a server then use Firefox Network panel and 'copy as cURL'. Then run that command on the server and store as cells.txt.gz.
     6
     7Then run:
     8
     9
     10{{{
     11#!sh
     12~]$ cat cells.txt.gz | gunzip - > cells.txt
     13~]$ cat schema.sql | sqlite3 cells.sqlite
     14~]$ cat import.sql | sqlite3 cells.sqlite
     15}}}