-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1366.xml
1244 lines (1244 loc) · 73 KB
/
1366.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.wheeler">beinecke.wheeler</recordid>
<otherrecordid localtype="BIB">3147575</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Geographical Surveys West of the 100th Meridian Papers
</titleproper>
<titleproper localtype="filing">Geographical Surveys West of the 100th Meridian Papers</titleproper>
<author>by Beinecke Staff</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>October 1995</date>
<num>WA MSS S-744</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">3147575</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-48</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:34:47-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:34</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1366" level="collection">
<did>
<unittitle>Geographical surveys west of the 100th meridian (U.S.) papers</unittitle>
<unitid>WA MSS S-744</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>5.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">48 boxes</physdesc>
<unitdatestructured altrender="1871-1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1871">1871</fromdate>
<todate standarddate="1877">1877</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_fa3871baa9c57fafb0646814de2538e2">The collection contains letterpress copies of letters signed by Wheeler and other officers of the survey, registers of correspondence sent and received, records of meteorological and topographical observations, atlas sheets, and photographs and stereoscope views of parts of the territory covered by the expeditions.</abstract>
<origination label="Creator">
<corpname>
<part localtype="agent_corporate_entity">Geographical Surveys West of the 100th Meridian (U.S.)</part>
</corpname>
</origination>
</did>
<odd id="aspace_e502ad167c09b421479d2169e98863d8">
<head>General note</head>
<p>Accompanied by typed calendar.</p>
</odd>
<acqinfo id="aspace_5f223dc17b508ab0f21e625fa00f7e4a">
<head>Immediate Source of Acquisition</head>
<p>Unspecified. Please consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_ea8b41cab0a298c3aaa185b10087ae42">
<head>Conditions Governing Use</head>
<p>The Geographical Surveys West of the 100th Meridian 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_be5384c36be053f30aafd790ecf8c064">
<head>Preferred Citation</head>
<p>Geographical Surveys West of the 100th Meridian Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_584619be4fd5056e2496cf488113285c">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<bioghist id="aspace_d45732a77139f4a251fcc1e423b881ae">
<head>HISTORICAL NOTE</head>
<p>The Geographical Surveys West of the 100th Meridian, also known as the Wheeler Survey, grew out of the Army's desire to create maps featuring the geological aspects of the West, man-made improvements, and the "conformation, obstacles and resources of the country." Commanded by Lieutenant George Montague Wheeler, the survey was originally intended to cover the territory lying south of the Central Pacific Railroad, but grew in scope by 1872 to a mapping of all of the United States west of the 100th meridian. The survey ended on June 30, 1879, when the bill creating the U. S. Geological Survey became effective.</p>
</bioghist>
<scopecontent id="aspace_0eb9414289be39410d2e8877fb6085ad">
<head>Scope and Contents</head>
<p>The collection contains letterpress copies of letters signed by George M. Wheeler and other officers of the survey, registers of correspondence sent and received, records of meteorological and topographical observations, atlas sheets, and photographs and stereoscope views of the territory covered by the expeditions.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85128016"
source="lcsh">
<part localtype="topical">Stereoscopic views</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008117423"
source="lcsh">
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Surveys</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Albums</part>
<part localtype="geographic">United States</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photoprints</part>
<part localtype="geographic">United States</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85124578"
source="lcsh">
<part localtype="topical">Soldiers</part>
<part localtype="geographic">United States</part>
</subject>
<persname source="local">
<part localtype="agent_person">Bell, William</part>
</persname>
<persname>
<part localtype="agent_person">O'Sullivan, Timothy H., 1840-1882</part>
</persname>
<persname>
<part localtype="agent_person">Wheeler, George M. (George Montague), 1842-1905</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Geographical Surveys West of the 100th Meridian (U.S.)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/502487"
id="ref11"
level="series">
<did>
<unittitle>Contents List</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/502488"
id="ref12"
level="subseries">
<did>
<unittitle>Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/502489"
id="ref13"
level="subseries">
<did>
<unittitle>Letters Received</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/502490"
id="ref14"
level="file">
<did>
<unittitle>Register of letters received. Explorations in Nevada and Arizona. Calf and red leather.</unittitle>
<unitdatestructured altrender="1872-76" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1876">1876</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65237 /locations/4051"
containerid="39002094361129"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_036f8ab964050557c78a377b6347d864">
<head>Scope and Contents</head>
<p>Date of receipt and file number. Name of writer. Date and subject of letter. Action.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/502491"
id="ref16"
level="subseries">
<did>
<unittitle>Letters Sent</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/502492"
id="ref17"
level="file">
<did>
<unittitle>Record of letters sent by Geo M. Wheeler, with Index. Explorations in Nevada and Arizona. Calf and red leather.</unittitle>
<unitdatestructured altrender="1872-73" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1873">1873</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65238 /locations/4051"
containerid="39002094361137"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_c75c63f9434f7718e9d4c2d8f18fbab6">
<head>Scope and Contents</head>
<p>Letters and notes by Wheeler laid in.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502493"
id="ref19"
level="file">
<did>
<unittitle>Letterpress copies of letters signed by Geo. M. Wheeler with Index. Calf.</unittitle>
<unitdatestructured altrender="1872 Feb-Jun" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872-02">1872 February</fromdate>
<todate standarddate="1872-06">1872 June</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65239 /locations/4051"
containerid="39002091333063"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
<scopecontent id="aspace_1ee766cf268d337c1913785bb5ea2d8e">
<head>Scope and Contents</head>
<p>Letters and notes by Wheeler laid in.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502494"
id="ref21"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler with Index. Morocco.</unittitle>
<unitdatestructured altrender="1873" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1873">1873</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1878" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1878">1878</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65240 /locations/4051"
containerid="39002091333071"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_7a9b1ea51808f905e25f26b53eae10ff">
<head>Scope and Contents</head>
<p>1873 Feb 1-Oct 7; 1878 May 7-10. Letters and notes by Wheeler laid in.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502495"
id="ref23"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler, with Index. No. 11 on spine. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1875 May-Oct" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875-05">1875 May</fromdate>
<todate standarddate="1875-10">1875 October</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65241 /locations/4051"
containerid="39002091333089"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
<scopecontent id="aspace_66d94bd815f701c8cae5b273a416af1c">
<head>Scope and Contents</head>
<p>Letter by Wheeler laid in.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502496"
id="ref25"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler with Index. No. 13 on spine. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1876 Feb-May" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876-02">1876 February</fromdate>
<todate standarddate="1876-05">1876 May</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65242 /locations/4051"
containerid="39002091333097"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
<scopecontent id="aspace_5719067b8dd456ce15a50e1d9e586956">
<head>Scope and Contents</head>
<p>Letterhead laid in.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502497"
id="ref27"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler with Index. No. 14 on spine. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1876 May-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876-05">1876 May</fromdate>
<todate standarddate="1876-11">1876 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65243 /locations/4051"
containerid="39002091333105"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/502498"
id="ref28"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler with Index. No. 15 on spine. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1876-77" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876">1876</fromdate>
<todate standarddate="1877">1877</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65244 /locations/4051"
containerid="39002091333113"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/502499"
id="ref29"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler with Index. No. 16 on spine. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1877 Mar-Oct" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877-03">1877 March</fromdate>
<todate standarddate="1877-10">1877 October</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65245 /locations/4051"
containerid="39002091333121"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/502500"
id="ref30"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler with Index. Press book No. 17. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1877-78" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
<todate standarddate="1878">1878</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65246 /locations/4051"
containerid="39002091333139"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
<scopecontent id="aspace_a99a2a7990287889faa3efdbd7bbd737">
<head>Scope and Contents</head>
<p>Letters from the Field - 1877 Jul 9 - Sep 11. To page 109. Letters. Oct 4, 1877 - Feb 19, 1878, page 110 to page 647.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502501"
id="ref32"
level="file">
<did>
<unittitle>Copies of letters signed by W. Young and Geo. M. Wheeler, with Index. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1878-79" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878">1878</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65247 /locations/4051"
containerid="39002091333147"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/502502"
id="ref33"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler and others, with Index. No. 19 on spine. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1878 May-Sep" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878-05">1878 May</fromdate>
<todate standarddate="1878-09">1878 September</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65248 /locations/4051"
containerid="39002091333154"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">12</container>
</did>
<scopecontent id="aspace_e4f47e7bf00fca3b697d015d17062458">
<head>Scope and Contents</head>
<p>Some original notes laid in.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502503"
id="ref35"
level="file">
<did>
<unittitle>Copies of letters signed by Geo. M. Wheeler and others, with Index. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1880 May-Dec" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1880-05">1880 May</fromdate>
<todate standarddate="1880-12">1880 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65249 /locations/4051"
containerid="39002091333162"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/502504"
id="ref36"
level="subseries">
<did>
<unittitle>Field Notebooks</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/502505"
id="ref37"
level="file">
<did>
<unittitle>Journal of Telegraphic Longitude. Astronomical Department. Journal No. 2. Stations Carlin, Nev.; Battle Mountain, Nev. and Austin, Nev. Calf.</unittitle>
<unitdatestructured altrender="1871 May-Jul" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1871-05">1871 May</fromdate>
<todate standarddate="1871-07">1871 July</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65250 /locations/4051"
containerid="39002091333170"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">14</container>
</did>
<scopecontent id="aspace_092872d093eaffb716ea667bb07e2d7c">
<head>Scope and Contents</head>
<p>Probably written by D. W. Lockwood.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502506"
id="ref39"
level="file">
<did>
<unittitle>Meteorological Records. Book No. 8. Party No. 2, California section. From Camp at Los Angeles to Camp at Star Ranch (No. 20.). Black leather.</unittitle>
<unitdatestructured altrender="1875 Jun-Jul" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875-06">1875 June</fromdate>
<todate standarddate="1875-07">1875 July</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65251 /locations/4051"
containerid="39002091333188"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">15</container>
</did>
<scopecontent id="aspace_3e0d13c8e9c585e5a1c79886426ef70c">
<head>Scope and Contents</head>
<p>Lieut. R. Birnie in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502507"
id="ref41"
level="file">
<did>
<unittitle>Meteorological Records. Barometric Hypsometry Computations. Book No. 11. Virginia special section. From Camp at Antelope Island to Peak "T" Ophir Range. Red leather.</unittitle>
<unitdatestructured altrender="1877 Jul-Sep" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877-07">1877 July</fromdate>
<todate standarddate="1877-09">1877 September</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65252 /locations/4051"
containerid="39002091333196"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">16</container>
</did>
<scopecontent id="aspace_2a7b13a30181468b3c794a00f9e63fbd">
<head>Scope and Contents</head>
<p>Anton Karl in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502508"
id="ref43"
level="file">
<did>
<unittitle>Meteorological. Aneroid Profiles, Computations. Book No. 17. Party No. 1, California section. Camp at Greenhorn Mts. (No. 54) to Camp at Calienti (No. 77.) Black leather.</unittitle>
<unitdatestructured altrender="1875 Oct-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875-10">1875 October</fromdate>
<todate standarddate="1875-11">1875 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65253 /locations/4051"
containerid="39002091333204"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">17</container>
</did>
<scopecontent id="aspace_d8c6f519ad55a3cdff39825f84bee673">
<head>Scope and Contents</head>
<p>Lieut. C. W. Whipple in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502509"
id="ref45"
level="file">
<did>
<unittitle>Transcripts from Field Meteorological Record. Book No. 25. Party No. 3, California section. From Camp 19, Fort Yuma, San Diego County, Cal. to Camp Los Angeles, Los Angeles County, Cal. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1876? Mar-May" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876-03">1876 March</fromdate>
<todate standarddate="1876-05">1876 May</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65254 /locations/4051"
containerid="39002091333212"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">18</container>
</did>
<scopecontent id="aspace_435fdae2aae2bb4a02700c41c34415cf">
<head>Scope and Contents</head>
<p>Lieut. Eric Bergland in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502510"
id="ref47"
level="file">
<did>
<unittitle>Meteorological Transcript. Tri-daily Observations for Reference. Sergeant Eugene Farnham. Book No. 26b. Party No. 3, California section. Los Angeles. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1876 Feb-May" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876-02">1876 February</fromdate>
<todate standarddate="1876-05">1876 May</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65255 /locations/4051"
containerid="39002091333220"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">19</container>
</did>
<scopecontent id="aspace_c8009e65d9875da5cac26333a756244f">
<head>Scope and Contents</head>
<p>Lieut. Eric Bergland in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502511"
id="ref49"
level="file">
<did>
<unittitle>Sextant Astronomical Observations. Astronomical Department. Book No. 27. Los Angeles, Cal. to Camp 65, Elizabeth Lake. Black leather.</unittitle>
<unitdatestructured altrender="1875 Jul-Oct" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875-07">1875 July</fromdate>
<todate standarddate="1875-10">1875 October</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65256 /locations/4051"
containerid="39002091333238"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">20</container>
</did>
<scopecontent id="aspace_53fe1111eb931f1171f46a7c6df1e8c3">
<head>Scope and Contents</head>
<p>Lieut. C. W. Whipple, Observer.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502512"
id="ref51"
level="file">
<did>
<unittitle>Computations of Geodetic Co-ordinates. Triangulation Stations. [Topographical Department.] Book No. 28. (Utah). 3/4 morocco.</unittitle>
<unitdatestructured altrender="1878" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1878">1878</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65257 /locations/4051"
containerid="39002091333246"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
<scopecontent id="aspace_b9ca8f66dab497301b9234a1e05f2bbf">
<head>Scope and Contents</head>
<p>Lieut. M. Macomb and others.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502513"
id="ref53"
level="file">
<did>
<unittitle>Meteorological Records. Book No. 32. Summit of Kenoshak Range to Camp 21, West Plum Cr. Leather.</unittitle>
<unitdatestructured altrender="1873 Jul-Dec" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1873-07">1873 July</fromdate>
<todate standarddate="1873-12">1873 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65258 /locations/4051"
containerid="39002091333253"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">22</container>
</did>
<scopecontent id="aspace_9331130b223623cf9980ed9c81451870">
<head>Scope and Contents</head>
<p>Dr. J. T. Rothrock in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502514"
id="ref55"
level="file">
<did>
<unittitle>Meteorological Records. Aneroid and Odometer. Book No. 42. Party No. 1, California section. From Camp 32 at Elliotts Ranch, Cal. to Camp 44, at Huffakers Ranch, Nev. Red leather.</unittitle>
<unitdatestructured altrender="1876 Oct-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876-10">1876 October</fromdate>
<todate standarddate="1876-11">1876 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65259 /locations/4051"
containerid="39002091333261"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">23</container>
</did>
<scopecontent id="aspace_6ab0225e45cb8db295ab678cc9e6115e">
<head>Scope and Contents</head>
<p>Lieut. S. E. Tillman in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502515"
id="ref57"
level="file">
<did>
<unittitle>Field Journal. Book No. 50. Full morocco.</unittitle>
<unitdatestructured altrender="[1877] May-Nov"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877-05">1877 May</fromdate>
<todate standarddate="1877-11">1877 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65260 /locations/4051"
containerid="39002091333279"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">24</container>
</did>
<scopecontent id="aspace_dc1c4c2b1ff58b49fc75e8e0db46f828">
<head>Scope and Contents</head>
<p>This diary by a member of Wheeler's Survey gives a picture of camp life in northwestern Nevada and northeastern California. 73 p.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502516"
id="ref59"
level="file">
<did>
<unittitle>[Original maps] No. 52. Topographical Department. Book No. 1. Salt Lake City to Camp near Spanish Fork, Utah. Also Aneroid Readings from Salt Lake City to Chicago on line of R.R. Full morocco.</unittitle>
<unitdatestructured altrender="1872-73" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1873">1873</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65261 /locations/4051"
containerid="39002091333287"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">25</container>
</did>
<scopecontent id="aspace_65811d011f188496fb72c3b96787cc1b">
<head>Scope and Contents</head>
<p>Gilbert Thompson, Topographer.</p>
</scopecontent>
<scopecontent id="aspace_a2501fc2d090fe5f6675ce2f3fb550e1">
<head>Scope and Contents</head>
<p>The map, by Weyss and Thompson, on the inside front cover is probably the first topographical map of Salt Lake City and vicinity.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502517"
id="ref62"
level="file">
<did>
<unittitle>[Original maps] No. 55. Topographical Department. Near Salina through Grass Valley to Beaver and ascent of Baldy Peak. Full morocco.</unittitle>
<unitdatestructured altrender="1872-73" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1873">1873</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65262 /locations/4051"
containerid="39002091333295"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/502518"
id="ref63"
level="file">
<did>
<unittitle>Meteorological Records. Aneroid and Odometer. Book No. 56. Party No. 2, California section. From Camp at San Andreas, Cal. to Camp at Carson, Nev. Full morocco.</unittitle>
<unitdatestructured altrender="1877 Oct-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877-10">1877 October</fromdate>
<todate standarddate="1877-11">1877 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65263 /locations/4051"
containerid="39002091333303"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">27</container>
</did>
<scopecontent id="aspace_f4c920b2710bc3ddc24d08dd81d664e6">
<head>Scope and Contents</head>
<p>Lieut. M. M. Macomb in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502519"
id="ref65"
level="file">
<did>
<unittitle>[Original maps] No. 74. Topographical Department. Surveys from 1st Camp on Provo River to Strawberry Valley, Thistel Valley over the Mountains to Camp in wide valley (no name.) Calf.</unittitle>
<unitdatestructured altrender="1872 Aug 11-25"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872-08-11">1872 August 11</fromdate>
<todate standarddate="1872-08-25">1872 August 25</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65264 /locations/4051"
containerid="39002091333311"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">28</container>
</did>
<scopecontent id="aspace_cd9f233016628ca8919e1b95eb35e031">
<head>Scope and Contents</head>
<p>Notes of Mr. Severin from Mt. Nebo.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502520"
id="ref67"
level="file">
<did>
<unittitle>Meteorological Records. Aneroid Profile Computations. Book No. 76. Party No. 2, California section. From Camp at Walker River Canon, Cal. to Camp at Bridal Veil Meadow, Cal. 3/4 morocco.</unittitle>
<unitdatestructured altrender="1878 Sep-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878-09">1878 September</fromdate>
<todate standarddate="1878-11">1878 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65265 /locations/4051"
containerid="39002091333329"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">29</container>
</did>
<scopecontent id="aspace_c65bec7a43f2d4df69f7c5ebe6341cc0">
<head>Scope and Contents</head>
<p>Lieut. M. M. Macomb in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502521"
id="ref69"
level="file">
<did>
<unittitle>Meteorological Records. Book No. 85. Party No. 4, California section. From Sutro, Nevada to Mt. Davies, Nevada. Full morocco.</unittitle>
<unitdatestructured altrender="1876 Sep-Oct" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876-09">1876 September</fromdate>
<todate standarddate="1876-10">1876 October</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65266 /locations/4051"
containerid="39002091333337"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">30</container>
</did>
<scopecontent id="aspace_d627b74b60a3ea657780cc6875cab19c">
<head>Scope and Contents</head>
<p>Wm. A. Cowles, Meterological Observer. Lieut. R. Birnie, Corps of Engineers, in charge.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502522"
id="ref71"
level="file">
<did>
<unittitle>Odometer Readings and Topographical Mapping. Book No. 93. From Rendezvous Camp near Ft. Wingate to Base line near Ft. Garland. Full morocco.</unittitle>
<unitdatestructured altrender="1873 Aug-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1873-08">1873 August</fromdate>
<todate standarddate="1873-11">1873 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65267 /locations/4051"
containerid="39002091333345"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/502523"
id="ref72"
level="file">
<did>
<unittitle>Computations. Topographical Meanders and Data. Book No. 115. Party No. 2. Flagstaff, Fort Wingate (Camp 62) to Ralston, N.M. and Pescao Springs (Camp 115). Calf.</unittitle>
<unitdatestructured altrender="1873 Sep-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1873-09">1873 September</fromdate>
<todate standarddate="1873-11">1873 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65268 /locations/4051"
containerid="39002091333352"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">32</container>
</did>
<scopecontent id="aspace_1544324705e9047477b02c571d799ab1">
<head>Scope and Contents</head>
<p>Lieut. Hoxie.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502524"
id="ref74"
level="file">
<did>
<unittitle>Meteorological Records. Book No. 121. Party No. 2, Colorado section. From Camp No. 48 on Rio Sacramento to Camp No. 55 at Fort Stanton. Full black morocco.</unittitle>
<unitdatestructured altrender="1878 Nov-Dec" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878-11">1878 November</fromdate>
<todate standarddate="1878-12">1878 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65269 /locations/4051"
containerid="39002091333360"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">33</container>
</did>
<scopecontent id="aspace_70eb884e2cd001807a17eefc55fb2adc">
<head>Scope and Contents</head>
<p>Lieut. Griffin in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502525"
id="ref76"
level="file">
<did>
<unittitle>Topographical Records. Book No. 131. Party No. 1. From Del Norte, Camp No. 58 to Trinidad, Camp No. 70. Full green morocco.</unittitle>
<unitdatestructured altrender="1874 Oct-Nov" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1874-10">1874 October</fromdate>
<todate standarddate="1874-11">1874 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65270 /locations/4051"
containerid="39002091333378"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">34</container>
</did>
<scopecontent id="aspace_30b71da49a7d6e23a7d936a17f6c7f7d">
<head>Scope and Contents</head>
<p>Louis Nell, topographer.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502526"
id="ref78"
level="file">
<did>
<unittitle>Topographical Records. Book No. 171. Party No. 1, Colorado section. Full brown morocco.</unittitle>
<unitdatestructured altrender="1875 Jun-Jul" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875-06">1875 June</fromdate>
<todate standarddate="1875-07">1875 July</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65271 /locations/4051"
containerid="39002091333386"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">35</container>
</did>
<scopecontent id="aspace_5467e4e8f5dded9082a18ca90812ca5b">
<head>Scope and Contents</head>
<p>Lieut. W. L. Marshall, Corps of Engineers, in charge. In Colorado, J. Calvert Spiller, Topographical Assistant.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502527"
id="ref80"
level="file">
<did>
<unittitle>Topographical Records. Triangulation. Book No. 200. Atlas Sheet No. 73c, 73d, 80a. Party No. 3, California section. Full black morocco.</unittitle>
<unitdatestructured altrender="1875 Sept 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1875-09-27">1875 Sept 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65272 /locations/4051"
containerid="39002091333394"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">36</container>
</did>
<scopecontent id="aspace_7b225f3cfc1f47dde7a8c1de331d5bf7">
<head>Scope and Contents</head>
<p>G. Thompson, Observer. 1st Lieut. Eric Bergland in charge of party.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/502528"
id="ref82"
level="file">
<did>
<unittitle>Topographical Records. Book No. 201. Main Party. From Peak (Branch of Rio Conejos) Camp 9 to Old Ft. Wingate. Camp 35. Full brown morocco.</unittitle>
<unitdatestructured altrender="1875 Jun-Aug" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875-06">1875 June</fromdate>
<todate standarddate="1875-08">1875 August</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/65273 /locations/4051"
containerid="39002091333402"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">37</container>
</did>
<scopecontent id="aspace_a489a52918ce77fefbc5bfc17893e991">
<head>Scope and Contents</head>
<p>Topographer Anton Karl.</p>
</scopecontent>