Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adamb924/references-in-sqlite

Mapping between Bible references (English, MT, LXX) with sqlite.
https://github.com/adamb924/references-in-sqlite

Last synced: about 1 month ago
JSON representation

Mapping between Bible references (English, MT, LXX) with sqlite.

Awesome Lists containing this project

README

        

references-in-sqlite
=================================

The issue of multiple Bible references is discussed here:
https://en.wikipedia.org/wiki/Chapters_and_verses_of_the_Bible

CCEL has open resources for converting between reference systems.
http://www.ccel.org/refsys/refsys.html

Specifically these files:
http://www.ccel.org/refsys/Bible.xml
http://www.ccel.org/refsys/Bible.ORG.xml
http://www.ccel.org/refsys/Bible.LXX.xml

The XML files are first prepared for SQL input:

xsltproc -o "Bible.txt" "from-bible.xsl" "Bible.xml"
xsltproc -o "Bible.LXX.txt" "from-other.xsl" "Bible.LXX.xml"
xsltproc -o "Bible.ORG.txt" "from-other.xsl" "Bible.ORG.xml"

Then they are imported:

sqlite3 references.sqlite ".read references-in-sqlite.sql"