Run load_data.py SAVE_FILE_NAME to load the data from the specified save file. If no name is specified, Leon1067_02_12.ck2 file is chosen by default.
The data is placed into SQLite3 database file named ck2-db.db. You can use sqlite3 ck2-db.db to open it and run SQL queries by hand.
The conversion should take around a minute.
You can download test data (example save files) from:
Both archives contain the following files (you can ignore the rest as it's outdated compared to what's integrated into the repo):
-
Leon1067_02_12.ck2- This is the standard dataset. Does not contain any bloodlines. -
Bloodlines.ck2- Alternative dataset that contains bloodlines. This would need to be passed to theload_data.pyas a parameter (i.e.python3 load_data.py Bloodlines.ck2)
| Relation Name | Meaning |
|---|---|
| barony | A table of tuples that describes a single city, castle, church, or other singular holding |
| bloodlineowners | A table that maps characters to bloodlines |
| bloodlines | A table of tuples that describes a bloodline by giving it a name and founder |
| culture | A table of tuples that describes a culture |
| claim | A table that maps characters to titles they have claims on |
| dynasty | A table of tuples that describes a dynasty |
| marriage | A table of tuples that describes a marriage between two characters |
| person | A table of tuples that describes a character |
| province | A table of tuples that describes a singular province (a section of land) |
| religion | A table of tuples that describes a religion |
| title | A table of tuples that describes a title (e.g. county of dorset, duchy of essex, kingdom of england, or empire of britannia) |
| trait | A table that maps characters to traits |
| traitlookup | A table of tuples that describes a trait |
-- Query for getting all of the traits of noble people
SELECT birthname, dynastyname, traitname
FROM person NATURAL JOIN dynasty NATURAL JOIN trait NATURAL JOIN traitlookup;-- Query for getting noble people and their titles.
SELECT birthname, dynastyname, name as title, level
FROM (
SELECT personid AS holderid, birthname, dynastyname
FROM person NATURAL JOIN dynasty) ppl
NATURAL JOIN title;Bear in mind that natural join of person and dynasty tables will try to match not only dynastyID, but also cultureID and religionID, often resulting in less results than you'd expect.
-- Query for the culture and religion for all living, noble people
SELECT birthname, dynastyname, culturename, religionname
FROM person NATURAL JOIN dynasty NATURAL JOIN culture NATURAL JOIN religion
WHERE deathday is NULL;