Color Code by Consanguinity Degree #colorcoding #relationships

I only recently recognised that the values that RootsMagic puts into the Relate1 and Relate2 fields of the PersonTable when the Set Relationships function is applied are more useful than merely codifying the relationship (e.g., see Relationships). Apart from special cases for Self and in-laws, the sum of the two values corresponds to the degree of consanguinity (see this Wikipedia article). For example, the degree of separation in consanguinity is the same from you to your g-g-grandparents (4) as it is to your 1st cousins and your great-aunts and -uncles and your grand-nephews and -nieces. It strikes me that the consanguinity degree might be an interesting, if not useful, basis for color coding. Indeed, it is so easily implemented, I wonder why it is not an option for the Color Code People tool or that consanguinity is not a criterion for finding people and creating groups.

Color_Code-by_Consanguinity_Pedigree.png
Example of color coding by consanguinity degree. Note that each generation of grandparents gets a different color, a difficult task in RootsMagic.

There are 14 color codes plus black in RootsMagic 7 thus supporting consanguinity degrees out to your 12th great grandparents and other relatives of equal degree. They are set in the Color field of PersonTable and range from 0 (black) to 14 (gray). It is a trivial script to assign the consanguinity degree directly to these color codes:

UPDATE PersonTable SET Color = MIN(Relate1 + Relate2, 14);

The MIN() function forces the highest available color code for all degrees beyond 14, which includes Self and In-Laws. These could be excluded by adding a constraint:

UPDATE PersonTable SET Color = MIN(Relate1 + Relate2, 14)
WHERE Relate1 < 999;

I have uploaded three scripts that assign the colors differently:

ColorCode-byConsanguinity1.sql Consanguinity degree mapped directly to RootsMagic color code values.
ColorCode-byConsanguinity2.sql Consanguinity degree mapped via lookup table to RootsMagic color code values so that the closest are brightest and farthest are darkest.
ColorCode-byConsanguinity3.sql Consanguinity degree mapped via lookup table to RootsMagic color code values so that the closest are darkest and farthest are brightest.

ColorCode-byConsanguinityColorTable2.PNG
Consanguinity color coding by script#.

I used a spreadsheet to sort the colors by brightness and hue and to generate the SQL INSERT statements that create the table to map the consanguinity degrees to color codes for versions 2 and 3.
Color_Code-by_Consanguinity_Color_Table.png
ColorCodeDistances.xlsx You could adapt this spreadsheet to color code consanguinity as you see fit and edit a script accordingly with the revised set of SQL statements.

3 Replies to “Color Code by Consanguinity Degree #colorcoding #relationships

  1. I really like what this does — it make not work for everyone’s need all the time. In general it is better than by line coloring as you can only have one color. What I like is that when I look at different families views in RM — I can see 3 different colors on a family. If I see a child with a different color — I know they are most likely related to me differently (such as grand parent vs grand uncle). Seeing this in practice makes more sense. One can adapt the code for particular need. For example I modified RED to ORANGE because I want RED for people that need critical attention for facts etc.

  2. This trick from Tom Holden gets even more interesting with RM8 / RM9 new color features:
    With the 10 color code sets available now, one can have not only a consanguinity degree color set permanently available as mentioned above, but also another color set which shows permanently for all relatives in the tree to which generation of ancestor the person is related by using

    UPDATE PersonTable SET Color = MIN(Relate2, 27);

  3. I’ve just implemented this sort of colour coding manually for relationships and see it like the layers of an onion out from you (or your root person).
    Now I need to work out implementing it in code and this will help

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.