As part of a project, I have to include the importing and exporting of GEDCOM files to be inserted/taken out of a database. I am finding it very hard to find how to write the files as there isn't really any tutorials on how they work. Does anyone have any suggestions on what I could do? My project is to create a web application to draw family trees so I will be coding with javascript and PHP. Or if anyone knows any additional software that would help? Thank you.
1
There are 1 answers
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in PHP
- How to add the dynamic new rows from my registration form in my database?
- Issue in payment form gateway
- How to create a facet for WP gridbuilder that displays both parent and child custom fields?
- Function in anonymous Laravel Blade component
- How to change woocomerce or full wordpress currency with value from USD to AUD
- General questions about creating a custom theme Moodle CMS
- How to add logging to an abstract class in php
- error 500 on IIS FastCGI but no clue despite multiple error loggings activated
- Composer installation fails and reverts ./composer.json and ./composer.lock to original content
- How to isolate PHP apps from each other on a local machine(Windows or Linux)?
- Laravel: Using belongsToMany relationship with MongoDB
- window.location.href redirects but is causing problems on the webpage
- Key provided is shorter than 256 bits, only 64 bits provided
- Laravel's whereBetween method not working with two timestamps
- Implementing UUID as primary key in Laravel intermediate table
Related Questions in GEDCOM
- Why does GEDCOM limit lines to 255 characters?
- Turn raw gedcom-format string into structured json
- How do I make correct Gedcom Files?
- How to click capture an image WITHOUT Selenium?
- How do I use a depth as referal/delimater to a flatfile with line numbers as columns?
- Best Method to Combine Gedcom files?
- Writing Data to File then Moving to Desktop
- GEDCOM compatible file output in C#.NET
- How to read a GEDCOM file with Julia?
- "Gedcom file - How to split names and eliminating double places."
- How to draw dictionary in the form a family tree structure?
- How to test this GEDCOM parser?
- Out of memory error when reading and parsing a .ged file into a sqlite database
- How can I tell Vim to fold GEDCOM files?
- How to convert text in ANSEL to UTF-8 in php
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Not sure if this meets the requirements for the project, but the easiest way would be to use a GEDCOM to JSON parser written in Java (it's on Github somewhere), and placing the output as-is in either MongoDB OR Postgres with JSON fields. If you do that you'll have an array of all people, an array of all families, etc that you can iterate through easily!
I would recommend the D3 library for drawing trees. It's tough to learn (I'm still trying to grasp it), but there are examples on bl.ocks.org that you can try to understand or modify to fit your use case. I'm working on a similar project and that's where it's at right now, making the trees. Good luck !