Skip to content

Instantly share code, notes, and snippets.

@tingletech
Created September 11, 2010 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tingletech/575312 to your computer and use it in GitHub Desktop.
Save tingletech/575312 to your computer and use it in GitHub Desktop.
// javascript to hold network link data for historical social network analysis
// nodes are IDed by MD5 checksum of AACR2 identity from EAC record
var identity_links = {
identity: 'Washington, George, 1732-1799.',
birth: '1732, Feb. 22', // use julian dates?
death: '1799, Dec. 14',
// any other info needed on the node
correspondedWith: [
'Franklin, Benjamin, 1706-1790.',
'Adams, John, 1735-1826.',
'Adams, Samuel, 1722-1803.',
'Bland, Theodorick, 1742-1790.',
'Boucher, Jonathan, 1738-1804.'
// list the rest of the links here
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment