GEDCOM, an acronym for GEnealogical Data COMmunication.
2
votes
2answers
174 views
GEDCOM parser in JavaScript
I have been looking for a GEDCOM parser in JavaScript. Does one exist at the moment? I have found them in many languages but not in JavaScript yet.
3
votes
2answers
121 views
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?
7
votes
1answer
587 views
Produce Delphi Code that will Parse a file with a given BNF format
Is there parser code or a parser component for Delphi or a program that will accept BNF (Backus-Naur Form) notation as input and produce Delphi (or pascal) code to do the parsing?
The reason for this ...
3
votes
1answer
341 views
Python simplepyged graphical representation of family trees
Does anyone know a way to use the python package simplepyged (for parsing gedcom files) for graphical representation of family trees? XY-Pic? Matlibplot? pictex?
I appreciate any help!
Thanks!
6
votes
5answers
364 views
GEDCOM to HTML and RDF
I was wondering if anyone knew of an application that would take a GEDCOM genealogy file and convert it to HTML format for viewing and publishing on the web. I'd like to have separate html files for ...
2
votes
1answer
531 views
Read Gedcom file and store in Database
I want to read a Gedcom file and store in sql server .
GEDCOM is a file format which allows genealogy files to be shared between different genealogy software applications. GEDCOM stands for ...
0
votes
3answers
666 views
What database structure to use to store GEDCOM information?
What database structure to use to store GEDCOM information?
0
votes
2answers
358 views
Using a Python GEDCOM parser: Receiving bad output (gedcom.Element instance at 0x00…)
I'm new to Python, and I can say off the bat my programming experience is nominal compared to many of you. Brace yourselves :)
I have 2 files. A GEDCOM parser written in Python that I found from a ...
7
votes
3answers
394 views
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 ...
1
vote
1answer
116 views
how to do gedcom import with minimal database roundtrip. what is best practice for this kind of development
In My current application,
I need to import users from gedcom file.
these users may exist in my registered users or i need to create one registered user for the same.
now gedcom file contain s many ...
4
votes
2answers
7k views
Response.TransmitFile and delete it after transmission
i have to implement GEDCOM export in my site.
my .net code created one file at server when export to gedcom clicked.
then i need to download it to client from server as well as user should be asked to ...
12
votes
4answers
2k views
Is there a GEDCOM parser written in Python?
GEDCOM is a standard for exchanging genealogical data.
I've found parsers written in
C
perl
Ruby
and even Factor
but none so far written in Python. The closest I've come is the file ...
3
votes
3answers
2k views
Horizontal Database and Vertical Database
I am working on a social networking site with a family tree that is GEDCOM-compliant. We need to decide if we should use a horizontal or vertical database structure for User profiles. So, I would like ...
2
votes
2answers
448 views
GEDCOM File import export from web application
i am working on a social networking site having facility to create Family Tree.
there are so many sites which supports family tree import/export from GEDCOM File.
i have to implement family tree with ...
3
votes
2answers
151 views
Social networking website- usage of GEDCOM in it
i have to develop one social networking website. i have to follow gedcom standards for that. someone told me you have to take care at time of database designing if you are going to use GEDCOM. so ...
4
votes
3answers
904 views
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 ...
2
votes
3answers
477 views
Please critique my class
I've taken a few school classes along time ago on and to be honest i never really understood the concept of classes. I recently "got back on the horse" and have been trying to find some real world ...
1
vote
4answers
522 views
Best way to Find which cell of string array contins text
I have a block of text that im taking from a Gedcom (Here and Here) File
The text is flat and basically broken into "nodes"
I am splitting each node on the \r char and thus subdividing it into each ...
10
votes
4answers
7k views
Reading a line from a streamreader without consuming?
Is there a way to read ahead one line to test if the next line contains specific tag data?
I'm dealing with a format that has a start tag but no end tag.
I would like to read a line add it to a ...
3
votes
5answers
2k views
Gedcom Reader for C#
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 ...