family-tree Questions
2
I am trying to programmatically build a family tree. I don't care what format the input data is in, as text is easy to parse (I'm an NLP researcher), but I'm having trouble figuring out how to buil...
Riocard asked 13/2, 2018 at 13:26
7
Solved
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 wher...
Ouzo asked 6/7, 2015 at 12:23
4
Solved
Good people -
I need some help to find a way to create an interactive cladogram or phylogenetic tree (yes, I have read all related posts, and do not find what I am looking for). The thing is, I nee...
Relive asked 17/11, 2011 at 13:10
5
Solved
I would like to design a family tree on my website. How can this be done with jQuery or Ajax? Any animated examples out there?
Fin asked 10/8, 2010 at 23:43
2
Solved
Suppose I have the below code in my familyTree.pl file:
male(tom).
male(bob).
female(lisa).
female(emily).
parent(tom, bob).
parent(lisa, bob).
morethanfriends(emily, bob).
father(X,Y) :- male...
Downe asked 23/12, 2010 at 10:49
6
Solved
I would like to be able to calculate the family relationship between two individuals in a family tree, given the following data schema (simplified from my actual data schema, only showing columns t...
Darrin asked 30/6, 2009 at 13:24
5
Solved
I'm following this guide on how to make a family tree using only CSS3. But I can't really get my head around how to make a marriage.
To clarify:
What the codes does now is this:
what i want to a...
Nerves asked 21/8, 2012 at 9:20
3
I am trying to create a family tree like structure in android. I am using canvas to draw rectangle and line for family members names and connecting line.
I am drawing rectangle and line by the fol...
Bergama asked 11/9, 2016 at 10:55
5
Solved
I want to generate this:
With this data structure (ids are random, btw not sequential):
var tree = [
{ "id": 1, "name": "Me", "dob": "1988", "children": [4], "partners" : [2,3], root:true, lev...
Cathrine asked 31/12, 2015 at 1:25
3
Solved
I'm creating an interactive family tree creator, unlike more simpler versions which are simple pedigree charts/trees.
The requirements for mine (based on familyecho.com) are:
multiple partners ...
Selmner asked 1/12, 2015 at 3:19
1
Solved
I have a family tree from Cyril's amazing answer but I'm trying to figure out how to adjust it to support multiple partners. In this case, I added a "Mistress" node and am trying to denote that "Mi...
Allergist asked 3/12, 2015 at 22:46
1
There are a ton of family tree apps out there, but for some reason I cannot find one example of how to create one for an Android application. Do I use canvas, is there a chart library?
My basic re...
Echinus asked 27/2, 2014 at 5:4
3
Solved
I need to build a family tree in php and MySQL. I'm pretty surprised at the lack of open source customizable html family tree-building software there is out there, but I digress. I have spent a lot...
Mulberry asked 24/4, 2011 at 23:30
2
I'm looking for a way to represent a family tree in PHP. This means that children will need to inherit from two (or more) parents.
Here are the requirements:
1, 2, or more parents
Bonus points i...
Iquitos asked 21/7, 2010 at 23:24
18
Solved
I am the developer of some family tree software (written in C++ and Qt). I had no problems until one of my customers mailed me a bug report. The problem is that the customer has two children ...
Teno asked 28/5, 2011 at 18:39
9
Solved
I'm trying to implement something similar to what http://www.ancestry.com has, but I'm not sure how to draw the lines.
Here is a rough ascii sketch of what I want to do:
+----GrDAD1
|
+----DAD...
Famulus asked 8/11, 2009 at 2:10
5
Solved
Is there an existing PHP, Javascript, or even command line tool that can build a family tree in HTML (preferably) or at the very least create an image for it? Multiple parents are a requireme...
Polyclinic asked 12/4, 2011 at 17:20
6
Solved
I am trying to draw a family tree with Dot and GraphViz.
This is what I currently have:
# just graph set-up
digraph simpsons {
ratio = "auto"
mincross = 2.0
# draw some nodes
"Abraham" [shape=b...
Lath asked 16/2, 2010 at 9:19
2
I am creating Family Tree feature for my web app with HTML5 requirements. I already searched and found some JS samples, but I haven't find any that fit with my requirements. I already tried J...
Involucre asked 11/4, 2013 at 8:34
1
Solved
I am looking for JavaScript library that can perform the following tasks:
Dynamically generate tree (graph-node) (hierarchy structure of data)
Can connect nodes together
Zoom option for graph are...
Marabout asked 30/7, 2012 at 3:12
9
Solved
I'm working on putting together a problem set for an intro-level CS course and came up with a question that, on the surface, seems very simple:
You are given a list of people with the names of t...
Chickie asked 23/5, 2011 at 19:43
3
Solved
I am creating a family tree program in Java, or at least trying to. I have developed several classes:
Person - getters and setter for name
gender age etc
FamilyMember - extends Person getters
and...
Colza asked 26/12, 2010 at 18:52
5
Solved
Let's say I have an acyclic directed graph such as a family "tree" (not really a tree since a child has 2 parents). I want to place a representation of this graph in a relational database so that i...
Gessner asked 20/9, 2010 at 20:56
1
I'm searching for tutorials on how to draw a family tree with WPF (and C#).
Something like http://www.myheritage.nl/FP/family-tree.php?s=65040841 or Family.Show but for a complete beginner. ...
Lepanto asked 25/7, 2009 at 17:49
3
I have a programming assignment in Perl that requires me to do the following:
Creates a table in a mySQL database, and inserts these records into it:
Loads the data from the table into an array o...
Reformation asked 9/7, 2009 at 21:12
1 Next >
© 2022 - 2024 — McMap. All rights reserved.