Open Dataset
Data Structure ?
427.27M
Data Structure ?
*The above analysis is the result extracted and analyzed by the system, and the specific actual data shall prevail.
README.md
文脈
聖書(ギリシャ語ではビブリア)は、ユダヤ人とクリスチャンが神の啓示の産物であり、神と人間の関係の記録であると考える神聖なテキストまたは聖典の集まりです([ウィキペディア][1])。そして、データマイニングの目的で、自然言語処理、分類、感情分析、およびデータサイエンスと神学の観点からの他の特定のトピックに関して、聖書の聖典を使用して多くのことを行うことができます。
内容
ここでは、以下の聖書バージョンが**sql、sqlite、xml、csv**、および**json**形式で見つかります。
- アメリカ標準版 - ASV1901(ASV)
- 基本英語聖書(BBE)
- ダービー英語聖書(DARBY)
- キング・ジェームズ版(KJV)
- ウェブスター聖書(WBT)
- 世界英語聖書(WEB)
- ヤングの逐語訳(YLT)
各節は、書名+章番号+節番号のIDの組み合わせである一意のキーでアクセスされます。
**例**
- 創世記1:1(創世記第1章第1節) = 01001001(01 001 001)
- 出エジプト記2:3(出エジプト記第2章第3節) = 02002003(02 002 003)
- 節IDシステムは、より高速で簡単なクエリに使用されます。
- 例えば、01001001 - 02001005は、創世記1:1から出エジプト記1:5までのすべての節を取得します。
簡単に書くと:
`SELECT * FROM bible.t_asv WHERE id BETWEEN 01001001 AND 02001005`
**関連テーブル**
数字と書名のキー(key_englishテーブル)、相互参照リスト(cross_referenceテーブル)、および含まれる翻訳に関するメタ情報を含む聖書キー(bible_version_keyテーブル)もあります。以下のSQLテーブルのレイアウトを参照してください。これらのテーブルは協調して動作し、聖書閲覧と相互参照アプリの素晴らしい基礎を提供します。さらに、各書は特定のジャンルでマークされており、数字とジャンルのキー(key_genre_englishテーブル)にマッピングされ、各書の一般的な略語は略語リスト(key_abbreviations_englishテーブル)で検索できます。
プログラムは節IDシステムを使用することが想定されていますが、聖書バージョンのテーブルには書籍番号、章番号、および節番号の列も含まれています。
**価値ある相互参照テーブル**
これらのデータベースに非常に特別で価値のある追加要素は、広範な相互参照テーブルです。これは、http://www.openbible.info/labs/cross-references/ のプロジェクトから作成されました。http://www.openbible.info ウェブサイトから含まれる.txtバージョンを参照してください。関連する聖典を見つけるための聖書研究に非常に役立ちます。任意の節について、単にvid(節ID)をクエリすると、行のリストが返されます。それらの各行には、関連性のランク(r)、開始節(sv)、および存在する場合は終了節(ev)があります。
**基本的なウェブインタラクション**
ウェブフォルダには2つのPHPファイルが含まれています。index.phpの最初の数行をサーバーの設定に合わせて編集してください。これらをウェブサーバー上のフォルダに配置します。
参照検索ボックスには、カンマ区切りの複数の値を入力できます。(例:ヨハネによる福音書3:16、ローマ人への手紙3:23、ヨハネの第一の手紙1:9、ローマ人への手紙10:9 - 10)また、URIを変更することで直接節にリンクすることもできます:[http://localhost/index.php?b=ヨハネによる福音書3:16, ローマ人への手紙3:23, ヨハネの第一の手紙1:9, ローマ人への手紙10:9 - 10](http://localhost/index.php?b=ヨハネによる福音書3:16, ローマ人への手紙3:23, ヨハネの第一の手紙1:9, ローマ人への手紙10:9 - 10)
- bible-mysql.sql(MySQL)は、開発者の貢献により、主なデータベースであり、最も機能が充実しています。ほとんどのことにこれを使用することをお勧めします。または、少なくともそこから情報を変換してください。
- cross_references-mysql.sql(MySQL)は相互参照テーブルです。オプションの機能となるように分離されています。これは、http://www.openbible.info/labs/cross-references/ のプロジェクトから変換されています。
- bible-sqlite.db(SQLite)は、簡単なアプリケーション用の基本的な簡易データベースです(相互参照も含まれています)。
- cross_references.txtは、http://www.openbible.info/labs/cross-references/ から取得したソースの相互参照ファイルです。
CSVフォルダには、(他の形式と同じリスト順で)以下があります。
- bible_version_key.csv
![bible_version_key][2]
- key_abbreviations_english.csv
![key_abbreviations_english][3]
- key_english.csv
![key_english][4]
- key_genre_english.csv
![key_genre_english][5]
- t_asv.csv, t_bbe.csv, t_dby.csv, t_wbt.csv, t_web.csv, t_ylt.csv
![t_version][6]
謝辞
元の貢献者の代表として([Github][7])
インスピレーション
[WordNet][8] を自然言語処理の追加の意味論的リソースとして
[1]: https://en.wikipedia.org/wiki/Bible
[2]: http://i.imgur.com/S9JialN.png
[3]: http://i.imgur.com/v59SpQs.png
[4]: http://i.imgur.com/BbKMQgF.png
[5]: http://i.imgur.com/lJVVW2C.png
[6]: http://i.imgur.com/jJ4cf4q.png
[7]: https://github.com/scrollmapper/bible_databases
[8]: https://wordnet.princeton.edu/
×
The dataset is currently being organized and other channels have been prepared for you. Please use them
The dataset is currently being organized and other channels have been prepared for you. Please use them
Note: Some data is currently being processed and cannot be directly downloaded. We kindly ask for your understanding and support.
No content available at the moment
No content available at the moment
- Share your thoughts
Go share your ideas~~
ALL
Welcome to exchange and share
Your sharing can help others better utilize data.
Data usage instructions: h1>
I. Data Source and Display Explanation:
- 1. The data originates from internet data collection or provided by service providers, and this platform offers users the ability to view and browse datasets.
- 2. This platform serves only as a basic information display for datasets, including but not limited to image, text, video, and audio file types.
- 3. Basic dataset information comes from the original data source or the information provided by the data provider. If there are discrepancies in the dataset description, please refer to the original data source or service provider's address.
II. Ownership Explanation:
- 1. All datasets on this site are copyrighted by their original publishers or data providers.
III. Data Reposting Explanation:
- 1. If you need to repost data from this site, please retain the original data source URL and related copyright notices.
IV. Infringement and Handling Explanation:
- 1. If any data on this site involves infringement, please contact us promptly, and we will arrange for the data to be taken offline.
- 1. The data originates from internet data collection or provided by service providers, and this platform offers users the ability to view and browse datasets.
- 2. This platform serves only as a basic information display for datasets, including but not limited to image, text, video, and audio file types.
- 3. Basic dataset information comes from the original data source or the information provided by the data provider. If there are discrepancies in the dataset description, please refer to the original data source or service provider's address.
- 1. All datasets on this site are copyrighted by their original publishers or data providers.
- 1. If you need to repost data from this site, please retain the original data source URL and related copyright notices.
- 1. If any data on this site involves infringement, please contact us promptly, and we will arrange for the data to be taken offline.