-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1081.xml
1522 lines (1522 loc) · 81.4 KB
/
1081.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.blagden">beinecke.blagden</recordid>
<otherrecordid localtype="BIB">3948790</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Sir Charles Blagden Papers
</titleproper>
<titleproper localtype="filing">Blagden (Sir Charles) Papers</titleproper>
<author>by Diane J. Ducharme and Olivia Hillmer</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>July 2010</date>
<num>OSB MSS 51</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">3948790</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1, 3-8</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="4">4</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="135">135</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>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>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:08:50-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:08</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1081" level="collection">
<did>
<unittitle>Sir Charles Blagden papers</unittitle>
<unitid>OSB MSS 51</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>In English, with a small amount of French and Latin.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.34</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">8 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1616">1616</fromdate>
<todate standarddate="1861">1861</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1770">1770</fromdate>
<todate standarddate="1800">1800</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_ab9c6e8cbd5324537ec3f69f9b6e0a51">The Sir Charles Blagden Papers contain scientific and travel notes, correspondence, and printed material documenting aspects of the life and scientific work of Sir Charles Blagden. These include observations on travel in England and on the continent in the 1780s; memoranda on scientific experiments and observations, including notes by Lavoisier; letters to his brother, John Blagden Hale; and proof sheets of Philosophical Transactions for 1789.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Blagden, Charles, Sir, 1748-1820</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_ce782f09ea90baf0f9191da67574f586">
<head>Immediate Source of Acquisition</head>
<p>Bequest of James Marshall Osborn, 1976.</p>
</acqinfo>
<accessrestrict id="aspace_3da66decbbff864e4f7b5773c5b767b1">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_829ac449fe87e24f66b66af9d6a72218">
<head>Conditions Governing Use</head>
<p>The Sir Charles Blagden Papers 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>
<prefercite id="aspace_ea8a4418a54ff391fedf414e9baa13e0">
<head>Preferred Citation</head>
<p>Sir Charles Blagden Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_0b71c7daaa9e0307238f4deb9d40c166">
<head>Processing Information</head>
<p>This collection was arranged and partially cataloged by library staff in the 1970s. That arrangement has been preserved, and the folder titles appearing in the contents list below are those provided by the staff at that time. Information included in the Description of Papers note and Collection Contents section is drawn from a dealer description and from individual catalog cards.</p>
</processinfo>
<bioghist id="aspace_716c241ff13fbebff3105b24a9359c84">
<head>Sir Charles Blagden (1748-1820)</head>
<p>Sir Charles Blagden was born in Gloucestershire, England in 1748. He received his M.D. from the University of Edinburgh in 1768. He was elected a Fellow of the Royal Society in 1772, where he met and became friends with Joseph Banks. After serving as a surgeon in the British Army during the American revolution, Blagden returned to London, where by early 1783 he had become an assistant to the eccentric scientist Henry Cavendish. Blagden assisted Cavendish until 1789, and Cavendish provided him with a life annuity; he later bequeathed Blagden 15,000 pounds.</p>
<p>Blagden was elected one of the secretaries of the Royal Society in 1784, and remained loyal to its president Joseph Banks throughout the many controversies of the following decade. He visited continental Europe annually until the French Revolution and was elected a corresponding member of the Académie des Sciences in 1789; his friends included Antoine Lavoisier, Georges Cuvier, and Claude Louis Berthollet.</p>
<p>Blagden was involved in the "water controversy" that began in 1783. This was a dispute among Lavoisier, Cavendish, and James Watt over who was the first to discover that water is a compound; as Cavendish's assistant and secretary of the Royal Society, Blagden played a central role in the still-unsettled contest. The most important of Blagden's own discoveries was published in 1788. His demonstration that the freezing point of a solution decreases in direct proportion to the concentration of the solution is known as "Blagden's law."</p>
<p>Although Blagden courted Lavoisier's widow and Count Rumsford's daughter, among others, he remained unmarried. He died of apoplexy at the home of his friend Berthollet, near Paris, in March of 1820, and was buried in the cemetery of Père Lachaise.</p>
</bioghist>
<scopecontent id="aspace_d13c4bc08139868f213e9869a37aa6d6">
<head>Scope and Contents</head>
<p>The Sir Charles Blagden Papers contain scientific and travel notes, correspondence, and printed material documenting aspects of the life and scientific work of Sir Charles Blagden. These include observations on travel in England and on the continent in the 1780s; memoranda on scientific experiments and observations, including notes by Lavoisier; letters to his brother, John Blagden Hale; and proof sheets of <emph render="italic">Philosophical Transactions</emph> for 1789.</p>
</scopecontent>
<arrangement id="aspace_601afeefcc38d001eabeaf752b235ddb">
<head>Arrangement</head>
<p>Organized into four series. I. Travel Records and Observations, 1772-1788. II. Scientific and Personal Papers, 1616-1861. III. Correspondence, 1785-1799. IV. Documents Related to the Royal Society of London, 1780-1792.</p>
</arrangement>
<controlaccess>
<title identifier="http://id.loc.gov/authorities/names/n86721536"
source="lcsh">
<part localtype="uniform_title">Philosophical transactions of the Royal Society of London. Series B, Biological sciences</part>
</title>
<subject source="local">
<part localtype="topical">Science</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85118586"
source="lcsh">
<part localtype="topical">Science</part>
<part localtype="topical">Societies, etc.</part>
</subject>
<subject source="local">
<part localtype="topical">Scientists</part>
<part localtype="geographic">Great Britain</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85051207"
source="lcsh">
<part localtype="geographic">France</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056663"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056855"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Intellectual life</part>
<part localtype="temporal">18th century</part>
</geogname>
<persname>
<part localtype="agent_person">Banks, Joseph, 1743-1820</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Blagden, Charles, Sir, 1748-1820</part>
</persname>
<persname source="local">
<part localtype="agent_person">Hale, John Blagden</part>
</persname>
<persname source="local">
<part localtype="agent_person">Hale, Richard Blagden</part>
</persname>
<persname>
<part localtype="agent_person">Lavoisier, Antoine Laurent, 1743-1794</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Roy, William, 1726-1790</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Royal Society (Great Britain)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/390967"
id="ref11"
level="series">
<did>
<unittitle>Travel Records and Observations</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1772-1788" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1772">1772</fromdate>
<todate standarddate="1788">1788</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_90ab32daf9899205628c5430168af0c4">
<head>Arrangement</head>
<p>Blagden's notes on travel are roughly chronologically arranged, followed by several folders of extracts from various travel narratives.</p>
</arrangement>
<scopecontent id="aspace_14e946023d2d58d40461fa56bef76ef2">
<head>Scope and Contents</head>
<p>
<title localtype="simple" render="italic">
<part>Series I</part>
</title> includes observations by Blagden on travels in England and on the continent during the 1780s, as well as notes given by Lavoisier and Guyot to Blagden, as well as several folders of extracts from various travel narratives.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/390968"
id="ref13"
level="file">
<did>
<unittitle>Blagden, Sir Charles; records of his travels</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1783-1787, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1783">1783</fromdate>
<todate standarddate="1787">1787</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/280112">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10034810"
identifier="oid:10034810"
linktitle="99 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1386367/full/!150,150/0/default.jpg"
identifier="oid:10034810"
linktitle="99 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10034810"
identifier="oid:10034810"
linktitle="99 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Blagden, Sir Charles; records of his travels</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390969"
id="ref15"
level="file">
<did>
<unittitle>Blagden, Sir Charles; papers on his visit to France</unittitle>
<unitdatestructured altrender="1787 September-1787 October"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1787-09">1787 September</fromdate>
<todate standarddate="1787-10">1787 October</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/280111">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16683686"
identifier="oid:16683686"
linktitle="31 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16683747/full/!150,150/0/default.jpg"
identifier="oid:16683686"
linktitle="31 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16683686"
identifier="oid:16683686"
linktitle="31 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Blagden, Sir Charles; papers on his visit to France</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390970"
id="ref16"
level="file">
<did>
<unittitle>Lavoisier, A.L.; sketches of hills near Paris</unittitle>
<unitdatestructured altrender="1788 July 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-07-10">1788 July 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390971"
id="ref17"
level="file">
<did>
<unittitle>Blagden, Sir Charles; Alpine visits</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390972"
id="ref18"
level="file">
<did>
<unittitle>Blagden, Sir Charles; notes on Lapland, Iceland</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390973"
id="ref19"
level="file">
<did>
<unittitle>Guyot; mineralogy between Paris and Fountainbleau</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/280110">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16683687"
identifier="oid:16683687"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16683778/full/!150,150/0/default.jpg"
identifier="oid:16683687"
linktitle="4 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16683687"
identifier="oid:16683687"
linktitle="4 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Guyot; mineralogy between Paris and Fountainbleau</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390974"
id="ref20"
level="file">
<did>
<unittitle>Blagden, Sir Charles; misc. geographical notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390975"
id="ref21"
level="file">
<did>
<unittitle>Blagden, Sir Charles; extracts from Brydone travels</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390976"
id="ref22"
level="file">
<did>
<unittitle>Blagden, Sir Charles; extracts from Burnaby's travels through North America</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390977"
id="ref23"
level="file">
<did>
<unittitle>Blagden, Sir Charles; extracts from Hawkins' voyages</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390978"
id="ref24"
level="file">
<did>
<unittitle>Niebuhr, Karsten; Beschreibung von Arabien, extracts made by Sir C. Blagden</unittitle>
<unitdatestructured altrender="1772" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1772">1772</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/390979"
id="ref27"
level="series">
<did>
<unittitle>Scientific and Personal Papers</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1616-1861" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1616">1616</fromdate>
<todate standarddate="1861">1861</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_a0d2a06d59ee1b8dc94d94015856905d">1.67 linear feet (4 boxes)</physdesc>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<arrangement id="aspace_b27617b4b133c0b6275ca9551519f100">
<head>Arrangement</head>
<p>A group of scientific notes is followed by a group of personal papers, but the series is otherwise unarranged.</p>
</arrangement>
<scopecontent id="aspace_85233bb88c4691686126a8317bc4b34f">
<head>Scope and Contents</head>
<p>The scientific papers include memoranda and correspondence concerning observations of meteors and fireballs; notes on experiments in freezing, including attempts to supercool water; and lightning conductors. Personal papers include financial papers; notes on reading and extracts from jestbooks; memoranda; and a few printed items owned by Blagden.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/390980"
id="ref29"
level="file">
<did>
<unittitle>Blagden, Sir Charles; meteors and fireballs</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390981"
id="ref31"
level="file">
<did>
<unittitle>Blagden, Sir Charles; experiments on freezing</unittitle>
<unitdatestructured altrender="[circa 1788]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788">[circa 1788]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390982"
id="ref32"
level="file">
<did>
<unittitle>Blagden, Sir Charles; calendar of birds, fish and wildlife (at Sheepshead?)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390983"
id="ref33"
level="file">
<did>
<unittitle>Blagden, Sir Charles; notes on earthquakes in Scotland</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390984"
id="ref34"
level="file">
<did>
<unittitle>Blagden, Sir Charles; observations on the temperature of wells</unittitle>
<unitdatestructured altrender="1788" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788">1788</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390985"
id="ref35"
level="file">
<did>
<unittitle>Blagden, Sir Charles; a study of old inks</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390986"
id="ref36"
level="file">
<did>
<unittitle>Lightning conductors</unittitle>
<unitdatestructured altrender="1782" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1782">1782</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390987"
id="ref37"
level="file">
<did>
<unittitle>Blagden, Sir Charles; alum works at Land's End and near Mulgrave</unittitle>
<unitdatestructured altrender="1775 August" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1775-08">1775 August</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390988"
id="ref38"
level="file">
<did>
<unittitle>Blagden, Sir Charles; miscellaneous scientific papers</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390989"
id="ref39"
level="file">
<did>
<unittitle>Blagden, Sir Charles; discovery of the vault of King Edward IV at Windsor</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38524 /locations/4051"
containerid="39002099370893"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390990"
id="ref40"
level="file">
<did>
<unittitle>Blagden, Sir Charles; miscellaneous notes</unittitle>
<unitdatestructured altrender="1786-1787" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1786">1786</fromdate>
<todate standarddate="1787">1787</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38525 /locations/4051"
containerid="39002099370919"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390991"
id="ref41"
level="file">
<did>
<unittitle>Blagden, Sir Charles; miscellaneous notes</unittitle>
<unitdatestructured altrender="1789" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1789">1789</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38525 /locations/4051"
containerid="39002099370919"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390992"
id="ref42"
level="file">
<did>
<unittitle>Blagden, Sir Charles; miscellaneous notes</unittitle>
<unitdatestructured altrender="1791" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1791">1791</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38525 /locations/4051"
containerid="39002099370919"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390993"
id="ref43"
level="file">
<did>
<unittitle>Blagden, Sir Charles; miscellaneous memoranda</unittitle>
<unitdatestructured altrender="1818-1819" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1818">1818</fromdate>
<todate standarddate="1819">1819</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38525 /locations/4051"
containerid="39002099370919"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390994"
id="ref44"
level="file">
<did>
<unittitle>Blagden, Sir Charles; "memorandums at the Academy"</unittitle>
<unitdatestructured altrender="1818 June - 1818 August"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1818-06">1818 June</fromdate>
<todate standarddate="1818-08">1818 August</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38525 /locations/4051"
containerid="39002099370919"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390995"
id="ref45"
level="file">
<did>
<unittitle>Blagden, Sir Charles; miscellaneous memoranda</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38525 /locations/4051"
containerid="39002099370919"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390996"
id="ref47"
level="file">
<did>
<unittitle>Papers read at the Royal Society; lists of titles</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38526 /locations/4051"
containerid="39002099370927"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390997"
id="ref48"
level="file">
<did>
<unittitle>Blagden, Sir Charles; miscellaneous literary and other memoranda</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38526 /locations/4051"
containerid="39002099370927"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390998"
id="ref49"
level="file">
<did>
<unittitle>Blagden, Sir Charles; books, publications, literary references</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38526 /locations/4051"
containerid="39002099370927"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390999"
id="ref50"
level="file">
<did>
<unittitle>Blagden, Sir Charles; his collection of tales, jests and witticisms</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38526 /locations/4051"
containerid="39002099370927"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391000"
id="ref51"
level="file">
<did>
<unittitle>Verses</unittitle>
<unitdatestructured altrender="1786" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1786">1786</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38526 /locations/4051"
containerid="39002099370927"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391001"
id="ref52"
level="file">
<did>
<unittitle>Blagden, Sir Charles; money, bills, receipts, etc.</unittitle>
<unitdatestructured altrender="[1780s]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1780">1780</fromdate>
<todate standarddate="1789">1789</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38526 /locations/4051"
containerid="39002099370927"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391002"
id="ref53"
level="file">
<did>
<unittitle>Dix and Co., John (Bristol); invoices to R.B. Hale for glass</unittitle>
<unitdatestructured altrender="1861" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861">1861</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38526 /locations/4051"
containerid="39002099370927"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391003"
id="ref54"
level="file">
<did>
<unittitle>Blagden, Sir Charles; Vocabulary</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391004"
id="ref55"
level="file">
<did>
<unittitle>Aristoxenes et al.; Treatises on Music</unittitle>
<unitdatestructured altrender="1616" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1616">1616</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391005"
id="ref56"
level="file">
<did>
<unittitle>The Royal Society; Membership</unittitle>
<unitdatestructured altrender="1789" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1789">1789</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391006"
id="ref57"
level="file">
<did>
<unittitle>Mannheim; proposed meteorology in 5 vols.</unittitle>
<unitdatestructured altrender="1787 May" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1787-05">1787 May</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391007"
id="ref58"
level="file">
<did>
<unittitle>Cavendish Society; report for 1850</unittitle>
<unitdatestructured altrender="1850" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1850">1850</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391008"
id="ref59"
level="file">
<did>
<unittitle>Bassett, Joseph Davie; proposal for a bill on boundaries of county divisions</unittitle>
<unitdatestructured altrender="[circa 1820]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1820">[circa 1820]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391009"
id="ref60"
level="file">
<did>
<unittitle>Royal Society; <title localtype="simple" render="italic">
<part>Philosophical Transactions</part>
</title> vol LXXIX p. 156</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391010"
id="ref61"
level="file">
<did>
<unittitle>Tanteo, Embrenio</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391011"
id="ref62"
level="file">
<did>
<unittitle>Legal notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38527 /locations/4051"
containerid="39002099370935"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391012"
id="ref63"