{"id":37133664,"url":"https://github.com/rafaelespinoza/ged","last_synced_at":"2026-01-14T15:36:12.701Z","repository":{"id":202980212,"uuid":"707513118","full_name":"rafaelespinoza/ged","owner":"rafaelespinoza","description":"Tooling for genealogical data","archived":false,"fork":false,"pushed_at":"2025-11-11T23:46:07.000Z","size":166,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-12T01:06:31.542Z","etag":null,"topics":["gedcom","genealogy"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rafaelespinoza.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-10-20T04:14:22.000Z","updated_at":"2025-11-11T23:46:01.000Z","dependencies_parsed_at":"2023-10-26T04:26:06.713Z","dependency_job_id":"33d2b16a-ac23-434f-8b9c-b9c62ebfb196","html_url":"https://github.com/rafaelespinoza/ged","commit_stats":null,"previous_names":["rafaelespinoza/ged"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rafaelespinoza/ged","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelespinoza%2Fged","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelespinoza%2Fged/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelespinoza%2Fged/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelespinoza%2Fged/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rafaelespinoza","download_url":"https://codeload.github.com/rafaelespinoza/ged/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rafaelespinoza%2Fged/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28424374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gedcom","genealogy"],"created_at":"2026-01-14T15:36:12.054Z","updated_at":"2026-01-14T15:36:12.690Z","avatar_url":"https://github.com/rafaelespinoza.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ged\n\n[![build](https://github.com/rafaelespinoza/ged/actions/workflows/build.yaml/badge.svg)](https://github.com/rafaelespinoza/ged/actions/workflows/build.yaml)\n\ngenealogical data tooling\n\n## Features\n\n- Ingest [GEDCOM](https://gedcom.io) data, a defacto standard file format spec for genealogical data\n- Calculate relationships between family members via common ancestors\n- View, peruse records in the terminal\n- Draw a family tree from GEDCOM data\n- Structured, leveled logging messages written to standard error\n\n## Getting started\n\nRequired tooling:\n- [golang](https://go.dev), for building the application from source\n- [just](https://just.systems), to streamline code building and other tasks\n\nOptional, but recommended tooling:\n- [bkt](https://github.com/dimo414/bkt), to cache views when interactively exploring data\n- [fzf](https://github.com/junegunn/fzf), to enhance calculating relationships between people\n- [jq](https://jqlang.github.io/jq/manual), view parsed data as JSON\n\nThe justfile defines the most common operations.\n\n```sh\n# list tasks\n$ just\n\n# get, tidy, vendor application dependencies\n$ just mod\n\n# build, run binary\n$ just build\n$ just run\n$ just buildrun\n```\n\n### Operational tasks\n\nTests\n\n```sh\n$ just test\n\n# run tests on a specific package path\n$ just test ./internal/repo/...\n\n# run tests with some flags\n$ just ARGS='-v -count=1 -failfast' test\n\n# run tests on a specific package path, while also specifying flags\n$ just ARGS='-v -run TestFoo' test ./internal/gedcom/...\n```\n\nStatic analysis\n\n```sh\n$ just vet\n```\n\n## Usage\n\nPresumably, you have some of your own GEDCOM data. If you don't, there are\nsamples in `testdata/`. These examples use that testdata.\n\nOptionally, establish a working directory.\n```sh\n$ mkdir /tmp/ged \u0026\u0026 chmod -v 700 /tmp/ged\n```\n\n### draw\n\nTake GEDCOM data as input and output a family tree as an SVG or PNG.\n```sh\n# By default, it renders a SVG\n$ bin/main draw \u003c testdata/simpsons.ged \u003e /tmp/ged/simpsons.svg\n\n# Render a PNG\n$ bin/main draw -output-format=png \u003c testdata/simpsons.ged \u003e /tmp/ged/simpsons.png\n```\nUnder the hood, a [Mermaid flowchart](https://mermaid.js.org/syntax/flowchart.html) is constructed from the GEDCOM data. Then that flowchart is rendered into a standard image format.\n\nAnother output format is the Mermaid flowchart itself. The use case here is for\nany manual edits you may want to do before rendering it again.\n```sh\n$ bin/main draw -output-format=mermaid \u003c testdata/simpsons.ged \u003e /tmp/ged/simpsons.mermaid\n\n# ... manual adjustments to Mermaid flowchart file ...\n\n# to render the manually-modified Mermaid flowchart, just specify the input-format\n$ bin/main draw -input-format=mermaid \u003c /tmp/ged/simpsons.mermaid \u003e /tmp/ged/simpsons.svg\n```\n\n### explore-data \n\n#### relate\n\nCalculate relationship between 2 people.\n\nIf you have [fzf](https://github.com/junegunn/fzf) on your system, then use fuzzy search to select the people.\n```sh\n$ ./explore-data.sh relate testdata/kennedy.ged\n```\n\nIf you don't have fzf or don't want to use it, specify the IDs of the people like so:\n```sh\n$ bin/main explore-data relate -p1 @I0@ -p2 @I10@ \u003c testdata/kennedy.ged\n```\n\n#### show\n\nDisplay details on a person in a simple group sheet view.\n\nIf you have [fzf](https://github.com/junegunn/fzf) on your system, then use fuzzy search to select the people.\n```sh\n$ ./explore-data.sh show testdata/kennedy.ged\n```\n\nIf you don't have fzf or don't want to use it, specify the ID of the person like so:\n```sh\n$ bin/main explore-data show -target-id @I10@ \u003c testdata/kennedy.ged\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafaelespinoza%2Fged","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frafaelespinoza%2Fged","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frafaelespinoza%2Fged/lists"}