Questions tagged [genealogy]

Genealogy is the study of families and the tracing of their lineages and history.

Use of oral traditions, historical records, genetic analysis, and other records to obtain information about a family and to demonstrate kinship and pedigrees of its members. The results are often displayed in charts or written as narratives. (From Wikipedia)

Questions about programming genealogy software should be asked in Stack Overflow. But questions about genealogy in general should be asked in the Genealogy and Family History Stack Exchange.

61 questions
6
votes
4 answers

Anyone used SQl Server 2008 HierarchialID type to store genealogy data

I have a genealogical database (about sheep actually), that is used by breeders to research genetic information. In each record I store fatherid and motherid. In a seperate table I store complete 'roll up' information so that I can quickly tell the…
E.J. Brennan
  • 45,870
  • 7
  • 88
  • 116
6
votes
3 answers

Cocoa interface to GEDCOM file

The only full-fledged GPL Cocoa editor for GEDCOM 5.5 files (GenerationX) was last released in 2003: http://sourceforge.net/projects/generationx/ It looks unstable under Snow Leopard and would badly need a revamp. Someone recently posted a…
radrat
  • 335
  • 1
  • 4
  • 11
5
votes
4 answers

What structure and algorithm use for building genealogy tree?

I found in one book, that for presenting genealogy (family) tree good to use DAG (directed acyclic graph) with topological sorting, but this algorithm is depending on order of input data.
5
votes
3 answers

inbreeding coefficient calculation and genealogical software

I am currently looking for a piece of software which will be able to map a very large number of GEDCOM files (for around 33,000 individuals) as well as working out ancestral and individual inbreeding coefficients. Does anyone know of any software…
Abbey
  • 51
  • 3
4
votes
1 answer

Genealogy Query in Oracle

I'm trying to fetch a genealogy tree of animals from my Oracle database. Here's the table: Animal ------------------------ Animal_ID Parent_Male_ID Parent_Female_ID .... .... ------------------------ If I specify an animal, I can get all of its…
Mark Sherretta
  • 10,160
  • 4
  • 37
  • 42
4
votes
1 answer

Sites similar to Mathematics Genealogy Project

I am working on data of Mathematics Genealogy Project. I collect all information about students and advisors and do some query processing on that data. To be precise, I crawl all the HTML pages from the root URL of Mathematics Genealogy Project…
Anu
  • 525
  • 1
  • 6
  • 18
3
votes
2 answers

Are Birth and Death as Events modeled as events or attributes of profile in Genealogy

Are births and deaths modeled as events for a person in a genealogy profile or as attributes of the person. What are the pros and cons of each approach?
3
votes
2 answers

Can't get to show all of a tree in a traversal preorder in php

I have a table in my database that host many genealogy trees. ----------------------------- - id name parent_id ----------------------------- - 1 grandfather NULL - 2 father 1 - 3 uncle 1 - 4 son …
3
votes
1 answer

Traversing and Getting Nodes in Graph without Loop

I have a person table which keeps some personal info. like as table below. +----+------+----------+----------+--------+ | ID | name | motherID | fatherID | sex | +----+------+----------+----------+--------+ | 1 | A | NULL | NULL |…
Peter
  • 158
  • 1
  • 11
3
votes
1 answer

Plot a genealogy in R

d = data.frame( offspring = c("G2I1", "G2I2", "G2I3", "G3I1", "G3I2", "G3I3", "G3I4", "G4I1", "G4I2", "G4I3", "G4I4", "G5I1", "G5I2", "G5I3" ), parent1 = c("G1I1", "G1I2", "G1I1", "G2I1", "G2I3", "G2I1", "G2I3", "G3I2", "G3I2", "G3I1",…
Remi.b
  • 17,389
  • 28
  • 87
  • 168
3
votes
3 answers

Genealogy: Relating family relationship in database

How is the algorithm for family tree in genealogy be done? For example Parent A has a Children B and C. So, what if Children C produce a Children too in the future. How does it add to the tree by using database? I've looked on Jit's RGraph tree…
emen
  • 6,050
  • 11
  • 57
  • 94
2
votes
2 answers

Genealogy tree Algorithm

I'm new in this domain and like to write an application managing genealogical data. My main concern is how to store and retreive these data from MySQL. I know that DB like Oracle are optimised for recursive queries, but maybe I can find an…
gilles
  • 45
  • 1
  • 4
2
votes
3 answers

Neo4j cypher query for X-chromosome ancestors

In genetic genealogy X-chromosome data is useful linking to certain ancestors. This is well illustrated at: X-DNA Inheritance Chart My Neo4j database has nodes for each Person and relationships connecting them of father and mother. Each node has a…
David A Stumpf
  • 753
  • 5
  • 13
2
votes
0 answers

ASP.NET : Want to Create a genealogy Tree Like this

Can SOmeone help me to create treeview like this, or atleast help me give a boost start with an example or anthing else This is what i am seeking (Low reputation point, so cant post images) http://s12.postimg.org/y9lcyjhvx/Untitled.png
Pushkar Jethwa
  • 43
  • 1
  • 1
  • 8
2
votes
1 answer

Genealogy Chart/Family Tree

I am wondering what would be the bet solution to creating a family tree. Thinking of a branching tree or fan chart. Or any recommendations of tools available? Thanks!