genealogy

Gedcom Reader for C#

本秂侑毒 提交于 2019-11-30 05:21:46
Does anyone know of a good class to read in .ged files Gedcom is a file format that is used to store genealogical information. My goal is to write something that would let me import a ged file and export a .dot file for graphviz so that I can make a visual representation of a family tree thanks if you can help Heres my best attempt so far. It seems to be working for what i need though its defiently not full proof ( then again my family tree is rather large and that adds some complexity) please let me know if you think i could make anything more elequient struct INDI { public string ID; public

How do I show marriages in a d3.js based 'family-tree'?

£可爱£侵袭症+ 提交于 2019-11-28 16:13:34
I'm a HTML/CSS developer, researching javascript solutions for building a 'family-tree' which needs to show marriages (from outside the family, of course) in a meaningful way. Essentially I'm looking at basing it upon a dendrogram, based on d3.js, e.g. http://bl.ocks.org/4063570 , but I've struggled to find anything out there that expresses 'marriages'. Below is an image of the data I will be basing it upon: Any help / suggestions / links would be much appreciated! I just don't know if it's even possible, but would love to use d3.js as it looks so well-made, and apparently versatile. There are

How do I show marriages in a d3.js based 'family-tree'?

血红的双手。 提交于 2019-11-27 19:53:17
问题 I'm a HTML/CSS developer, researching javascript solutions for building a 'family-tree' which needs to show marriages (from outside the family, of course) in a meaningful way. Essentially I'm looking at basing it upon a dendrogram, based on d3.js, e.g. http://bl.ocks.org/4063570, but I've struggled to find anything out there that expresses 'marriages'. Below is an image of the data I will be basing it upon: Any help / suggestions / links would be much appreciated! I just don't know if it's

How do you create a family tree in d3.js?

痴心易碎 提交于 2019-11-26 18:21:36
I'm currently working on a small genealogy experiment and would like to implement a simple family tree like in the picture below. The best search results so far for this only yielded examples where a child can only have a parent node. But what I need is the ability to create links between entities (from father to mother) and links between nodes and other links (from child to the father-mother link). Currently I don't have a fixed data schema for this. I've chosen d3.js for this because it looks like would be capable of doing the job . I just don't know how or even where to start. Tutorials