├── .gitattributes
├── .gitignore
├── README.md
├── challenges
├── Cabinet_Of_Curiosities
│ ├── README.md
│ ├── data
│ │ └── README.md
│ ├── documents
│ │ └── README.md
│ └── images
│ │ ├── CAE_Sweater.jpg
│ │ ├── README.md
│ │ ├── Staff_of_Third_Asiatic_Expedition.png
│ │ ├── Staff_of_Third_Asiatic_Expedition_Mongolia_1925_Shackelford_James_B._id_410730.jpg
│ │ ├── Staff_of_Third_Asiatic_Expedition_Mongolia_1925_Shackelford_James_B._id_410730.png
│ │ └── b11863985_3_Gessners_Historiae_animalium_AMNH_Library.jpg
├── Expedition_Tracker
│ ├── README.md
│ ├── data
│ │ ├── Expeditions.csv
│ │ └── README.md
│ ├── documents
│ │ ├── README.md
│ │ ├── amnh_expeditionTrackerExpedition.xml
│ │ └── amnh_expeditionTrackerPerson.xml
│ └── images
│ │ └── README.md
├── Find_The_Hidden_Object
│ ├── data
│ │ ├── Find_the_Hidden_Object_Data_Set.csv
│ │ ├── README.md
│ │ └── anthro_web_public.zip
│ ├── documents
│ │ └── README.md
│ └── images
│ │ ├── README.md
│ │ ├── bandolier.png
│ │ ├── ftho_example.png
│ │ └── ftho_example_0.png
├── Mine_For_Specimens
│ ├── README.md
│ ├── data
│ │ ├── CatalogNos.zip
│ │ └── README.md
│ ├── documents
│ │ ├── README.md
│ │ └── schema for Bibliography module.txt
│ └── images
│ │ └── README.md
├── Museum_Time_Machine
│ ├── README.md
│ ├── data
│ │ ├── PH_all_floors.csv
│ │ └── README.md
│ ├── documents
│ │ └── README.md
│ └── images
│ │ ├── 324747_FloorPlan_1880.jpg
│ │ ├── AMNH_siteplan_with_sections_hack_bw.png
│ │ ├── FloorPlans1911-1929.zip
│ │ ├── FloorPlans1930-1939.zip
│ │ ├── FloorPlans1943-1953.zip
│ │ ├── FloorPlans_1956-2016.zip
│ │ └── README.md
├── README.md
├── Sample cards.zip
├── Snippet_Search
│ ├── README.md
│ ├── data
│ │ └── README.md
│ ├── documents
│ │ └── README.md
│ └── images
│ │ ├── README.md
│ │ └── snippet.png
└── The_Evolution_Of_Darwins_Notes
│ ├── README.md
│ ├── data
│ ├── NTFS_for_Mac.dmg
│ └── README.md
│ ├── documents
│ ├── README.md
│ ├── hackathon_dmp_v3.pdf
│ └── hackathon_dmp_v3.pptx
│ └── images
│ ├── 19CE6B175B1C7835A27824B50F404E8E.png
│ ├── 317274007C85E474116BC0235ACFA045.jpeg
│ ├── 37D7C9A6FA3A8C04EDC0F1F1DEB05E53.jpeg
│ ├── 3B9A19849A147CED523D6B851AD6DEC7.jpeg
│ ├── 46AF8F1AFA662137129B70B9A2D23147.jpeg
│ ├── 4B7ED03DC21471B11A26BE387B245DAF.jpeg
│ ├── 6C7AD472FDE6AA836567C7A934374B46.jpeg
│ ├── 7762508C0D949A16312DF908725F166C.jpeg
│ ├── AF17C98A5CF20230C8DCDBB302F0FF1D.jpeg
│ ├── C62A6269376764B3AB87852396E7EBD5.jpeg
│ ├── F63E94107F4B93E4603FD7968CA7506F.jpeg
│ ├── README.md
│ ├── darwin_study.png
│ └── darwin_study_sm.png
├── data
└── README.md
├── documents
├── README.md
├── amnh_infographic20170111.pdf
├── master_eac_recordId.xlsx
└── metro2016_amnh_speakernotes (2).pptx
└── images
├── Ornith_00073_1a.jpg
├── README.md
├── databases.png
├── expeditions.png
├── flickr.png
├── hack-the-stacks_hackathon-2016_body_large.png
├── henry_fairfield_osborn_Google_Search.png
├── nasa.png
├── snac_whitneyVisual.png
└── winners.jpg
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.zip filter=lfs diff=lfs merge=lfs -text
2 | *.avi filter=lfs diff=lfs merge=lfs -text
3 | *.jpg filter=lfs diff=lfs merge=lfs -text
4 | *.psd filter=lfs diff=lfs merge=lfs -text
5 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Hack The Stacks
2 | Repository for AMNH's 2016 Hackathon, Hack The Stacks!
3 |
4 | The root directory of this repository contains data, documents, and images that are general purpose and could pertain to multiple challenges. Challenge specific data, documents, and images can be found under the challenges directory in a subdirectory with the same name as that challenge. Cloning this repository will give you local copies of all source files involved with all challenges that are not available on hard drives at the event (see organizers or librarians for details).
5 |
6 | Check out this year's [hackathon infographic](https://github.com/amnh/HackTheStacks/blob/master/documents/amnh_infographic20170111.pdf) and see the [2015 infographic](https://github.com/amnh/HacktheDinos/blob/master/documents/htd_infographic.pdf)!
7 |
8 | Don't forget to check social media for hashtag [#HacktheStacks](https://twitter.com/search?f=tweets&vertical=default&q=hackthestacks&src=typd)!
9 |
10 | See the [**wiki**](https://github.com/amnh/HacktheStacks/wiki) for all the details!
11 |
12 | Looking for hackathon project repositories? Go to the [HackTheStacks organization page](https://github.com/HackTheStacks)
13 |
14 | ___
15 |
16 | ## American Museum of Natural History - Hack the Stacks Code of Conduct
17 |
18 | **Following the Rules.** By participating in Hack the Stacks, you agree to comply with this Code of Conduct, the Museum’s policy on Acceptable Use of Computing Resources (which you may read upon connecting to the Museum wireless network), Museum policies and procedures regarding the safety and security of its visitors, guests, facilities and collections, and the direction of Museum staff and volunteers while you are at the event. Participants who do not comply with any of the above may be asked to leave the event and may be prohibited from participating in similar future events at the Museum.
19 |
20 | **Filming and Photography.** Hack the Stacks may be filmed or photographed by the Museum for its non-profit educational and fundraising purposes including for promoting Museum events and Public Programs, in any form of media, anywhere. In addition, invited members of the press may be present at the event and may also film or photograph the event and the participants. By participating in Hack the Stacks, you agree to be filmed or photographed for these purposes.
21 |
22 | **Participants' Creations.** The purpose of Hack the Stacks is to showcase the role computer science plays in scientific research and to develop open-source tools and apps for the advancement of science. The projects created by Hack the Stacks participants will use publicly-available Museum databases and other open-source resources. Participants agree to publish all works created at Hack the Stacks in publicly-available databases or websites and to permit others to access and use these works on a royalty-free, non-commercial basis. If you wish to make commercially-viable solutions, please consider attending another event. Participants additionally agree not to disrupt other participants' work at Hack the Stacks, or use content being created by other participants without express consent.
23 |
24 | You agree that any original work you create is freely available without restriction or is licensed as open source as defined by the [Open Source Initiative](http://www.opensource.org/docs/osd). If you do not specify a specific OSI compliant license in your repository, your works will be considered released under [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
25 |
26 | **No Self-Promotion.** Hack the Stacks is a creative and educational event, and is not a forum for business development or promotion. Participants may not engage in promotion of themselves or their businesses, including networking unrelated to Hack the Stacks challenges, distributing printed materials or branded merchandise of any kind, pitching a business or idea that is unrelated to Hack the Stacks challenges, or any form of transactional or sales activity, whether or not money is involved.
27 |
28 | **No Harassment.** The Museum does not tolerate discrimination or harassment on the basis of sex, race, color, religion, age, disability, sexual orientation, national or ethnic origin, or status as a special disabled veteran or veteran of the Vietnam era. Sexual language and imagery, or any other potentially harassing material or behavior including but not limited to verbal comments, intimidation, inappropriate physical contact or unwelcome sexual attention, are not permitted at Hack the Stacks and may not be incorporated into the demos or presentations. Participants asked to stop any harassing behavior are expected to comply immediately and to not repeat their behavior, or may be required to leave Hack the Stacks, in the Museum's sole discretion. If a participant is being harassed, notices that someone else is being harassed, or has any other concerns, he or she should immediately contact a member of Hack the Stacks staff, who will promptly address any such complaints.
29 |
30 | **No Alcohol, Etc.** No alcohol or other controlled or illegal substances of any kind will be allowed at Hack the Stacks (excluding alcohol served as part of the event or medications taken at the direction of a physician). Possession of any such substances will result in immediate expulsion from Hack the Stacks, and any participant who appears to be intoxicated or under the influence of any such substance will be asked to leave the event immediately for the health and safety of all participants.
31 |
32 | **Only participants who are 18+ will be able to spend the night at the museum.** Applications for participants under 18 are limited to the BridgeUp:STEM Brown Scholars only. All minors will be asked to leave at 9:00 p.m. on Saturday night and can return at 9:00 a.m. Sunday morning.
33 |
34 | **Please Contact Us Immediately Whenever You Need Assistance.** Museum staff and volunteers are available to help participants with any issues or concerns during the event.
35 |
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/data/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/documents/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/images/CAE_Sweater.jpg:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:d542b8c6501f9fd2dd1d83001c274ce33e71b05ec3c3a760c732626d888c50a0
3 | size 546258
4 |
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/images/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/images/Staff_of_Third_Asiatic_Expedition.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Cabinet_Of_Curiosities/images/Staff_of_Third_Asiatic_Expedition.png
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/images/Staff_of_Third_Asiatic_Expedition_Mongolia_1925_Shackelford_James_B._id_410730.jpg:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:8d7ebbbfcb7019d1776310d4211be4cee7f32b95731211757168f3ef9fd2daef
3 | size 372909
4 |
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/images/Staff_of_Third_Asiatic_Expedition_Mongolia_1925_Shackelford_James_B._id_410730.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Cabinet_Of_Curiosities/images/Staff_of_Third_Asiatic_Expedition_Mongolia_1925_Shackelford_James_B._id_410730.png
--------------------------------------------------------------------------------
/challenges/Cabinet_Of_Curiosities/images/b11863985_3_Gessners_Historiae_animalium_AMNH_Library.jpg:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:782e06548c145308f161d6435e30a6e849eaf3c443e8235ebf3d36de37a56fa4
3 | size 383673
4 |
--------------------------------------------------------------------------------
/challenges/Expedition_Tracker/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Expedition_Tracker/data/Expeditions.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Expedition_Tracker/data/Expeditions.csv
--------------------------------------------------------------------------------
/challenges/Expedition_Tracker/data/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Expedition_Tracker/documents/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Expedition_Tracker/documents/amnh_expeditionTrackerExpedition.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 | amnhc_6000001
9 | new
10 |
11 | OCLC-YAM
12 | American Museum of Natural History
13 |
14 |
15 | English
16 |
17 |
18 |
19 |
20 | created
21 | 20 November 2016
22 | machine
23 | [Expedition Tracker]
24 | [AMNH Hackathon demo.]
25 |
26 |
27 |
28 |
29 |
30 | corporateBody
31 |
32 | [Expedition Name]
33 |
34 |
35 |
36 |
37 | [Date]
38 |
39 |
40 |
41 | [Geographic Location]
42 |
43 |
44 |
45 | [Notes]
46 |
47 |
48 |
49 |
50 | [Creator Name]
51 |
52 |
53 | [Title of Field Resource]
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/challenges/Expedition_Tracker/documents/amnh_expeditionTrackerPerson.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 | amnhp_6000001
9 | new
10 |
11 | OCLC-YAM
12 | American Museum of Natural History
13 |
14 |
15 | English
16 |
17 |
18 |
19 |
20 | created
21 | 20 November 2016
22 | machine
23 | [Expedition Tracker]
24 | AMNH Hackathon demo.
25 |
26 |
27 |
28 |
29 |
30 | person
31 |
32 | [Creator Name]
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 | [Expedition Name]
43 |
44 |
45 | [Title of field resource]
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/challenges/Expedition_Tracker/images/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/data/Find_the_Hidden_Object_Data_Set.csv:
--------------------------------------------------------------------------------
1 | Library DSC Record URL http://images.library.amnh.org/digital/ ,Library DSC Image Number,Coordinating Anthropology Record Specimen Number,Coordinating Anthropology Specimen Record URL https://anthro.amnh.org/collections
2 | http://images.library.amnh.org/digital/item/7322,7322,16.1/1795,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=16%2E1%2F%201795
3 | http://images.library.amnh.org/digital/item/K9507 ,K9507,16/578,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=16%20%20%2F%20%20578
4 | http://images.library.amnh.org/digital/item/3549 ,3549,50.1/1408,https://anthro.amnh.org/anthropology/databases/common/public_access.cfm?database=mixdata&object_list=50%2F5286&buttonSubmit=Search
5 | http://images.library.amnh.org/digital/item/2702 ,2702,50.1/7729,not in database?
6 | http://images.library.amnh.org/digital/item/6680 ,6680,50.2/4340,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=50%2E2%2F%204340
7 | http://images.library.amnh.org/digital/item/2579,2759,50.2/6539,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=50%2E2%2F%206539
8 | http://images.library.amnh.org/digital/item/7048,7048,50/4573,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=50%20%20%2F%204573
9 | http://images.library.amnh.org/digital/item/2648 ,2648,50/5286,https://anthro.amnh.org/anthropology/databases/common/public_access.cfm?database=mixdata&object_list=50%2F5286&buttonSubmit=Search
10 | http://images.library.amnh.org/digital/item/7034 ,7034,50/7871,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=50%20%20%2F%207871
11 | http://images.library.amnh.org/digital/item/3206,3206,Unknown,
12 | http://images.library.amnh.org/digital/item/K13946 ,K13946,Unknown,
13 | http://images.library.amnh.org/digital/item/K13948 ,K13948,Unknown,
14 | http://images.library.amnh.org/digital/item/K13950 ,K13950,Unknown,
15 | http://images.library.amnh.org/digital/item/42342 ,42342,Unknown,
16 | http://images.library.amnh.org/digital/item/K9526 ,K9526,Unknown,
17 | http://images.library.amnh.org/digital/item/11198 ,11198,Unknown,
18 | http://images.library.amnh.org/digital/item/1955 ,1955,Unknown,
19 | http://images.library.amnh.org/digital/item/K12456 ,K12456,Unknown,
20 | http://images.library.amnh.org/digital/item/5706 ,5706,Unknown,
21 | ,,,
22 | "Jesup North Pacific Expedition: Library field images linked with collected objects. Can we create these links on DSC? Can we create these links in other sets, such as with the Lumholtz Collection images and items from the Indians of Mexico or Fran Boas and Northwest Coast Peoples?",,,
23 | https://anthro.amnh.org/jesup_photos ,,,
24 | http://images.library.amnh.org/digital/items/show/30375,1427,70 / 2793 and multiple others shown in record associated with costume,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=70%20%20%2F%202793
25 | http://images.library.amnh.org/digital/item/1610 ,1610, 70 / 5165 and multiple others shown in record associated with costume,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=70%20%20%2F%205165
26 | http://images.library.amnh.org/digital/items/show/30370 ,1611,70 / 5163,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=70%20%20%2F%205163&from_anthro=yes
27 | http://images.library.amnh.org/digital/item/1450 ,1450,Unknown,
28 | http://images.library.amnh.org/digital/item/41652 ,41652,Unknown,
29 | http://images.library.amnh.org/digital/item/42421,42421,65 / 1298,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=65%20%20%2F%201298
30 | http://images.library.amnh.org/digital/item/43199 ,43199,Huichol belts? Suggested search,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=65%20%20%2F%20%20192
31 | http://images.library.amnh.org/digital/item/42418,42418,65 / 1536,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=65%20%20%2F%201536
32 | http://images.library.amnh.org/digital/item/42420 ,42420,65 / 1849,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=65%20%20%2F%201849
33 | http://images.library.amnh.org/digital/item/CL1365 ,CL1365,Unknown,
34 | http://images.library.amnh.org/digital/item/43136 ,CL43136,Unknown?,
35 | http://images.library.amnh.org/digital/item/CL1305 ,CL1305,Unknown,
36 | http://images.library.amnh.org/digital/item/CLG003 ,CLG003,Unknown,
37 | http://images.library.amnh.org/digital/item/CLG006 ,CLG006,Unknown,
38 | http://images.library.amnh.org/digital/item/CLG015 ,CLG015,Unknown,
39 | http://images.library.amnh.org/digital/item/CLG018 ,CLG018,Unknown,
40 | Unknown,Unknown,65 / 1031 ,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=65%20%20%2F%201031&from_anthro=yes
41 | http://images.library.amnh.org/digital/item/42328,42328,16 / 966,https://anthro.amnh.org/anthropology/databases/common/image_dup.cfm?catno=16%20%20%2F%20%20966
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/data/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/data/anthro_web_public.zip:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:a9a5832e7ded1ea8e50babe2483d47495f3983f648fb821bbe355061da512bdc
3 | size 8532759
4 |
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/documents/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/images/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/images/bandolier.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Find_The_Hidden_Object/images/bandolier.png
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/images/ftho_example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Find_The_Hidden_Object/images/ftho_example.png
--------------------------------------------------------------------------------
/challenges/Find_The_Hidden_Object/images/ftho_example_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Find_The_Hidden_Object/images/ftho_example_0.png
--------------------------------------------------------------------------------
/challenges/Mine_For_Specimens/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Mine_For_Specimens/data/CatalogNos.zip:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:ff0a7338a99500b4c06da0945429766dd5ed968b307867c77439def63add6dd5
3 | size 6476943
4 |
--------------------------------------------------------------------------------
/challenges/Mine_For_Specimens/data/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Mine_For_Specimens/documents/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Mine_For_Specimens/documents/schema for Bibliography module.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Mine_For_Specimens/documents/schema for Bibliography module.txt
--------------------------------------------------------------------------------
/challenges/Mine_For_Specimens/images/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/data/PH_all_floors.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Museum_Time_Machine/data/PH_all_floors.csv
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/data/README.md:
--------------------------------------------------------------------------------
1 | ## AMNH Permanent Halls Master List with Variant Names
2 | > ### 2016 March 29
3 |
4 | Original data taken from in Valerie Thaler's spread sheet of Hall
5 | names found in AMNH publications. More information about this data set
6 | can be found at:
7 | http://images.library.amnh.org/hiddencollections/resources/amnh-permanent-halls/
8 |
9 | ### History
10 |
11 | The AMNH Library received funding from the Council on Library and
12 | Information Resources' (CLIR) Hidden Collection grant (2012) to create
13 | in-depth finding aids for expeditionary archives collections. The
14 | project also resulted in brief histories of these expeditions and
15 | biographies of those who participated in them to provide contextual
16 | information to support the finding aids and to provide general
17 | information. The data for the contextual records are encoded in the
18 | metadata standard: [Encoded Archival Context -- Corporate Bodies,
19 | Persons and Families (EAC-CPF)](http://eac.staatsbibliothek-berlin.de/). The project team chose to use EAC-CPF
20 | in order to reconnect collections held in different AMNH Departments
21 | (effectively collocating materials that originated from the same
22 | expedition), to reduce redundant work by utilizing the
23 | biographical/historical notes from one source for finding aids, and to
24 | increase resource discovery by leveraging linked data.
25 |
26 | Though the project focused on persons and expeditions for EAC-CPF
27 | description, we were able to set up additional entity lists for AMNH
28 | Departments, Temporary Exhibits and Permanent Halls. Thanks to the
29 | help of past volunteers (namely, Valerie Thaler for Permanent Halls
30 | and Blosson Gerenter for Temporary Exhibits), the Project Metadata
31 | Analyst (Iris Lee) reconfigured the data sets to map to EAC data
32 | fields. Our current volunteers, Dale Dancis and Roxanne Edwards, are
33 | adding descriptive, cited summaries and related persons, institutions
34 | and departments to the Temporary Exhibits data set. Iris has edited
35 | the format of Valerie's original Permanent Halls spreadsheet and added
36 | controlled names for each hall.
37 |
38 | ### What's In This Spreadsheet
39 |
40 | The CSV labeled "PH_all_floors" consists of data for 103 halls,
41 | including variant names used in AMNH's General Guides, Official
42 | Guides, and other AMNH publications. Also included are dates of use
43 | for the variant names, the floor and section for which the hall was or
44 | is currently located, a status of the hall (such as "historic" or
45 | "current"), a controlled name for each hall to promote consistency and
46 | interoperability with other Departments, a unique identifier for each
47 | hall, and a notes field that contains information about the
48 | construction, opening, or contents of the hall.
49 |
50 | ### Note About Physical Location Within the Museum
51 |
52 | Google maps has assigned latitute and longitude values to individual
53 | halls. It may be possible to map a geographic location to each hall in
54 | cpfDescription > description > place > placeEntry. Should this be
55 | available at the time of ingest into [xEAC](https://github.com/amnh/HacktheStacks/wiki/Online-Resources-And-Data-Sets#amnh-library-authorities-xeac), Columns G, H, I, and J can
56 | be concatenated into a sentence for a descriptiveNote under
57 | placeEntry. Example: [Hall name] location on Floor [1], Section
58 | [1]. This may be harder for halls that have moved over time. Need to
59 | review options here.
60 |
61 | _Suggestions_
62 |
63 | * Use Data > Filter to isolate a section of data to search
64 | * Filter can also perform keyword searches on a single column
65 | * Sort data according to need (currently sorted alphabetically by Control name, source, floor)
66 |
67 | ---
68 |
69 | ### Index of Data Fields
70 |
71 | COLUMN A = Record identifier (unique id)
72 | COLUMN B = Status of the hall (current, moved, historic, reconstructed)
73 | COLUMN C = Control name (assigned by Iris with Diana Shih's consultation)
74 | COLUMN D = Short name (for reference)
75 | COLUMN E = Names used in AMNH publications (variant names found in General Guides and other AMNH publications)
76 | COLUMN F = Use dates for the name in column E (years listed separately, not as ranges)
77 | COLUMN G = Floor (values = 0-5)
78 | COLUMN H = Section (building number)
79 | COLUMN I = Section name
80 | COLUMN J = Hall number
81 | COLUMN K = Source (mostly abbreviated publications cited with year and page number: GG = General Guide, AR = Annual Report, OG = Official Guide)
82 | COLUMN L = Notes
83 |
84 | ---
85 |
86 | ### Data Fields mapped to EAC-CPF
87 |
88 | COLUMN A = control > recordId
89 | COLUMN B = cpfDescription > description > biogHist > p
90 | COLUMN C = cpfDescription > identity > nameEntry > part (with authorizedForm="amnhopac")
91 | COLUMN D = no map
92 | COLUMN E = cpfDescription > identity > nameEntry > part [if COLUMN L includes "amnhopac", then @authorizedForm="amnhopac"]
93 | COLUMN F = cpfDescription > identity > nameEntry > [part from COLUMN E] > useDates (multiple values separated by comma)
94 | COLUMN G = locally defined field or ["Floor"] cpfDescription > description > biogHist > p
95 | COLUMN H = locally defined field or ["Section"] cpfDescription > description > biogHist > p
96 | COLUMN I = locally defined field or ["Section name"] cpfDescription > description > biogHist > p
97 | COLUMN J = locally defined field or ["Hall number"] cpfDescription > description > biogHist > p
98 | COLUMN K = control > source > sourceEntry (multiple values separated by semicolon)
99 | COLUMN L = cpfDescription > description > bioghist > p
100 |
101 | ---
102 |
103 |
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/documents/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/images/324747_FloorPlan_1880.jpg:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:069aa8a3fc07c60cc9790f886bf466c701349b51f96ef0d64a50b07e48f80f19
3 | size 393560
4 |
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/images/AMNH_siteplan_with_sections_hack_bw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Museum_Time_Machine/images/AMNH_siteplan_with_sections_hack_bw.png
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/images/FloorPlans1911-1929.zip:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:ee7bbcbaae3c41461b4383ce4d35c7eca210a6810c5ccac937ea1a5dbd9d37c6
3 | size 9895361
4 |
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/images/FloorPlans1930-1939.zip:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:96ef75c3340424e59a0f2f011e9a229118f408262e346cb60968484d23ab51a5
3 | size 7172501
4 |
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/images/FloorPlans1943-1953.zip:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:b34d2fe835fbe1fc6e780e1723063b08af1c22dd299a5be9447741048c2fc103
3 | size 23977073
4 |
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/images/FloorPlans_1956-2016.zip:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:cb8db18cab1456191531595180e4260bbdc9239292a92527dd91dcedb669a68a
3 | size 20369437
4 |
--------------------------------------------------------------------------------
/challenges/Museum_Time_Machine/images/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Sample cards.zip:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:2d730504d0c85189e08fd06ff52a4c55e3fa836e3c7d5712ea9ba2a6a658e348
3 | size 5102191
4 |
--------------------------------------------------------------------------------
/challenges/Snippet_Search/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Snippet_Search/data/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Snippet_Search/documents/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Snippet_Search/images/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/challenges/Snippet_Search/images/snippet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/Snippet_Search/images/snippet.png
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/data/NTFS_for_Mac.dmg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/data/NTFS_for_Mac.dmg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/data/README.md:
--------------------------------------------------------------------------------
1 | If you're using a Mac and need to connect to the hard drive containing images and XML documents, you will need to install the NTFS for Mac software in this directory.
2 |
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/documents/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/documents/hackathon_dmp_v3.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/documents/hackathon_dmp_v3.pdf
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/documents/hackathon_dmp_v3.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/documents/hackathon_dmp_v3.pptx
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/19CE6B175B1C7835A27824B50F404E8E.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/19CE6B175B1C7835A27824B50F404E8E.png
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/317274007C85E474116BC0235ACFA045.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/317274007C85E474116BC0235ACFA045.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/37D7C9A6FA3A8C04EDC0F1F1DEB05E53.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/37D7C9A6FA3A8C04EDC0F1F1DEB05E53.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/3B9A19849A147CED523D6B851AD6DEC7.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/3B9A19849A147CED523D6B851AD6DEC7.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/46AF8F1AFA662137129B70B9A2D23147.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/46AF8F1AFA662137129B70B9A2D23147.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/4B7ED03DC21471B11A26BE387B245DAF.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/4B7ED03DC21471B11A26BE387B245DAF.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/6C7AD472FDE6AA836567C7A934374B46.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/6C7AD472FDE6AA836567C7A934374B46.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/7762508C0D949A16312DF908725F166C.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/7762508C0D949A16312DF908725F166C.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/AF17C98A5CF20230C8DCDBB302F0FF1D.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/AF17C98A5CF20230C8DCDBB302F0FF1D.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/C62A6269376764B3AB87852396E7EBD5.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/C62A6269376764B3AB87852396E7EBD5.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/F63E94107F4B93E4603FD7968CA7506F.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/F63E94107F4B93E4603FD7968CA7506F.jpeg
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/README.md:
--------------------------------------------------------------------------------
1 | This directory contains the files and resources for the Museum Time Machine challenge.
2 |
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/darwin_study.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/darwin_study.png
--------------------------------------------------------------------------------
/challenges/The_Evolution_Of_Darwins_Notes/images/darwin_study_sm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/challenges/The_Evolution_Of_Darwins_Notes/images/darwin_study_sm.png
--------------------------------------------------------------------------------
/data/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/documents/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/documents/amnh_infographic20170111.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/documents/amnh_infographic20170111.pdf
--------------------------------------------------------------------------------
/documents/master_eac_recordId.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/documents/master_eac_recordId.xlsx
--------------------------------------------------------------------------------
/documents/metro2016_amnh_speakernotes (2).pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/documents/metro2016_amnh_speakernotes (2).pptx
--------------------------------------------------------------------------------
/images/Ornith_00073_1a.jpg:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:82c5ec756f71de59f39c0f0c1ec27dafc5c19036e7d554f813531997bf369371
3 | size 69911
4 |
--------------------------------------------------------------------------------
/images/README.md:
--------------------------------------------------------------------------------
1 | Placeholder
--------------------------------------------------------------------------------
/images/databases.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/images/databases.png
--------------------------------------------------------------------------------
/images/expeditions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/images/expeditions.png
--------------------------------------------------------------------------------
/images/flickr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/images/flickr.png
--------------------------------------------------------------------------------
/images/hack-the-stacks_hackathon-2016_body_large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/images/hack-the-stacks_hackathon-2016_body_large.png
--------------------------------------------------------------------------------
/images/henry_fairfield_osborn_Google_Search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/images/henry_fairfield_osborn_Google_Search.png
--------------------------------------------------------------------------------
/images/nasa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/images/nasa.png
--------------------------------------------------------------------------------
/images/snac_whitneyVisual.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amnh/HackTheStacks/dcf0589c80c6ba89740cda23abedceabc4bafff1/images/snac_whitneyVisual.png
--------------------------------------------------------------------------------
/images/winners.jpg:
--------------------------------------------------------------------------------
1 | version https://git-lfs.github.com/spec/v1
2 | oid sha256:c364678137c4759aa3f09d79b4b6d1f4a7989020f95f05f9e6cfa42a4702ea46
3 | size 506657
4 |
--------------------------------------------------------------------------------