-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1264.xml
1709 lines (1709 loc) · 104 KB
/
1264.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.kern">beinecke.kern</recordid>
<otherrecordid localtype="BIB">4669502</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Edward Meyer Kern and Richard H. Kern Papers
</titleproper>
<titleproper localtype="filing">Kern (Edward Meyer and Richard H.) Papers</titleproper>
<author>by Diana Smith</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>December 2000</date>
<num>WA MSS S-2395</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">4669502</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-3, bsd, folder 54</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="11">11</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="43">43</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:20:39-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:20</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1264" level="collection">
<did>
<unittitle>Edward Meyer Kern and Richard H. Kern papers</unittitle>
<unitid>WA MSS S-2395</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.76</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes + 1 broadside folder</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1795">1795</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1860">1860</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_c220a2fa20f42f3f924b52cb9e76f88f">The papers contain journals, notebooks, drawings and maps, documents and correspondence which document the activities of Edward and Richard Kern in the West and the Pacific from 1845-1860. A journal and a notebook document Edward Kern's participation in Fremont's third expedition to California; and a journal, a logbook, drawings, two maps and a letter document Edward's participation in the Northern Pacific Exploring Expedition in 1853-1856. A scrapbook of unsigned preliminary sketches and drawings by either Edward or Richard Kern document the time spent by both in New Mexico, and feature drawings of New Mexico, Mexico, and Arizona. Five notebooks attributed to Richard contain similar preliminary sketches and drawings. The correspondence includes a letter from brother-in-law William B. Wolfe who describes Richard's death in the Gunnison Massacre in 1853.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Kern, Edward Meyer, 1823-1863</part>
</persname>
</origination>
<origination label="Creator">
<persname>
<part localtype="agent_person">Kern, Richard H., 1821-1853</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_df80355456dbdc80d2436daef059e3b5">
<head>Immediate Source of Acquisition</head>
<p>The collection was previously held by William E. Kern, a nephew of Richard and Edward, who owned a hotel in Dingman's Ferry, Pennsylvania. In 1958 the collection was found in the hotel basement by new owners, Fred and Ann Cron. Purchased from William Reese Company on the Frederick W. & Carrie S. Beinecke Fund for Western Americana and the Library Associates Fund, 1989.</p>
</acqinfo>
<userestrict id="aspace_82807ee976c9ae07671774524d856577">
<head>Conditions Governing Use</head>
<p>The Edward Meyer Kern and Richard H. Kern Papers are the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_6a38af3554865e91605d4b5f0ceb561b">
<head>Preferred Citation</head>
<p>Edward Meyer Kern and Richard H. Kern Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_14c3a6d5056e241437d0f10981021b17">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<relatedmaterial id="aspace_5fbd4cc129a6323eaaf791d02778bfee">
<head>Associated Materials</head>
<p>The papers were accompanied by Edward M. Kern's copy of Frémont's <title localtype="simple" render="italic">
<part>Geographical Memoir Upon Upper California</part>
</title> (Washington: Wendell and Van Benthuysen, Printers, 1848), and by three additional volumes that contain John Kern's bookplate: <title localtype="simple" render="italic">
<part>Reports of the Secretary of War, with Reconnaissances of Routes from San Antonio to El Paso</part>
</title>, by ... J. E. Johnston, Printed at the Union Office, 1850), Howard Stansbury, <title localtype="simple" render="italic">
<part>Exploration and Survey of the Valley of the Great Salt Lake of Utah</part>
</title> (Philadelphia: Lippincott, Grambo & Co., 1852), L. Sitgreaves, <title localtype="simple" render="italic">
<part>Report of an Expedition down the Zuni and Colorado Rivers</part>
</title> (Washington: Robert Armstrong, Public Printer: 1853). The books have been cataloged separately with the Kern provenance traced.</p>
</relatedmaterial>
<bioghist id="aspace_e5f815453b14c1745af2cd0031b2150a">
<head>EDWARD MEYER KERN AND RICHARD H. KERN</head>
<p>Edward Meyer Kern (1823-1863) and Richard Hovenden Kern (1821-1853) were brothers from Philadelphia who became artists, scientists, and explorers. In 1845, Edward accepted the position of artist and topographer for John Charles Frémont's third expedition, which was to explore the central route to California. The Frémont expedition merged into the California Battalion when the Mexican War began, and Edward was made commander of Sutter's Fort.</p>
<p>In 1848, Edward convinced his brothers Richard and Benjamin Jordan (1818-1849) to join him on Frémont's fourth expedition, which was to test the viability of a winter pass for a railroad in the central Rockies. The winter was unusually harsh and a third of the men died after becoming stranded in the snow and ice. The three Kerns made it safely to Taos, New Mexico. In the spring of 1849, Benjamin Kern returned to the mountains with a guide to retrieve a cache of papers and possessions, only to be killed by Ute Indians.</p>
<p>Edward and Richard lived in New Mexico for two years, working for the Corps of Topographical Engineers. In 1851 Richard joined Lieutenant Lorenzo Sitgreaves on an expedition to explore the Little Colorado River, and Edward joined Lieutenant John Pope, who was looking for a better route between Santa Fe and Fort Leavenworth. In 1853, while working on the Pacific Railroad Survey along the 38th parallel with Captain John W. Gunnison, Richard was killed by Ute Indians in the Gunnison Massacre.</p>
<p>From 1853 to 1856, Edward served aboard the <title localtype="simple" render="italic">
<part>U.S.S. Vincennes</part>
</title> on the North Pacific exploring expedition commanded by Cadwalader Ringgold (later replaced by John Rodgers). This expedition navigated the globe and mapped the Japanese coast. Edward next joined Lieutenant John M. Brooke on a survey of the sea lanes between California and China, returning in 1860. During the Civil War, Edward served under Frémont, who had command of the Army of the West, but when Frémont was relieved of command, Edward was as well. He died November 23, 1863 of an epileptic attack.</p>
</bioghist>
<scopecontent id="aspace_556735b410e13b2abf0883dd0587c830">
<head>Scope and Contents</head>
<p>The Edward Meyer Kern and Richard H. Kern Papers consist of journals, notebooks, drawings, maps, documents, and correspondence which document the activities of Edward and Richard Kern in the West and the Pacific from 1845-1860. The collection was previously held by William E. Kern, a nephew of Edward and Richard, who owned a hotel in Dingman's Ferry, Pennsylvania, where it was found in the hotel basement by new owners, Fred and Ann Cron, in 1958. The collection was featured in <title localtype="simple" render="italic">
<part>Life</part>
</title> magazine in 1959. Some of the papers were severely mildewed and damaged, including two journals, three notebooks, and a scrapbook of sketches and drawings. These were disbound and each page separately encapsulated in mylar after treatment. Some of the notebook pages are so damaged as to obscure the sketches, and one journal is missing the bottom quarter of its pages. The collection is housed in three boxes and is organized into four series: <title localtype="simple" render="italic">
<part>Writings</part>
</title>, <title localtype="simple" render="italic">
<part>Drawings and Maps</part>
</title>, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, and <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref12">Series I, <title localtype="simple" render="italic">
<part>Writings</part>
</title>
</ref>, is organized into two subseries: Journals and Notebooks. Journals are further organized into those by Edward Meyer Kern and those by unidentified authors, and are listed chronologically. Edward Kern's journals include an illustrated journal of the first Frémont expedition to California, kept from August 17, 1845 to February 15, 1846, and a journal of his voyage in the launch of the <title localtype="simple" render="italic">
<part>Vincennes</part>
</title> while mapping the coast of Japan in 1855. The logbook for the <title localtype="simple" render="italic">
<part>U.S.S. Vincennes</part>
</title>, kept from June 11 to December 26, 1853 is filed here under "Unidentified" as the identity of its author is not clear. The last journal is by an unidentified American pepper merchant in Singapore in 1832-1833. This journal and the launch journal had been damaged by mildew and were disbound for treatment. The pepper merchant's journal is missing the bottom quarter of its pages, affecting text.</p>
<p>The Notebooks include five that can be identified as Richard Kern's, and two identified as Edward's. These volumes contain sketches of New Mexico, Mexico, Arizona, Zuni Indians, and a map of Northern California. An 1850 notebook kept by Edward contains notes on his palette. Two of Richard's notebooks were damaged by mildew and were disbound for treatment. These notebooks consist primarily of preliminary sketches, but also contain a few finished drawings.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref41">Series II, <title localtype="simple" render="italic">
<part>Drawings and Maps</part>
</title>
</ref>, is organized into three subseries: Edward Meyer Kern, Richard H. Kern, and Edward Meyer or Richard H. Kern. The drawings are listed chronologically within each section. They include twelve watercolors from Edward's voyage on the <title localtype="simple" render="italic">
<part>Vincennes</part>
</title>, depicting Madeira, the Cape of Good Hope, and Sydney, and two pen-and-ink maps: the track of the <title localtype="simple" render="italic">
<part>Vincennes</part>
</title> as it navigated the globe in 1853-1856, and the coast of Japan showing the track of the Vincennes launch in 1855. One loose unsigned drawing has been attributed to Richard Kern: "La Iglesia de Nuestra Señora de Guadalupe Santa Fé N.M." dated 1850. Many more sketches and drawings are unsigned. Although they have not been conclusively identified as drawn by Edward or Richard, they are presumed to be by one or the other. Consequently, they have been placed in the subseries Edward Meyer or Richard H. Kern. Many of these sketches and drawings are views of New Mexico, where both lived from 1849 to 1851, and are often preliminary sketches with notes on color.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref60">Series III, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, is organized into three subseries: Edward Meyer Kern, Others, and Unidentified. Kern's correspondence is organized into incoming and outgoing correspondence, and is listed alphabetically within each category. Among his correspondents are Cadwalader Ringgold, John Rodgers, and John Augustus Sutter. A letter from his brother-in-law William B. Wolfe describes Richard Kern's death in the Gunnison Massacre. The five outgoing letters include one from Hong Kong, which Edward describes. The one letter from Richard, filed under Others, is to an unidentified correspondent, about his work as assistant engineer to Captain Sitgreaves.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref86">Series IV, <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>
</ref> contains documents and miscellaneous papers arranged in chronological order, and includes an early deed of land from Michael Dietrich to John Kuhn, dated October 1795, and the letter of appointment of Edward Kern as Captain under Frémont in September 1861, signed by John C. Frémont.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref98">
<title localtype="simple" render="italic">
<part>Oversize</part>
</title>
</ref> consists of materials from Series I, II, and IV, and is arranged in box order.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Zuni Indians</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008114255"
source="lcsh">
<part localtype="geographic">Arizona</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85018870"
source="lcsh">
<part localtype="geographic">California</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Cape of Good Hope (South Africa)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Great Basin</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Great Basin</part>
<part localtype="topical">Discovery and exploration</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Japan</part>
<part localtype="topical">Discovery and exploration</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Japan</part>
<part localtype="topical">Geography</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Madeira (Madeira Islands)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2007100313"
source="lcsh">
<part localtype="geographic">Mexico</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">New Mexico</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028094" source="aat">
<part localtype="genre_form">Maps (documents)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300015617" source="aat">
<part localtype="genre_form">Sketches</part>
</genreform>
<persname>
<part localtype="agent_person">Frémont, John Charles, 1813-1890</part>
</persname>
<persname>
<part localtype="agent_person">Kern, Edward Meyer, 1823-1863</part>
</persname>
<persname>
<part localtype="agent_person">Kern, Richard H., 1821-1853</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">United States North Pacific Exploring Expedition (1853-1856)</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Vincennes (Sloop of war)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/462991"
id="ref12"
level="series">
<did>
<unittitle>Writings</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.25 boxes</physdesc>
<unitdatestructured altrender="1832-1855" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1832">1832</fromdate>
<todate standarddate="1855">1855</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_07a5626b0f4ae2bc74b3963658507b8a">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Writings</part>
</title>, is organized into two subseries: Journals and Notebooks. Journals is organized into Edward Meyer Kern and Unidentified, and are listed chronologically. Notebooks is organized into Edward Meyer Kern, Richard H. Kern, and Unidentified, and are listed chronologically.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/462992"
id="ref14"
level="subseries">
<did>
<unittitle>JOURNALS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/462993"
id="ref15"
level="subseries">
<did>
<unittitle>Kern, Edward Meyer</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/462994"
id="ref16"
level="file">
<did>
<unittitle>"Journal of a trip to California 1845-46-47." Holograph journal of trip from 1845 Aug 17 - 1846 Feb 15. With five illustrations and two maps</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/60399 /locations/4051"
containerid="39002091347378"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1</container>
</did>
<scopecontent id="aspace_d45f86684f9c81b05b16c40b454ecb60">
<head>Scope and Contents</head>
<p>A drawing which had broken loose from the binding was encapsulated in mylar and is listed separately as box 2, folder 14</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/462995"
id="ref18"
level="file">
<did>
<unittitle>Original covers of the journal of a trip to California 1845-46-47</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/60399 /locations/4051"
containerid="39002091347378"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/462996"
id="ref19"
level="file">
<did>
<unittitle>"In the 'Launch' from Samoda to Hakadada, Coast of Japan." Holograph journal, disbound</unittitle>
<unitdatestructured altrender="1855 May-Jun" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1855-05">1855 May</fromdate>
<todate standarddate="1855-06">1855 June</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60399 /locations/4051"
containerid="39002091347378"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">3</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/462997"
id="ref20"
level="subseries">
<did>
<unittitle>Unidentified</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/462998"
id="ref21"
level="file">
<did>
<unittitle>Journal of an American pepper merchant in Singapore, 1832 Dec 29 - 1833 Feb 11. Journal disbound, all pages damaged by mildew, affecting text</unittitle>
<unitdatestructured altrender="1832-33" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1832">1832</fromdate>
<todate standarddate="1833">1833</todate>
</daterange>
</unitdatestructured>
<physloc id="aspace_e3e8f979e453e7998d7b894f2743c88a">Stored in: Oversize, box 3, folder 46</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/462999"
id="ref23"
level="file">
<did>
<unittitle>Logbook for Flag Ship Vincennes, kept 1853 Jun 11 to Dec 26</unittitle>
<unitdatestructured altrender="1853 Jun-Dec" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853-06">1853 June</fromdate>
<todate standarddate="1853-12">1853 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60399 /locations/4051"
containerid="39002091347378"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">4</container>
</did>
<scopecontent id="aspace_995781ed018361b7e41fa4920e389d11">
<head>Scope and Contents</head>
<p>Photograph of unidentified man laid in loose</p>
</scopecontent>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/463000"
id="ref25"
level="subseries">
<did>
<unittitle>NOTEBOOKS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/463001"
id="ref26"
level="subseries">
<did>
<unittitle>Kern, Edward Meyer</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/463002"
id="ref27"
level="file">
<did>
<unittitle>Notebook containing notes on palettes, cash expenses, pen sketches and pencil sketches. At front: "Edwd. M. Kern Albiquiu, N.M. Feby. 1 1850"</unittitle>
<unitdatestructured altrender="1850" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1850">1850</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60399 /locations/4051"
containerid="39002091347378"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463003"
id="ref28"
level="file">
<did>
<unittitle>Palette leaf and Paul Weber's landscape palette, 2 sheets removed from 1850 notebook</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/60399 /locations/4051"
containerid="39002091347378"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">6</container>
<daoset altrender="/repositories/11/digital_objects/285958">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16101257"
identifier="oid:16101257"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16101275/full/!150,150/0/default.jpg"
identifier="oid:16101257"
linktitle="1r"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16101257"
identifier="oid:16101257"
linktitle="1r"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Palette leaf and Paul Weber's landscape palette, 2 sheets removed from 1850 notebook</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463004"
id="ref29"
level="file">
<did>
<unittitle>Notebook containing notes, pencil sketches and a map of Northern California. Notebook disbound, many pages damaged by mildew</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/60399 /locations/4051"
containerid="39002091347378"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">7</container>
</did>
<scopecontent id="aspace_a10c6e96a03be3e487995449a35547da">
<head>Scope and Contents</head>
<p>Belonged to Edward Meyer Kern?</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/463005"
id="ref31"
level="subseries">
<did>
<unittitle>Kern, Richard H.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/463006"
id="ref32"
level="file">
<did>
<unittitle>Notebook containing sketches of New Mexico and Mexico, journal of a trip to Chihuahua from New Mexico Jan 1-27 1850</unittitle>
<unitdatestructured altrender="1849-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1849">1849</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">8</container>
</did>
<scopecontent id="aspace_b4ee9bcc087044a597d8168ca384b6e1">
<head>Scope and Contents</head>
<p>With note on inside cover: "To the memory of Edwd. S. Thwait, murdered by the Apaches - Jan 12 1850"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/463007"
id="ref34"
level="file">
<did>
<unittitle>Notebook containing sketches of New Mexico and Mexico, notes on routes and roads, and a list of Indian tribes</unittitle>
<unitdatestructured altrender="1850 Jun-Jul" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850-06">1850 June</fromdate>
<todate standarddate="1850-07">1850 July</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">9</container>
<daoset altrender="/repositories/11/digital_objects/285952">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2001376"
identifier="oid:2001376"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1004830/full/!150,150/0/default.jpg"
identifier="oid:2001376"
linktitle="1 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2001376"
identifier="oid:2001376"
linktitle="1 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Notebook containing sketches of New Mexico and Mexico, notes on routes and roads, and a list of Indian tribes</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463008"
id="ref35"
level="file">
<did>
<unittitle>Notebook containing pencil sketches of New Mexico and Mexico, notes, and poetry. Notebook disbound, many pages damaged by mildew</unittitle>
<unitdatestructured altrender="1850 Apr-Sep" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850-04">1850 April</fromdate>
<todate standarddate="1850-09">1850 September</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">10</container>
<daoset altrender="/repositories/11/digital_objects/285957">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10000687"
identifier="oid:10000687"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1371886/full/!150,150/0/default.jpg"
identifier="oid:10000687"
linktitle="p. 11"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10000687"
identifier="oid:10000687"
linktitle="p. 11"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Notebook containing pencil sketches of New Mexico and Mexico, notes, and poetry. Notebook disbound, many pages damaged by mildew</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463009"
id="ref36"
level="file">
<did>
<unittitle>Notebook containing pencil sketches of New Mexico and Arizona. Notebook disbound, many pages damaged by mildew, obscuring sketches</unittitle>
<unitdatestructured altrender="1851 Aug-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1851-08">1851 August</fromdate>
<todate standarddate="1851-11">1851 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">11</container>
<daoset altrender="/repositories/11/digital_objects/285959">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2001377"
identifier="oid:2001377"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1004831/full/!150,150/0/default.jpg"
identifier="oid:2001377"
linktitle="recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2001377"
identifier="oid:2001377"
linktitle="recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Notebook containing pencil sketches of New Mexico and Arizona. Notebook disbound, many pages damaged by mildew, obscuring sketches</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463010"
id="ref37"
level="file">
<did>
<unittitle>Notebook containing pencil sketches of Zuni Indians and scenes</unittitle>
<unitdatestructured altrender="1851 Sep" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1851-09">1851 Sep</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">12</container>
<daoset altrender="/repositories/11/digital_objects/285956">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10000689"
identifier="oid:10000689"
linktitle="24 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1371888/full/!150,150/0/default.jpg"
identifier="oid:10000689"
linktitle="[Inside front wrapper]-1r"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10000689"
identifier="oid:10000689"
linktitle="[Inside front wrapper]-1r"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Notebook containing pencil sketches of Zuni Indians and scenes</p>
</descriptivenote>
</daoset>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/463011"
id="ref38"
level="subseries">
<did>
<unittitle>Unidentified</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/463012"
id="ref39"
level="file">
<did>
<unittitle>Notebook containing distances from Santa Fé to Rayado via Barclay's Fort, measured with a biometer, by Lt. Parke March 1851, with figures and maps</unittitle>
<unitdatestructured altrender="1851 Mar" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1851-03">1851 Mar</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">13</container>
</did>
</c>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/463013"
id="ref41"
level="series">
<did>
<unittitle>Drawings and Maps</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.1</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">.25 box</physdesc>
<unitdatestructured altrender="1846-1853" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1846">1846</fromdate>
<todate standarddate="1853">1853</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_42b1bfdd18f62b0d195d48163f4f7cf5">
<head>Scope and Contents</head>
<p>Series II, <title localtype="simple" render="italic">
<part>Drawings and Maps</part>
</title>, is organized into three subseries: Edward Meyer Kern, Richard H. Kern, and Edward Meyer or Richard H. Kern. The drawings are listed chronologically within each section.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/463014"
id="ref43"
level="subseries">
<did>
<unittitle>KERN, EDWARD MEYER</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/463015"
id="ref44"
level="file">
<did>
<unittitle>"Indian drawings on a Cotton Wood at Camp Jany 26/46." Pen-and-ink and watercolor over pencil</unittitle>
<unitdatestructured altrender="[1846]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1846">[1846]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">14</container>
<daoset altrender="/repositories/11/digital_objects/285951">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2001378"
identifier="oid:2001378"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1004833/full/!150,150/0/default.jpg"
identifier="oid:2001378"
linktitle="1 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2001378"
identifier="oid:2001378"
linktitle="1 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Indian drawings on a Cotton Wood at Camp Jany 26/46." Pen-and-ink and watercolor over pencil</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_9092da450079b519a4fdc1ec2a2b383f">
<head>Scope and Contents</head>
<p>Originally bound in "Journal of a trip to California 1845-46-47" in box 1, folder 1</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/463016"
id="ref46"
level="file">
<did>
<unittitle>Watercolors from voyage of the Vincennes, depicting Madeira, the Cape of Good Hope, Sydney</unittitle>
<unitdatestructured altrender="1853-54" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853">1853</fromdate>
<todate standarddate="1854">1854</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463017"
id="ref47"
level="file">
<did>
<unittitle>"Track of the U.S. Ship Vincennes in the Years 1853-54-55-56." Portfolio containing two pen-and-ink maps, one titled as above and another entitled: "Part of the Eastern Coast of Nipon (after Von Siebold. Rough Track of the Launch from May 28 - June 17, 1855," sketches of men's heads, and an illustrated title page</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">16</container>
</did>
<scopecontent id="aspace_5296141d560608021414136fe6119bd7">
<head>Scope and Contents</head>
<p>Stored also in: Oversize, broadside folder 54</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/463018"
id="ref49"
level="subseries">
<did>
<unittitle>KERN, RICHARD H.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/463019"
id="ref50"
level="file">
<did>
<unittitle>"La Iglesia de Nuestra Señora de Guadulupe Santa Fé N.M."</unittitle>
<unitdatestructured altrender="1850 May 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1850-05-14">1850 May 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">17</container>
<daoset altrender="/repositories/11/digital_objects/285953">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2001379"
identifier="oid:2001379"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1004834/full/!150,150/0/default.jpg"
identifier="oid:2001379"
linktitle="1 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2001379"
identifier="oid:2001379"
linktitle="1 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"La Iglesia de Nuestra Señora de Guadulupe Santa Fé N.M."</p>
</descriptivenote>
</daoset>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/463020"
id="ref51"
level="subseries">
<did>
<unittitle>KERN, EDWARD MEYER OR RICHARD H.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/463021"
id="ref52"
level="file">
<did>
<unittitle>Scrapbook of sketches and drawings, most unsigned. Disbound. Pencil, pen-and-ink and watercolor</unittitle>
<unitdatestructured altrender="1846-51, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1846">1846</fromdate>
<todate standarddate="1851">1851</todate>
</daterange>
</unitdatestructured>
<physloc id="aspace_f3348fccfedb005c13c8c8a2610bae62">Stored in: Oversize, box 3, folders 47-51</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463022"
id="ref54"
level="file">
<did>
<unittitle>"Sunday Oct 29 1848...before crossing Smoky Hill For[k]. Smoky Hills in the Distance." Watercolor drawing</unittitle>
<unitdatestructured altrender="[1848]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1848">[1848]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">18</container>
<daoset altrender="/repositories/11/digital_objects/285954">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2112308"
identifier="oid:2112308"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1352521/full/!150,150/0/default.jpg"
identifier="oid:2112308"
linktitle="1 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2112308"
identifier="oid:2112308"
linktitle="1 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Sunday Oct 29 1848...before crossing Smoky Hill For[k]. Smoky Hills in the Distance." Watercolor drawing</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/463023"
id="ref55"
level="file">
<did>
<unittitle>"Saturday Evening Camp Nov 11 - 1848." Watercolor drawing</unittitle>
<unitdatestructured altrender="[1848]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1848">[1848]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/60400 /locations/4051"
containerid="39002091347386"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">19</container>