-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00000017.xml
1954 lines (1916 loc) · 120 KB
/
00000017.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"?>
<!--created by the Metadata Analysis and Specification Unit, Metadata Services Department, University of California, San Diego.-->
<!--<METS_Profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd">-->
<METS_Profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd"
xmlns="http://www.loc.gov/METS_Profile/">
<URI LOCTYPE="URL">http://www.loc.gov/mets/profiles/00000017.xml</URI>
<title>UCSD Complex Object Profile</title>
<abstract> The UCSD Libraries uses the UCSD Complex Object profile for composing METS instances
for digital objects in which the primary content of the digital object is contained in two
or more digital files. The content files may be of any format type, e.g., audio, image,
text, or video, and there can be any combination of formats within a single complex object.
There are no restrictions placed on the type of logical structure represented in the complex
object. The decision to require a complex object’s structure to be represented by both
physical and logical <structMap>s, as described in the profile, is influenced
by the current requirements of the METS Navigator application. </abstract>
<date>2007-07-30T10:53:31</date>
<contact>
<name>Digital Library Office</name>
<address>Geisel Library, UC, San Diego</address>
<email>[email protected]</email>
</contact>
<related_profile RELATIONSHIP="Extends"
URI="http://www.loc.gov/standards/mets/profiles/00000012.xml">UCSD Simple Object Profile</related_profile>
<extension_schema>
<name>MODS</name>
<URI>http://www.loc.gov/standards/mods/v3/mods-3-2.xsd</URI>
<context>mets/dmdSec/mdWrap/xmlData</context>
<note>Used for descriptive metadata representing the intellectual object.</note>
</extension_schema>
<extension_schema>
<name>PREMIS</name>
<URI>http://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd</URI>
<context>mets/amdSec/techMD/mdWrap/xmlData</context>
<note>Used for technical metadata about content files.</note>
</extension_schema>
<extension_schema>
<name>METSRights</name>
<URI>http://cosimo.stanford.edu/sdr/metsrights.xsd</URI>
<context>mets/amdSec/rightsMD/mdWrap/xmlData</context>
<note>Used for recording intellectual property rights.</note>
</extension_schema>
<description_rules>
<p>All applications of MODS in UCSD METS records adhere to the MODS User Guidelines
published by the Library of Congress's Network Development and MARC Standards Office.</p>
<p>MODS usage in UCSD METS records is also informed by The Digital Library Federation /
Aquifer Implementation Guidelines for Shareable MODS Records.</p>
</description_rules>
<controlled_vocabularies>
<vocabulary>
<name>UCSD file USE attribute values</name>
<maintenance_agency>University of California, San Diego</maintenance_agency>
<values>
<value>Application-PDF</value>
<value>Application-PS</value>
<value>Audio-Master</value>
<value>Audio-Master-Edited</value>
<value>Audio-Service</value>
<value>Audio-Streaming</value>
<value>Audio-Clip</value>
<value>Image-Master</value>
<value>Image-Master-Edited</value>
<value>Image-Service</value>
<value>Image-Service-LowRes</value>
<value>Image-Service-MedRes</value>
<value>Image-Service-HighRes</value>
<value>Image-Service-Edited</value>
<value>Image-Thumbnail</value>
<value>Text-OCR-Edited</value>
<value>Text-OCR-Unedited</value>
<value>Text-TEI-Translated</value>
<value>Text-TEI-Transcripted</value>
<value>Text-Georeference</value>
<value>Text-Data</value>
<value>Text-Data Definition</value>
<value>Text-Codebook</value>
<value>Video-Master</value>
<value>Video-Master-Edited</value>
<value>Video-Service</value>
<value>Video-Streaming</value>
<value>Video-Clip</value>
</values>
<context ID="vc1" RELATEDMAT="fileSec2">
<p>mets/fileSec/fileGrp/@USE</p>
<p>mets/fileSec/fileGrp/file/@USE</p>
</context>
<description>
<p>These are the values supported for <file> and
<fileGrp> USE attributes for digital objects conforming to this
profile.</p>
</description>
</vocabulary>
</controlled_vocabularies>
<structural_requirements>
<metsRootElement>
<requirement ID="metsRoot1">
<p>The root <mets> element must include a LABEL attribute value. </p>
</requirement>
<requirement ID="metsRoot2">
<p>The root <mets> element must include a PROFILE attribute value.
</p>
</requirement>
<requirement ID="metsRoot3">
<p>The root <mets> element must include an OBJID attribute value that
uniquely identifies the METS instance in the UCSD digital repository. The value
must be an ARK. .</p>
</requirement>
</metsRootElement>
<metsHdr>
<requirement ID="metsHdr1">
<p>A METS record conforming to this profile must contain a <metsHdr>
element. </p>
</requirement>
<requirement ID="metsHdr2">
<p>The <metsHdr> element must contain the CREATEDATE attribute. </p>
</requirement>
<requirement ID="metsHdr3">
<p>The <metsHdr> element must contain an <agent> with
the ROLE attribute value "CREATOR" and a TYPE attribute value "ORGANIZATION".
</p>
</requirement>
<requirement ID="metsHdr4">
<p>The <agent> element must contain the <name> element
with the value "Digital Library Office, Geisel Library, University of
California, San Diego", and a <note> element with the value
"mailto:[email protected]". </p>
</requirement>
<requirement ID="metsHdr5">
<p>The <metsHdr> element should, but is not required to, contain a
LASTMODDATE attribute reflecting the date of the last modification to the METS
record. </p>
</requirement>
</metsHdr>
<dmdSec>
<requirement ID="dmdSec1">
<p>A METS record conforming to this profile must contain at least one
<dmdSec> containing a <mdWrap> with
<xmlData>. </p>
</requirement>
<requirement ID="dmdSec2">
<p>All <dmdSec> elements must contain an ID attribute.</p>
</requirement>
<requirement ID="dmdSec3">
<p>The required dmdSec/mdWrap/xmlData must contain elements from the Metadata Object
Description Schema (MODS) and describe the digital object as a whole. </p>
</requirement>
<requirement ID="dmdSec4">
<p>A conforming METS record must contain a mods/titleInfo/title element. </p>
</requirement>
<requirement ID="dmdSec5">
<p>A conforming METS record must contain a mods/typeOfResource element for which the
value must be taken from the MODS typeOfResource values. Type of resource values
should be determined by the materials content not the file format. For example
an image of a page of text should have the value "text".</p>
</requirement>
<requirement ID="dmdSec6">
<p>A conforming METS record must contain a mods/identifier element, with the
attribute TYPE="ARK". The element should contain the actionable URL ARK for the
digital object as a whole, not a constituent file. </p>
</requirement>
<requirement ID="dmdSec7">
<p>A conforming METS record must contain a mods/note element, with the attribute
displayLabel="Digital object made available by". The element should name the
UCSD Libraries' data provider that is primarily responsible for making the
resource available digitally with the URL for the provider's main webpage, e.g.
Mandeville Special Collections Library, University of California, San Diego, La
Jolla, CA 92093-0175 (http://orpheus.ucsd.edu/speccoll/)</p>
</requirement>
<requirement ID="dmdSec8">
<p>A conforming METS record should, but is not required to, contain the following
descriptive metadata elements when they are applicable: creator
(mods/name/namePart), date of creation (mods/originInfo/dateCreated), genre
(mods/genre), description (mods/abstract), subject (mods/subject/...), language
of the object (mods/language), publisher (mods/originInfo/publisher), place of
publication (mods/originInfo/place) and the name of the project or collection to
which the object belongs (mods/relatedItem/titleInfo/title). </p>
</requirement>
<requirement ID="dmdSec9">
<p>If present, descriptive metadata for each component part of the digital object
must be placed in a separate <dmdSec> element and expressed with
the MODS metadata schema.</p>
</requirement>
<requirement ID="dmdSec10">
<p>If parallel description, in a schema other than MODS (e.g., Dublin Core, VRA,
FGDC, etc.), is provided for the object or its components, each parallel
description must be placed in a separate <dmdSec> element. When
adding elements from metadata schemas these should conform to standardized
guidelines for the schema. </p>
</requirement>
</dmdSec>
<amdSec>
<requirement ID="amdSec1">
<p>A METS record conforming to this profile must have an <amdSec>
section. The <amdSec> section must contain at least one
techMD/mdWrap/xmlData section for each master file and at least one
rightsMD/mdWrap/xmlData section pertaining to the digital object as a whole.
</p>
</requirement>
<requirement ID="amdSec2">
<p>All <techMD> and <rightsMD> elements must contain an
ID attribute.</p>
</requirement>
<requirement ID="techMD1">
<p>The required <techMD> sections must contain elements from the
PREMIS schema. </p>
</requirement>
<requirement ID="techMD2">
<p>The required <techMD> sections should describe the digital files of
the greatest archival quality. </p>
</requirement>
<requirement ID="techMD3">
<p>A conforming METS record must contain a
pre/object/objectIdentifier/objectIdentifierType element with the value "ARK",
and a pre/object/objectIdentifier/objectIdentifierValue element with the unique
ID. </p>
</requirement>
<requirement ID="techMD4">
<p>A conforming METS record must contain a pre/object/preservationLevel element. The
value should be either "Full" or "Bit-level". </p>
</requirement>
<requirement ID="techMD5">
<p>A conforming METS record must contain a pre/object/objectCategory element. The
value should be "File". </p>
</requirement>
<requirement ID="techMD6">
<p>A conforming METS record must contain a
pre/object/objectCharacteristics/compositionLevel element. The value should be
"0" for uncompressed files.</p>
</requirement>
<requirement ID="techMD7">
<p>A conforming METS record must contain a
pre/object/objectCharacteristics/fixity/messageDigestAlgorithm element and a
pre/object/objectCharacteristics/fixity/messageDigest element. </p>
</requirement>
<requirement ID="techMD8">
<p>A conforming METS record must contain a pre/object/objectCharacteristics/size
element. </p>
</requirement>
<requirement ID="techMD9">
<p>A conforming METS record must contain a
pre/object/objectCharacteristics/format/formatName element. </p>
</requirement>
<requirement ID="techMD10">
<p>A conforming METS record must contain a
pre/object/creatingApplication/dateCreatedByApplication element. </p>
</requirement>
<requirement ID="techMD11">
<p>A conforming METS record should, but is not required to, include the following
PREMIS elements: medium on which the object is stored
(pre/object/storage/storageMedium), file format version
(pre/object/objectCharacteristics/formatDesignation/formatVersion), name of the
application that created the file
(pre/object/creatingApplication/creatingApplicationName), and the original file
name (pre/object/originalName) </p>
</requirement>
<requirement ID="techMD12">
<p>Additional <techMD> sections may, but are not required to, be used
for the description of files other than the master file, or for inclusion of
format specific metadata for any file.</p>
</requirement>
<requirement ID="techMD13">
<p>Additional format specific <techMD> sections for the description of
images must be expressed with the MIX schema.</p>
</requirement>
<requirement ID="techMD14">
<p>Additional format specific <techMD> sections for the description of
text must be expressed with the TextMD schema.</p>
</requirement>
<requirement ID="techMD15">
<p>Additional format specific <techMD> sections for the description of
audio or video, should conform to an extension schema endorsed by the METS
Editorial Board (although at this date of publication extension schemas have not
yet been endorsed for audio or video). </p>
</requirement>
<requirement ID="techMD16">
<p>Source or provenance metadata expressed as MIX pertaining to image content files,
can be included in a <techMD> section instead of a separate
<sourceMD> section. </p>
</requirement>
<requirement ID="rightsMD1">
<p>The required <rightsMD> must contain elements from the METSRights
schema. The <rightsMD> for the digital object as a whole will be
taken to apply to all component parts unless different rights are specified for
components in additional <rightsMD> sections. </p>
</requirement>
<requirement ID="rightsMD2">
<p>A conforming METS record must include a rts/RightsDeclarationMD element with the
RIGHTSCATEGORY attribute encoded as either "COPYRIGHTED", "PUBLIC DOMAIN" or
"OTHER". </p>
</requirement>
<requirement ID="rightsMD3">
<p>A conforming METS record must include a rts/RightsDeclarationMD/RightsDeclaration
from the METSRights Schema with the value expressed as either "Copyright is held
by unnamed third party" for works for which the copyright holder(s) can not be
identified, "Copyright is held by named third party but not the UC Regents" for
works for which the copyright holder(s) is not the UC Regents and can be
identified, "Copyright held by the UC Regents" for materials under copyright to
the University of California Regents, "The work is in the public domain" for
works known to have entered the public domain, or "Copyright status has not been
determined by the UCSD Libraries" for works for which the copyright holder(s)
cannot be identified and the work cannot be said to have entered the public
domain. </p>
</requirement>
<requirement ID="rightsMD4">
<p>If necessary, a justification of the rights declaration can be included in
rts/RightsDeclarationMD/RightsDeclaration/ element to explain the copyright
assertion. This is not necessary if the basis for the assertion is evident in
the descriptive metadata for the object. In cases where this is not evident, a
justification statement may be very useful. Examples of such cases include 1)
when the copyright holder is different than the creator and 2) when an item has
been gifted to the public domain prior to the copyright expiring. </p>
</requirement>
<requirement ID="rightsMD5">
<p>A conforming METS record must include a
rts/RightsDeclarationMD/Context/Constraints/ConstraintDescription containing an
indication of how the digital asset can be used. See the UCSD Rights Metadata
Strategy for boilerplate text. </p>
</requirement>
<requirement ID="rightsMD6">
<p>A conforming METS record may, but is not required to, include a
rts/RightsHolder/… from the METSRights Schema for those works for which the
copyright holder(s) can be identified. Data can include the name of the
copyright holder(s), their contact information and any notes relevant to the
copyright holder. </p>
</requirement>
<requirement ID="sourceMD1">
<p>If source metadata is recorded, elements in the <sourceMD> sections
should be expressed using an extension schema endorsed by the METS Editorial
Board designed for expressing source metadata (although at this date of
publication an extension schema has not yet been endorsed for source metadata).
</p>
</requirement>
<requirement ID="digiprovMD1">
<p>If provenance metadata is recorded, elements in the <digiprovMD>
sections should be expressed using an extension schema endorsed by the METS
Editorial Board designed for expressing provenance metadata (although at this
date of publication an extension schema has not yet been endorsed for provenance
metadata). </p>
</requirement>
</amdSec>
<fileSec>
<requirement ID="fileSec1">
<p>The <fileSec> for a compliant METS record must contain one, or
more, <fileGrp> elements. </p>
</requirement>
<requirement ID="fileSec2">
<p>Each <fileGrp> must include a file USE attribute, with a value
taken from the controlled vocabulary listed above, representing the intended use
of the referenced file(s). </p>
</requirement>
<requirement ID="fileSec3">
<p>Each <file> element must contain ID and GROUPID attribute value
pairs. </p>
</requirement>
<requirement ID="fileSec4">
<p>Each <file> element must reference pertinent <techMD>
sections by including the relevant ID values in the ADMID attribute. The ADMID
attribute should also reference pertinent <sourceMD> and
<provenanceMD> elements, if present. The <file>
element should only reference ID values at the levels of <techMD>,
<sourceMD>, and <digiprovMD>. </p>
</requirement>
</fileSec>
<structMap>
<requirement ID="structMap1">
<p>A conforming METS record must contain two <structMap> elements, one
with the TYPE attribute value encoded as "logical", a second with the value
encoded as "physical".</p>
</requirement>
<requirement ID="structMap2">
<p>The physical <structMap> represents a flattened structure and must
only contain two levels of <div> elements with no further nesting.
The top level <div> element required by the METS schema contains
one level of child <div> elements to represent the linear sequence
of the components of the digital object. </p>
</requirement>
<requirement ID="structMap3">
<p> The logical structMap represents the full hierarchical structure of the digital
object, and so can contain as many levels of nested <div> elements
as required to express the objects full structure.</p>
</requirement>
<requirement ID="structMap4">
<p>All <div> elements within the top level containing
<div> must have an ORDER attribute. </p>
</requirement>
<requirement ID="structMap5">
<p>When applicable, <div> elements must reference pertinent
<dmdSec> sections by including the relevant ID values in the DMDID
attributes. </p>
</requirement>
<requirement ID="structMap6">
<p>When applicable, <div> elements should include a LABEL attribute
with the value derived from, and identical, to the value encoded in the
/mods/titleInfo/title element in the related <dmdSec>. </p>
</requirement>
<requirement ID="structMap7">
<p>When applicable, <div> elements must reference pertinent
<rightsMD> sections by including the relevant ID values in the
ADMID attributes. </p>
</requirement>
<requirement ID="structMap8">
<p>Each <fptr> element must reference an individual
<file> element representing a version of the file. </p>
</requirement>
<requirement ID="structMap9">
<p>The <fptr> element must use the FILEID attribute to point directly
to a <file> element. </p>
</requirement>
<requirement ID="structMap10">
<p>The <fptr> element may not contain an <area>,
<par>, or <seq> element. These elements are not
supported in objects conforming to this profile. </p>
</requirement>
<requirement ID="structMap11">
<p>The <mptr> element is not supported in this profile. </p>
</requirement>
</structMap>
<structLink>
<requirement ID="structLink1">
<p>This profile stipulates no requirements for the <structLink>
element. </p>
</requirement>
</structLink>
<behaviorSec>
<requirement ID="behaviorSec1">
<p>This profile stipulates no requirements for the <behaviorSec>
element. </p>
</requirement>
</behaviorSec>
<multiSection>
<requirement ID="multi1">
<p>Only <file> elements will reference elements in the
<techMD>, <sourceMD>, and <digiprovMD>
sections. </p>
</requirement>
<requirement ID="multi2">
<p>Only the <div> element will reference metadata in the
<dmdSec> and <rightsMD> sections. That is,
descriptive metadata and rights metadata are always and only expressed in
conjunction with division of the <structMap> and not in
conjunction with the content file(s). </p>
</requirement>
</multiSection>
</structural_requirements>
<technical_requirements>
<content_files>
<requirement>
<p>The profile does not prescribe a format for the file, but it is strongly
recommended that the file format and resolution for at least one version of the
image be of an archival quality.</p>
</requirement>
</content_files>
<behavior_files>
<requirement>
<p>The profile does not prescribe association to any behaviors.</p>
</requirement>
</behavior_files>
<metadata_files>
<requirement>
<p>This profile does not prescribe referencing of external metadata records. If an
external metadata record is referenced, it is recommended that the file be valid
for the schema in which it is written, i.e., that it be a valid MARC record.</p>
</requirement>
</metadata_files>
</technical_requirements>
<tool>
<description>
<p>Some of the requirements of this profile, especially the requirement for two
<structMap>s, are influenced by the METS Navigator application as it
is currently available. </p>
</description>
</tool>
<Appendix NUMBER="1">
<mets:mets xmlns:mets="http://www.loc.gov/METS/" xmlns:mods="http://www.loc.gov/mods/v3"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.loc.gov/METS/"
xmlns:mix="http://www.loc.gov/mix/"
xmlns:rts="http://cosimo.stanford.edu/sdr/metsrights/"
xmlns:pre="http://www.loc.gov/standards/premis/v1"
xsi:schemaLocation="http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/mets.xsd http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-2.xsd http://www.loc.gov/mix/ http://www.loc.gov/standards/mix/mix.xsd http://cosimo.stanford.edu/sdr/metsrights/ http://cosimo.stanford.edu/sdr/metsrights.xsd http://www.w3.org/1999/xlink http://www.loc.gov/standards/mets/xlink.xsd http://www.loc.gov/standards/premis/v1 http://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd"
OBJID="ark:/20775/bb00000050"
LABEL="Autograph letter : Loreto Mission, Baja Calif., to Father Juan de Ugarte, 1698 April 17"
TYPE="text" PROFILE="UCSD Complex Object Profile">
<mets:metsHdr CREATEDATE="2007-02-15T18:06:49" LASTMODDATE="2007-03-28T10:52:00">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Digital Library Office, Geisel Library, University of California, San
Diego</mets:name>
<mets:note>mailto:[email protected]</mets:note>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="EDM1">
<mets:mdRef xlink:href="http://roger.ucsd.edu:80/record=b3697471" LOCTYPE="URL"
MDTYPE="MARC" LABEL="UCSD ROGER Record"/>
</mets:dmdSec>
<mets:dmdSec ID="DM1">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Autograph letter : Loreto Mission, Baja Calif., to
Father Juan de Ugarte, 1698 April 17</mods:title>
</mods:titleInfo>
<mods:titleInfo type="alternative">
<mods:title>Juan María de Salvatierra letter</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Salvatierra, Juan María de</mods:namePart>
<mods:namePart type="date">1648-1717</mods:namePart>
<mods:role>
<mods:roleTerm type="text" authority="marcrelator">creator</mods:roleTerm>
<mods:roleTerm type="code" authority="marcrelator"
>cre</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>text</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>1698 April 17</mods:dateCreated>
</mods:originInfo>
<mods:classification authority="local">F124.S16 1698 VLT</mods:classification>
<mods:identifier type="ARK"
>http://libraries.ucsd.edu/ark:/20775/bb00000050</mods:identifier>
<mods:abstract> Autograph letter, signed, to Father Juan de Ugarte,
reporting the arrival of supplies and describing a battle with local
Indians. In the letter, Father Salvatierra also expresses his
opinions about the Spanish mission system in the American southwest
and what it requires to succeed </mods:abstract>
<mods:note> Jesuit priest who attempted to establish several missions in
Baja California between 1697 and 1704. Salvatierra also authored
several important histories and biographies about the missions and
missionaries of the Spanish Southwest </mods:note>
<mods:subject>
<mods:name type="personal">
<mods:namePart>Salvatierra, Juan María de</mods:namePart>
<mods:namePart type="date">1648-1717</mods:namePart>
</mods:name>
<mods:topic>Correspondence</mods:topic>
</mods:subject>
<mods:subject>
<mods:name type="personal">
<mods:namePart>Ugarte, Juan de</mods:namePart>
<mods:namePart type="date">1662-1730</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject>
<mods:name type="corporate">
<mods:namePart>Jesuits</mods:namePart>
</mods:name>
<mods:topic>Missions</mods:topic>
<mods:geographic>Mexico</mods:geographic>
<mods:geographic>Loreto (Baja California Sur)</mods:geographic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Missions, Spanish</mods:topic>
<mods:geographic>Mexico</mods:geographic>
<mods:geographic>Loreto (Baja California Sur)</mods:geographic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Indians of Mexico</mods:topic>
<mods:geographic>Loreto (Baja California Sur)</mods:geographic>
<mods:topic>Missions</mods:topic>
<mods:topic>History</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:geographic>Loreto (Baja California Sur, Mexico)</mods:geographic>
<mods:topic>History</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:geographic>Baja California (Mexico : Peninsula)</mods:geographic>
<mods:topic>History</mods:topic>
</mods:subject>
<mods:subject authority="rbgenr">
<mods:genre>Letters</mods:genre>
<mods:geographic>Mexico</mods:geographic>
<mods:temporal>17th Century</mods:temporal>
</mods:subject>
<mods:note type="citation"> Juan María de Salvatierra. Mandeville
Special Collections Library, UCSD </mods:note>
<mods:note displayLabel="Digital object made available by"> Mandeville
Special Collections Library, University of California, San Diego, La
Jolla, CA 92093-0175 (http://orpheus.ucsd.edu/speccoll/) </mods:note>
<mods:relatedItem type="host">
<mods:titleInfo displayLabel="Collection">
<mods:title>Baja California Collection</mods:title>
</mods:titleInfo>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:techMD ID="ADM1">
<mets:mdWrap MDTYPE="PREMIS">
<mets:xmlData>
<pre:premis>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000050/1-1.tif</pre:objectIdentifierValue>
</pre:objectIdentifier>
<pre:preservationLevel>full</pre:preservationLevel>
<pre:objectCategory>file</pre:objectCategory>
<pre:objectCharacteristics>
<pre:compositionLevel>0</pre:compositionLevel>
<pre:fixity>
<pre:messageDigestAlgorithm>crc32</pre:messageDigestAlgorithm>
<pre:messageDigest>e7649812</pre:messageDigest>
</pre:fixity>
<pre:size>10127622</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>TIFF</pre:formatName>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2007-05-01T09:15:16</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</pre:premis>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="ADM2">
<mets:mdWrap MDTYPE="PREMIS">
<mets:xmlData>
<pre:premis>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000050/2-1.tif</pre:objectIdentifierValue>
</pre:objectIdentifier>
<pre:preservationLevel>full</pre:preservationLevel>
<pre:objectCategory>file</pre:objectCategory>
<pre:objectCharacteristics>
<pre:compositionLevel>0</pre:compositionLevel>
<pre:fixity>
<pre:messageDigestAlgorithm>crc32</pre:messageDigestAlgorithm>
<pre:messageDigest>9fd911db</pre:messageDigest>
</pre:fixity>
<pre:size>9969972</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>TIFF</pre:formatName>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2007-05-01T09:18:23</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</pre:premis>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="ADM3">
<mets:mdWrap MDTYPE="PREMIS">
<mets:xmlData>
<pre:premis>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000050/3-1.tif</pre:objectIdentifierValue>
</pre:objectIdentifier>
<pre:preservationLevel>full</pre:preservationLevel>
<pre:objectCategory>file</pre:objectCategory>
<pre:objectCharacteristics>
<pre:compositionLevel>0</pre:compositionLevel>
<pre:fixity>
<pre:messageDigestAlgorithm>crc32</pre:messageDigestAlgorithm>
<pre:messageDigest>8b76dbf3</pre:messageDigest>
</pre:fixity>
<pre:size>9969972</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>TIFF</pre:formatName>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2007-05-01T09:26:08</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</pre:premis>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="ADM4">
<mets:mdWrap MDTYPE="PREMIS">
<mets:xmlData>
<pre:premis>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000050/4-1.tif</pre:objectIdentifierValue>
</pre:objectIdentifier>
<pre:preservationLevel>full</pre:preservationLevel>
<pre:objectCategory>file</pre:objectCategory>
<pre:objectCharacteristics>
<pre:compositionLevel>0</pre:compositionLevel>
<pre:fixity>
<pre:messageDigestAlgorithm>crc32</pre:messageDigestAlgorithm>
<pre:messageDigest>33a7fc32</pre:messageDigest>
</pre:fixity>
<pre:size>10085311</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>TIFF</pre:formatName>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2007-05-01T10:01:45</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</pre:premis>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="ADM5">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="METSRights">
<mets:xmlData>
<rts:RightsDeclarationMD RIGHTSCATEGORY="PUBLIC DOMAIN">
<rts:RightsDeclaration>The work is in the public domain.</rts:RightsDeclaration>
<rts:Context CONTEXTCLASS="GENERAL PUBLIC">
<rts:Constraints CONSTRAINTTYPE="TRANSFERPERMISSIONS">
<rts:ConstraintDescription> This work may be used without
prior permission. </rts:ConstraintDescription>
</rts:Constraints>
<rts:Constraints CONSTRAINTTYPE="RE-USE">
<rts:ConstraintDescription> This work may be used without
prior permission. </rts:ConstraintDescription>
</rts:Constraints>
</rts:Context>
</rts:RightsDeclarationMD>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
</mets:amdSec>
<mets:fileSec>
<mets:fileGrp USE="Image-Master">
<mets:file ID="ark-20775-bb00000050-1-1" GROUPID="GID1" USE="Image-Master"
ADMID="ADM1" CREATED="2007-05-01T09:15:16" MIMETYPE="image/tiff">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/1-1.tif"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-2-1" GROUPID="GID2" USE="Image-Master"
ADMID="ADM2" CREATED="2007-05-01T09:18:23" MIMETYPE="image/tiff">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/2-1.tif"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-3-1" GROUPID="GID3" USE="Image-Master"
ADMID="ADM3" CREATED="2007-05-01T09:26:08" MIMETYPE="image/tiff">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/3-1tif"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-4-1" GROUPID="GID4" USE="Image-Master"
ADMID="ADM4" CREATED="2007-05-01T10:01:45" MIMETYPE="image/tiff">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/4-1.tif"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp USE="Image-Thumbnail">
<mets:file ID="ark-20775-bb00000050-1-2" GROUPID="GID1" USE="Image-Thumbnail"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/1-2.jpg"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-2-2" GROUPID="GID2" USE="Image-Thumbnail"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/2-2.jpg"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-3-2" GROUPID="GID3" USE="Image-Thumbnail"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/3-2.jpg"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-4-2" GROUPID="GID4" USE="Image-Thumbnail"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/4-2.jpg"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp USE="Image-Service">
<mets:file ID="ark-20775-bb00000050-1-3" GROUPID="GID1" USE="Image-Service"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/1-3.jpg"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-2-3" GROUPID="GID2" USE="Image-Service"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/2-3.jpg"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-3-3" GROUPID="GID3" USE="Image-Service"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/3-3.jpg"/>
</mets:file>
<mets:file ID="ark-20775-bb00000050-4-3" GROUPID="GID4" USE="Image-Service"
MIMETYPE="image/jpeg">
<mets:FLocat LOCTYPE="URL"
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000050/4-3.jpg"/>
</mets:file>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap TYPE="logical">
<mets:div ORDER="1"
LABEL="Autograph letter : Loreto Mission, Baja Calif., to Father Juan de Ugarte, 1698 April 17"
DMDID="EDM1 DM1" ADMID="ADM5" TYPE="text">
<mets:div ORDER="1" LABEL="Leaf 1" TYPE="leaf">
<mets:div ORDER="1" LABEL="Recto">
<mets:div ORDER="1" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-1-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-1-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-1-3"/>
</mets:div>
</mets:div>
<mets:div ORDER="2" LABEL="Verso">
<mets:div ORDER="1" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-2-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-2-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-2-3"/>
</mets:div>
</mets:div>
</mets:div>
<mets:div ORDER="2" LABEL="Leaf 2" TYPE="leaf">
<mets:div ORDER="1" LABEL="Recto">
<mets:div ORDER="1" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-3-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-3-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-3-3"/>
</mets:div>
</mets:div>
<mets:div ORDER="2" LABEL="Verso">
<mets:div ORDER="1" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-4-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-4-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-4-3"/>
</mets:div>
</mets:div>
</mets:div>
</mets:div>
</mets:structMap>
<mets:structMap TYPE="physical">
<mets:div ORDER="1"
LABEL="Autograph letter : Loreto Mission, Baja Calif., to Father Juan de Ugarte, 1698 April 17"
DMDID="EDM1 DM1" ADMID="ADM5" TYPE="text">
<mets:div ORDER="1" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-1-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-1-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-1-3"/>
</mets:div>
<mets:div ORDER="2" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-2-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-2-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-2-3"/>
</mets:div>
<mets:div ORDER="3" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-3-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-3-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-3-3"/>
</mets:div>
<mets:div ORDER="4" TYPE="page">
<mets:fptr FILEID="ark-20775-bb00000050-4-1"/>
<mets:fptr FILEID="ark-20775-bb00000050-4-2"/>
<mets:fptr FILEID="ark-20775-bb00000050-4-3"/>
</mets:div>
</mets:div>
</mets:structMap>
</mets:mets>
</Appendix>
<Appendix NUMBER="2">
<mets:mets xmlns:mets="http://www.loc.gov/METS/" xmlns:mods="http://www.loc.gov/mods/v3"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.loc.gov/METS/"
xmlns:mix="http://www.loc.gov/mix/"
xmlns:rts="http://cosimo.stanford.edu/sdr/metsrights/"
xmlns:pre="http://www.loc.gov/standards/premis/v1"
xsi:schemaLocation="http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/mets.xsd http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-2.xsd http://www.loc.gov/mix/ http://www.loc.gov/standards/mix/mix.xsd http://cosimo.stanford.edu/sdr/metsrights/ http://cosimo.stanford.edu/sdr/metsrights.xsd http://www.w3.org/1999/xlink http://www.loc.gov/standards/mets/xlink.xsd http://www.loc.gov/standards/premis/v1 http://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd"
OBJID="ark:/20775/bb00000051"
LABEL="Erik Hohwü Christensen laboratory notebooks and photographs"
TYPE="mixed material" PROFILE="UCSD Complex Object Profile">
<mets:metsHdr CREATEDATE="2007-02-15T18:06:49" LASTMODDATE="2007-03-28T10:52:00">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Digital Library Office, Geisel Library, University of California, San
Diego</mets:name>
<mets:note>mailto:[email protected]</mets:note>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="EDM1a">
<mets:mdRef xlink:href="http://roger.ucsd.edu:80/record=b3758057" LOCTYPE="URL"
MDTYPE="MARC" LABEL="UCSD ROGER Record"/>
</mets:dmdSec>
<mets:dmdSec ID="DM1a">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Erik Hohwü Christensen laboratory notebooks and
photographs</mods:title>
</mods:titleInfo>
<mods:titleInfo type="alternative">
<mods:title>Laboratory notebooks and photographs, 1935</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Christensen, Erik Hohwü</mods:namePart>
<mods:role>
<mods:roleTerm type="text" authority="marcrelator">creator</mods:roleTerm>
<mods:roleTerm type="code" authority="marcrelator"
>cre</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource collection="yes" manuscript="yes">mixed material</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>1935</mods:dateCreated>
</mods:originInfo>
<mods:classification authority="local">F124.S16 1698 VLT</mods:classification>
<mods:identifier type="local">?</mods:identifier>
<mods:identifier type="ARK"
>http://libraries.ucsd.edu/ark:/20775/bb00000051</mods:identifier>
<mods:abstract> Laboratory data and photographs compiled by Erik Hohwü
Christensen and related to the 1935 International High Altitude
Expedition to Chile. The collection includes two sets of test
results for exercise on a cycle ergometer, four black-and-white
photographs of the mountain Aucanquilcha and the surrounding Chilean
Andes, and a black-and-white slide of a mining car near the Ollague
mine. </mods:abstract>
<mods:note> Swedish physiologist and member of the 1935 International
High Altitude Expedition to Chile </mods:note>
<mods:subject>
<mods:name type="personal">
<mods:namePart>Christensen, Erik Hohwü</mods:namePart>
</mods:name>
<mods:topic>Archives</mods:topic>
</mods:subject>
<mods:subject>
<mods:name type="conference">
<mods:namePart>International High Altitude Expedition to
Chile</mods:namePart>
</mods:name>
<mods:temporal>(1935)</mods:temporal>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Altitude, Influence of</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Exercise</mods:topic>
<mods:topic>Physiological aspects </mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Adaptation (Physiology)</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:geographic>Andes</mods:geographic>
<mods:topic>Pictorial works</mods:topic>
</mods:subject>
<mods:subject authority="gmgpc">
<mods:genre>Photographic prints</mods:genre>
<mods:temporal>1930-1939</mods:temporal>
</mods:subject>
<mods:note type="citation"> Erik Hohwü Christensen Laboratory Notebooks
and Photographs. MSS 469. Mandeville Special Collections Library,
UCSD </mods:note>
<mods:note displayLabel="Digital object made available by"> Mandeville
Special Collections Library, University of California, San Diego, La
Jolla, CA 92093-0175 (http://orpheus.ucsd.edu/speccoll/) </mods:note>
<mods:relatedItem type="host">
<mods:titleInfo displayLabel="Collection">
<mods:title>High Altitude Medicine and Physiology
Collection</mods:title>
</mods:titleInfo>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:dmdSec ID="DM2a">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Laboratory notebook 1, 1935</mods:title>
</mods:titleInfo>
<mods:abstract> Protocols, Jan. 23 - March 14, 1935, for exercise test