Tagged Questions

GEDCOM, an acronym for GEnealogical Data COMmunication.

learn more… | top users | synonyms

10
votes
4answers
977 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 ...
6
votes
2answers
215 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 ...
6
votes
4answers
3k 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 ...
5
votes
4answers
129 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 ...
3
votes
2answers
113 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 ...
3
votes
3answers
546 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
662 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
282 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 ...
2
votes
3answers
401 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 ...
2
votes
5answers
1k 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 ...
1
vote
1answer
85 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!
1
vote
1answer
74 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 ...
1
vote
2answers
2k 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 ...
1
vote
4answers
301 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 ...
0
votes
1answer
189 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
2answers
305 views

What database structure to use to store GEDCOM information?

What database structure to use to store GEDCOM information?
0
votes
2answers
220 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 ...