A hobby project to explore the relationships of the ill-fated Donner Party through the medium of a graph.
To learn myself how to use Neo4j.
All data are in the CSV files. The single CQL file pulls them all in and creates nodes and links.
For more information on loading CSV files into Neo4j, see Importing CSV Data into Neo4j.
Person
Group
Location
State
Event
(Location)-[:IS_IN]->(State)
(Person)-[:MARRIED {ordinality: int}]->(Person)
(Person)-[:IS_SIBLING_OF]->(Person)
(Person)-[:IS_CHILD_OF]->(Person)
(Person)-[:IS_IN]->(Event)
(Person)-[:IS_IN]->(Group)
(Person)-[:BORN_IN]->(Location)
(Person)-[:DIED_AT]->(Location)
(Event)-[:IS_IN]->(Location)
Scripts are tested on a Neo4j v4.1 instance with
cypher.lenient_create_relationship=true
.
- New Light on the Donner Party by Kristin Johnson, librarian at Salt Lake Community College and historian for the Donner Party Archaeology Project.
- Wikipedia of course.