-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11697.xml
3032 lines (3032 loc) · 175 KB
/
11697.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.cmautzpbritt">beinecke.cmautzpbritt</recordid>
<otherrecordid localtype="BIB">14848826</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Carl Mautz Collection of Peter Britt Photographs </titleproper>
<titleproper localtype="filing">Mautz (Carl) Collection of Peter Britt Photographs</titleproper>
<author>Sarah Lerner</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>January 2020</date>
<num>WA Photos 865</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">14848826</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-5</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>dacs</abbr>
<citation>Describing Archives: A Content Standard</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:37:08-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:37</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11697" level="collection">
<did>
<unittitle>Carl Mautz collection of Peter Britt photographs</unittitle>
<unitid>WA Photos 865</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.88</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="circa 1850s-circa 2000"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="circa 1850s-circa 1880s"
label="creation"
unitdatetype="bulk">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1880">1880</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_36e57d14f875e27816e56774c266ff8f">171 carte-de-visite photographs; 53 cabinet photographs; 61 tintypes, including 1 cased double portrait; 1 cased ambrotype; 20 stereographs; 10 mounted prints; 4 photographic postcards; 5 photographs; and printed material by or relating to photographer Peter Britt, circa 1850s-circa 2000. Collected by Carl Mautz. Photographs are chiefly studio portraits of men, women, and children, including Peter Britt, Amalia Grobb Britt, Amalia Britt, and Emil Britt. Stereographs in the collection depict outdoor spaces including Crater Lake, Mount Shasta, Rogue River; the Britt household; and Jacksonville, Oregon.</abstract>
<origination label="Creator">
<persname relator="col" rules="aacr">
<part localtype="agent_person">Mautz, Carl</part>
</persname>
</origination>
<origination label="Creator">
<persname relator="pht" rules="aacr" source="local">
<part localtype="agent_person">Britt, Peter, 1819-1905</part>
</persname>
</origination>
<origination label="Source">
<corpname relator="bsl" rules="local" source="local">
<part localtype="agent_corporate_entity">Michael Vinson</part>
</corpname>
</origination>
</did>
<accessrestrict id="aspace_dfc2889c0bea335c769350305eea54ba">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<acqinfo id="aspace_d2dfec8d9801b115909ffd8f8239a09f">
<head>Immediate Source of Acquisition</head>
<p>From the collection of Carl Mautz. Purchased from Michael Vinson on the Winlock William Miller, Jr. Memorial Fund and Thomas W. Streeter Fund, 2013.</p>
</acqinfo>
<arrangement id="aspace_5a34d36dda67dd83193f25e0f7eec30a">
<head>Arrangement</head>
<p>Organized into five series: I. Cased Photographs and Tintypes, circa 1850s. II. Stereographs, circa 1860s-circa 1870s. III. Cartes de Visite, circa 1870s-circa 1880s. IV. Cabinet Photographs, 1854-1898. V. Other Photographs and Material, circa 1860s-circa 2000.</p>
</arrangement>
<bioghist id="aspace_a0c52b1d97ef3b64faab62a4e084f377">
<head>Peter Britt</head>
<p>Peter Britt (1819-1905) of Obstalden, Switzerland, was a portrait painter and photographer, meteorologist, and horticulturalist. Britt was an early settler in the Rogue Valley of Oregon Territory, building a log cabin in Jacksonville in 1852. He opened P. Britt's Photograph and Daguerreotype Room, a photography studio, in Jacksonville in 1856. Following his purchase of a stereo camera in the 1860s, Britt became an outdoor and gallery photographer, taking pictures of the Oregon Coast, the North Coast of California, the Siskiyou Mountains, the Rogue River, the Klamath River, the Cascades, and Crater Lake.</p>
<p>Britt married Amalia Grob (1822-1871) in 1861. The couple had three children: Emil Britt (1862-1950), Arnold Britt (1864-1864), and Amalia Britt (1865-1954). Emil Britt became a photographer, working with his father beginning in 1883.</p>
</bioghist>
<prefercite id="aspace_179dacbc298ffd0c13ef057611b4a380">
<head>Preferred Citation</head>
<p>Carl Mautz Collection of Peter Britt Photographs. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_613da0a4e62207776581341a22f1767c">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit. These materials have been arranged and described according to national and local standards. For more information, please refer to the Beinecke Manuscript Unit Processing Manual.</p>
</processinfo>
<scopecontent id="aspace_d1b1bfca7c6f90c1c059a681afc79ba1">
<head>Content Description</head>
<p>171 carte-de-visite photographs; 53 cabinet photographs; 61 tintypes, including 1 cased double portrait; 1 cased ambrotype; 20 stereographs; 10 mounted prints; 4 photographic postcards; 5 photographs; and printed material by or relating to photographer Peter Britt, circa 1850s-circa 2000. Collected by Carl Mautz. Photographs are chiefly studio portraits of men, women, and children, including Peter Britt, Amalia Grobb Britt, Amalia Britt, and Emil Britt. Stereographs in the collection depict outdoor spaces including Crater Lake, Mount Shasta, Rogue River; the Britt household; and Jacksonville, Oregon.</p>
</scopecontent>
<userestrict id="aspace_3c1e0089279b6ddcd11f3b6c8308b1a1">
<head>Conditions Governing Use</head>
<p>The Carl Mautz Collection of Peter Britt Photographs is 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>
<controlaccess>
<subject source="lcsh">
<part localtype="topical">Children</part>
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Portraits</part>
</subject>
<subject source="lcsh">
<part localtype="topical">Men</part>
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Portraits</part>
</subject>
<subject source="local">
<part localtype="topical">Portrait photography</part>
<part localtype="temporal">19th century</part>
</subject>
<subject source="lcsh">
<part localtype="topical">Women</part>
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Portraits</part>
</subject>
<geogname source="lcsh">
<part localtype="geographic">Crater Lake (Or.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Jacksonville (Or.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008116453"
source="lcsh">
<part localtype="geographic">Oregon</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Rogue River (Klamath County-Curry County, Or.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Shasta, Mount (Calif. : Mountain) </part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300127186" source="aat">
<part localtype="genre_form">Ambrotypes (photographs)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127131" source="aat">
<part localtype="genre_form">Cabinet photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127141" source="aat">
<part localtype="genre_form">Cartes-de-visite (card photographs)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127264" source="aat">
<part localtype="genre_form">Cased photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127115" source="aat">
<part localtype="genre_form">Card photographs (photographs)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300192703" source="aat">
<part localtype="genre_form">Photographic postcards</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026816" source="aat">
<part localtype="genre_form">Postcards</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127197" source="aat">
<part localtype="genre_form">Stereographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/page/aat/300223022" source="aat">
<part localtype="genre_form">Studio portraits</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300134759" source="aat">
<part localtype="genre_form">Tintypes (prints)</part>
</genreform>
<occupation source="lcsh">
<part localtype="occupation">Photographers</part>
<part localtype="geographic">Oregon</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname source="local_beinecke">
<part localtype="agent_person">Britt, Emil, 1862-1950</part>
<part localtype="genre_form">Portraits</part>
</persname>
<persname source="local_beinecke">
<part localtype="agent_person">Britt, Amalia Grob, 1822-1871</part>
<part localtype="genre_form">Portraits</part>
</persname>
<persname source="local_beinecke">
<part localtype="agent_person">Britt, Amalia, 1865-1954</part>
<part localtype="genre_form">Portraits</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3191766"
id="aspace_c1822ebee4b4edf4e856b9c7e714c3fc"
level="series">
<did>
<unittitle>Cased Photographs and Tintypes</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_b83dcc84b7bedd04d91a3e1d2d73239a">
<head>Arrangement</head>
<p>Series I is organized into two subseries: Case Photographs and Tintypes in Sleeves. Each subseries is arranged by subject.</p>
</arrangement>
<scopecontent id="aspace_a17d468e82fb85fd0d99a666577af65a">
<head>Scope and Contents</head>
<p>Series I contains cased photographs and tintypes in sleeves of unidentified individuals. The number in parentheses indicates the quantity of images present.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3193011"
id="aspace_50b44965459def1f4b19eb0d9622b410"
level="subseries">
<did>
<unittitle>Cased Photographs</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/3193040"
id="aspace_ece32b127a62bc375a8a073fb9798c54"
level="file">
<did>
<unittitle>Ambrotype, sixth plate in a case, copy photograph of a studio portrait of a man of a European-American and Native-American ancestry holding a rifle, identified as a trapper</unittitle>
<unitdatestructured altrender="circa 1858" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1858">circa 1858</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366897 /locations/4051"
containerid="39002099203342"
encodinganalog="card box (3d 5h 6w)"
id="aspace_ece32b127a62bc375a8a073fb9798c54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ece32b127a62bc375a8a073fb9798c54_c2"
localtype="folder"
parent="aspace_ece32b127a62bc375a8a073fb9798c54_c1">1</container>
</did>
<scopecontent id="aspace_a50241954bccbedacac1c9d908627f9f">
<head>Scope and Contents</head>
<p>Image is the same captured by Britt as his first wet plate negative on 1858 February 10</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3193041"
id="aspace_6105f55fb1c95af6cbe33defaf1c2080"
level="file">
<did>
<unittitle>Tintype double portrait, sixth plate in a case, a studio portrait of a man</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366897 /locations/4051"
containerid="39002099203342"
encodinganalog="card box (3d 5h 6w)"
id="aspace_6105f55fb1c95af6cbe33defaf1c2080_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6105f55fb1c95af6cbe33defaf1c2080_c2"
localtype="folder"
parent="aspace_6105f55fb1c95af6cbe33defaf1c2080_c1">2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3193012"
id="aspace_d05f26d53ded73da4972a4107293dbd4"
level="subseries">
<did>
<unittitle>Tintypes in Sleeves</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/3193042"
id="aspace_c0315850b18aa0e5a38b1b0f5e52ef5b"
level="subseries">
<did>
<unittitle>People</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/3193129"
id="aspace_b25c36f6139485d9d0ce5e7c6bd5eea7"
level="file">
<did>
<unittitle>Children (16)</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_b25c36f6139485d9d0ce5e7c6bd5eea7_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_b25c36f6139485d9d0ce5e7c6bd5eea7_c2"
localtype="folder"
parent="aspace_b25c36f6139485d9d0ce5e7c6bd5eea7_c1">3-5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193130"
id="aspace_09c9b1c6732aea52e199a5c67758b545"
level="file">
<did>
<unittitle>Adults (43)</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_09c9b1c6732aea52e199a5c67758b545_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_09c9b1c6732aea52e199a5c67758b545_c2"
localtype="folder"
parent="aspace_09c9b1c6732aea52e199a5c67758b545_c1">6-11</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3193043"
id="aspace_463b7cdeea9fe4ebf687cb17ab116c11"
level="subseries">
<did>
<unittitle>Landscapes</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/3193131"
id="aspace_cef5a73ee264a62249c7fe1454130c8c"
level="file">
<did>
<unittitle>Landscape (1)</unittitle>
<unitdatestructured altrender="circa 1850s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_cef5a73ee264a62249c7fe1454130c8c_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_cef5a73ee264a62249c7fe1454130c8c_c2"
localtype="folder"
parent="aspace_cef5a73ee264a62249c7fe1454130c8c_c1">12</container>
</did>
</c>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3193007"
id="aspace_18c8dd62e2baf4acf6e88fdc35700b77"
level="series">
<did>
<unittitle>Stereographs</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_84a3243f158f7d8f21154e2fbcd4f24e">
<head>Arrangement</head>
<p>Series II is arranged alphabetically.</p>
</arrangement>
<scopecontent id="aspace_f0c623dd5d539d883b1bd741980dc65f">
<head>Scope and Contents</head>
<p>Series II contains stereographs chiefly of identified locations including Crater Lake, Mount Shasta, Rogue River, and Jacksonville, Oregon.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3193013"
id="aspace_4abae648fa0ec584b14871de15d169b0"
level="file">
<did>
<unittitle>"Big John and Little Richard" outside wooden house</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_4abae648fa0ec584b14871de15d169b0_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_4abae648fa0ec584b14871de15d169b0_c2"
localtype="folder"
parent="aspace_4abae648fa0ec584b14871de15d169b0_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193014"
id="aspace_8bb84bf0e3f19677e1b9f2ff23cb675a"
level="file">
<did>
<unittitle>Britt house</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_8bb84bf0e3f19677e1b9f2ff23cb675a_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_8bb84bf0e3f19677e1b9f2ff23cb675a_c2"
localtype="folder"
parent="aspace_8bb84bf0e3f19677e1b9f2ff23cb675a_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193015"
id="aspace_e7fcf70aacf00d7671cc5d55a9b4cc44"
level="file">
<did>
<unittitle>Crater Lake</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_e7fcf70aacf00d7671cc5d55a9b4cc44_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e7fcf70aacf00d7671cc5d55a9b4cc44_c2"
localtype="folder"
parent="aspace_e7fcf70aacf00d7671cc5d55a9b4cc44_c1">15-17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193018"
id="aspace_0a5f261c71f6553a3daac28be6e39cec"
level="file">
<did>
<unittitle>Goldfish pond</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_0a5f261c71f6553a3daac28be6e39cec_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_0a5f261c71f6553a3daac28be6e39cec_c2"
localtype="folder"
parent="aspace_0a5f261c71f6553a3daac28be6e39cec_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193019"
id="aspace_ffec3fc8b236a4990b874d476e16884c"
level="file">
<did>
<unittitle>Jacksonville, Oregon</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_ffec3fc8b236a4990b874d476e16884c_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ffec3fc8b236a4990b874d476e16884c_c2"
localtype="folder"
parent="aspace_ffec3fc8b236a4990b874d476e16884c_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193020"
id="aspace_21dd6a4ab83676b026770dc3c18a95c2"
level="file">
<did>
<unittitle>Jacksonville, Oregon (from Britt Hill)</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_21dd6a4ab83676b026770dc3c18a95c2_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_21dd6a4ab83676b026770dc3c18a95c2_c2"
localtype="folder"
parent="aspace_21dd6a4ab83676b026770dc3c18a95c2_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193021"
id="aspace_377b182b6613f371757ab9ac13f6b5a9"
level="file">
<did>
<unittitle>Landscape with light house</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_377b182b6613f371757ab9ac13f6b5a9_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_377b182b6613f371757ab9ac13f6b5a9_c2"
localtype="folder"
parent="aspace_377b182b6613f371757ab9ac13f6b5a9_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193022"
id="aspace_e2e798b8a458ae1997e97ace39405448"
level="file">
<did>
<unittitle>Mount Shasta, California</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_e2e798b8a458ae1997e97ace39405448_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e2e798b8a458ae1997e97ace39405448_c2"
localtype="folder"
parent="aspace_e2e798b8a458ae1997e97ace39405448_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193023"
id="aspace_6b0923880860095b0058b6639add8da4"
level="file">
<did>
<unittitle>Mount Shasta from Strawberry Valley</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_6b0923880860095b0058b6639add8da4_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6b0923880860095b0058b6639add8da4_c2"
localtype="folder"
parent="aspace_6b0923880860095b0058b6639add8da4_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193024"
id="aspace_08e5401fae66d90c0fda75c35fc21361"
level="file">
<did>
<unittitle>Occidental Quartz Mill</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_08e5401fae66d90c0fda75c35fc21361_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_08e5401fae66d90c0fda75c35fc21361_c2"
localtype="folder"
parent="aspace_08e5401fae66d90c0fda75c35fc21361_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193025"
id="aspace_d278799d2dbba518417a8e694b79257b"
level="file">
<did>
<unittitle>Portrait of man reading in a garden</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_d278799d2dbba518417a8e694b79257b_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_d278799d2dbba518417a8e694b79257b_c2"
localtype="folder"
parent="aspace_d278799d2dbba518417a8e694b79257b_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193026"
id="aspace_1fd5ba5c123a95355c8b8de2933f1bee"
level="file">
<did>
<unittitle>Rogue River</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_1fd5ba5c123a95355c8b8de2933f1bee_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_1fd5ba5c123a95355c8b8de2933f1bee_c2"
localtype="folder"
parent="aspace_1fd5ba5c123a95355c8b8de2933f1bee_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193027"
id="aspace_b8139e77342426b68b3225a02817450e"
level="file">
<did>
<unittitle>Rogue River and Gold Hill</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_b8139e77342426b68b3225a02817450e_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_b8139e77342426b68b3225a02817450e_c2"
localtype="folder"
parent="aspace_b8139e77342426b68b3225a02817450e_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193028"
id="aspace_e926e8afe5f4fc345c14eadff29d1f25"
level="file">
<did>
<unittitle>Rogue River Bridge</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_e926e8afe5f4fc345c14eadff29d1f25_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e926e8afe5f4fc345c14eadff29d1f25_c2"
localtype="folder"
parent="aspace_e926e8afe5f4fc345c14eadff29d1f25_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193029"
id="aspace_395779c4715fb14015c5e5c169643d5e"
level="file">
<did>
<unittitle>Rogue River Falls</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_395779c4715fb14015c5e5c169643d5e_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_395779c4715fb14015c5e5c169643d5e_c2"
localtype="folder"
parent="aspace_395779c4715fb14015c5e5c169643d5e_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193030"
id="aspace_aac9abe7b46a9135f7916c7f915084a9"
level="file">
<did>
<unittitle>Rogue River Rapids</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_aac9abe7b46a9135f7916c7f915084a9_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_aac9abe7b46a9135f7916c7f915084a9_c2"
localtype="folder"
parent="aspace_aac9abe7b46a9135f7916c7f915084a9_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193031"
id="aspace_6438ff78b64842360e3c72f8f4d6782d"
level="file">
<did>
<unittitle>Still life of a flower</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_6438ff78b64842360e3c72f8f4d6782d_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6438ff78b64842360e3c72f8f4d6782d_c2"
localtype="folder"
parent="aspace_6438ff78b64842360e3c72f8f4d6782d_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193032"
id="aspace_6295434b73f74624ddd88cbb9d5a9a92"
level="file">
<did>
<unittitle>Wagon Road around "Mule Hill", Applegate River</unittitle>
<unitdatestructured altrender="circa 1860s-circa 1870s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_6295434b73f74624ddd88cbb9d5a9a92_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6295434b73f74624ddd88cbb9d5a9a92_c2"
localtype="folder"
parent="aspace_6295434b73f74624ddd88cbb9d5a9a92_c1">32</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3191768"
id="aspace_5e0e2bca211abc091a3de92f4c96c144"
level="series">
<did>
<unittitle>Cartes de Visite</unittitle>
<unitid>Series III</unitid>
<unitdatestructured altrender="circa 1870s-circa 1880s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_cf8f4072d5f2e320114e4d7fb5076451">
<head>Arrangement</head>
<p>Series III is organized into two subseries: Identified Subjects and Unidentified Subjects. Each subseries is arranged alphabetically.</p>
</arrangement>
<scopecontent id="aspace_7543d02617a3f69d5bb2cbaaf2397b43">
<head>Scope and Contents</head>
<p>Series III contains carte-de-visite photographs of identified and unidentified individuals. The number in parentheses in the second subseries indicates the quantity of images present.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3193033"
id="aspace_aecd51c7b5def06ec464f9b1410a5fd3"
level="subseries">
<did>
<unittitle>Identified Subjects</unittitle>
<unitdatestructured altrender="circa 1870s-circa 1880s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/3193044"
id="aspace_fd0d5fa2e82e73e0ff2d0cc795dbbf50"
level="file">
<did>
<unittitle>Armstrong, Mary</unittitle>
<unitdatestructured altrender="circa 1870s-circa 1880s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_fd0d5fa2e82e73e0ff2d0cc795dbbf50_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_fd0d5fa2e82e73e0ff2d0cc795dbbf50_c2"
localtype="folder"
parent="aspace_fd0d5fa2e82e73e0ff2d0cc795dbbf50_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193045"
id="aspace_4ad243b1cdc04ce8a917a15078dfb9b1"
level="file">
<did>
<unittitle>Birdie and Willie</unittitle>
<unitdatestructured altrender="circa 1870s-circa 1880s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_4ad243b1cdc04ce8a917a15078dfb9b1_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_4ad243b1cdc04ce8a917a15078dfb9b1_c2"
localtype="folder"
parent="aspace_4ad243b1cdc04ce8a917a15078dfb9b1_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3193046"
id="aspace_3d57283d0fed128ee119f4358b5fb797"
level="file">
<did>
<unittitle>Britt, Amalia (wife of Peter) (includes duplicate)</unittitle>
<unitdatestructured altrender="circa 1870s-circa 1880s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/366898 /locations/4051"
containerid="39002099203359"
encodinganalog="archive legal"
id="aspace_3d57283d0fed128ee119f4358b5fb797_c1"
label="Mixed Materials"