-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00000027.xml
1652 lines (1651 loc) · 75.6 KB
/
00000027.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 and revised by Metadata Analysis and Specification Unit, Metadata Services Department, University of California, San Diego. -->
<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/00000027.xml</URI>
<title>UC San Diego Simple Object Profile</title>
<abstract>The UC San Diego Libraries uses the UC San Diego Simple Object profile for composing
METS instances for digital objects consisting of a single digital content file and
associated descriptive, administrative, and structural metadata. The content files must be
in an archival quality file format supported by the UC San Diego Libraries (see
https://libraries.ucsd.edu/ark:/20775/br61775312/1-1.pdf). The version of the previously
registered Simple Object Profile has been revised for the purpose of expressing all rights
metadata via the PREMIS schema.</abstract>
<date>2009-04-21T11:53:31</date>
<contact>
<name>Digital Library Program</name>
<address>Geisel Library, UC San Diego</address>
<email>[email protected]</email>
</contact>
<related_profile RELATIONSHIP="Supersedes"
URI="http://www.loc.gov/standards/mets/profiles/00000012.xml">UC San Diego 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. Used for access restrictions to the
content files.</note>
</extension_schema>
<description_rules>
<p>All applications of MODS in UC San Diego METS records adhere to the MODS User Guidelines
published by the Library of Congress's Network Development and MARC Standards
Office.</p>
</description_rules>
<controlled_vocabularies>
<vocabulary>
<name>UC San Diego file USE attribute values</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<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>
<vocabulary>
<name>UC San Diego Rights Basis Vocabulary</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<context ID="vc2" RELATEDMAT="copyrightMD2 licenserightsMD2 statuterightsMD2">
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/rightsBasis</p>
</context>
<description>
<p>These are the values supported for the PREMIS rightsBasis element for digital
objects conforming to this profile.</p>
</description>
</vocabulary>
<vocabulary>
<name>UC San Diego Rights Status Vocabulary</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<context ID="vc3" RELATEDMAT="copyrightMD3">
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/copyrightStatus</p>
</context>
<description>
<p>These are the values supported for the PREMIS copyrightStatus element for digital
objects conforming to this profile.</p>
</description>
</vocabulary>
<vocabulary>
<name>UC San Diego Rights Actions Vocabulary</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<context ID="vc4" RELATEDMAT="licenserightsMD3 licenserightsMD4 statuterightsMD4">
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/rightsGranted/restriction</p>
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/rightsGranted/action</p>
</context>
<description>
<p>These are the values supported for the PREMIS act and restriction elements 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 UC San Diego 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 Program, 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 one or more
<dmdSec> containing a <mdWrap> with
<xmlData>. The required dmdSec/mdWrap/xmlData must contain
elements from the Metadata Object Description Schema (MODS). Additional
<dmdSec> elements are permitted. For each additional metadata
schema a separate <dmdSec> must be used, and must contain
<mdWrap> with <xmlData>. When adding elements from
metadata schemas other than MODS (Dublin Core, VRA, FGDC, etc.) these should
conform to standardized guidelines for the schema.</p>
</requirement>
<requirement ID="dmdSec2">
<p>A conforming METS record must contain a /mods/titleInfo/title element.</p>
</requirement>
<requirement ID="dmdSec3">
<p>A conforming METS record must contain a /mods/typeOfResource element for which
the value must be taken from the MODS typeOfResource values.</p>
</requirement>
<requirement ID="dmdSec4">
<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="dmdSec5">
<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 UC
San Diego Libraries' data provider that is primarily responsible for making the
resource available digitally, e.g. Arts Library. The URL for the provider's main
page should be included with its name.</p>
</requirement>
<requirement ID="dmdSec6">
<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/subject/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>
</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 and at least one rightsMD/mdWrap/xmlData </p>
</requirement>
<requirement ID="techMD1">
<p>The required <techMD> must contain elements from the PREMIS schema.
A second <techMD> section may, but is not required to, be used if
applicable for the format. If a second <techMD> is used for
images, it should conform to the MIX Schema; if used for text, it should conform
to the TextMD Schema; if used for audio or video, it 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="techMD2">
<p>The required <techMD> should describe the digital file of the
highest, most archival quality.</p>
</requirement>
<requirement ID="techMD3">
<p>A conforming METS record must contain an /object/objectIdentifierType element
with the value "ARK", and an /objectIdentifierValue element with the ARK
value.</p>
</requirement>
<requirement ID="techMD4">
<p>A conforming METS record must contain an /object/preservationLevel element. The
value should be either "Full" or "Bit-level".</p>
</requirement>
<requirement ID="techMD5">
<p>A conforming METS record must contain an /object/objectCategory element. The
value should be "File".</p>
</requirement>
<requirement ID="techMD6">
<p>A conforming METS record must contain an
/object/objectCharacteristics/compositionLevel element. The value should be "0"
for uncompressed files or "1" for files with one level of compression (e.g., zip
or tar file).</p>
</requirement>
<requirement ID="techMD7">
<p>A conforming METS record must contain an
/object/objectCharacteristics/fixity/messageDigestAlgorithm and /messageDigest
element.</p>
</requirement>
<requirement ID="techMD8">
<p>A conforming METS record must contain an /object/objectCharacteristics/size
element.</p>
</requirement>
<requirement ID="techMD9">
<p>A conforming METS record must contain an
/object/objectCharacteristics/format/formatName element.</p>
</requirement>
<requirement ID="techMD10">
<p>A conforming METS record must contain an
/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: <pre:storageMedium>
(/object/storage/storageMedium), <pre:formatVersion>
(/object/objectCharacteristics/formatVersion),
<pre:creatingApplicationName>
(/object/creatingApplication/creatingApplicationName), and
<pre:originalName> (/object/originalName)</p>
</requirement>
<requirement ID="techMD12">
<p>Source or provenance metadata pertaining to image content files expressed as MIX,
can be included in a <techMD> section instead of a separate
<sourceMD> section.</p>
</requirement>
<requirement ID="copyrightMD1">
<p>The required rightsMD/mdWrap/xmlData must contain elements from the PREMIS Rights
schema.</p>
</requirement>
<requirement ID="copyrightMD2">
<p>A conforming METS record must include a rightsStatement/rightsBasis element with
the value expressed as "Copyright."</p>
</requirement>
<requirement ID="copyrightMD3">
<p>A conforming METS record must include a
rightsStatement/copyrightInformation/copyrightStatus element with the value
expressed as "Under copyright” if the work is still in copyright to an agent
other than UC Regents, "Copyright UC Regents" if the work is copyrighted to the
UC Regents, “Public Domain” if copyright for the work has expired or been gifted
to the public domain, or "Unknown" if the copyright status of the work cannot be
determined.</p>
</requirement>
<requirement ID="copyrightMD4">
<p>A conforming METS record may include a
rightsStatement/copyrightInformation/copyrightJurisdiction element containing
the appropriate code for the jurisdictional context of the copyright with a
value taken from ISO 3166. </p>
</requirement>
<requirement ID="copyrightMD5">
<p>A conforming METS record may have one
rightsStatement/copyrightInformation/copyrightNote element for identifying the
rights holder(s). The value encoded is to be the name of the copyright
holder(s)and should be in the form of: “Rights Holder(s): [rights holder’s name
in normal order]". </p>
</requirement>
<requirement ID="copyrightMD6">
<p>A conforming METS record must have one
rightsStatement/copyrightInformation/copyrightNote elment for describing the use
intended for in distribution of the work. The note should be in the form of:
“Use: [note text]”. </p>
</requirement>
<requirement ID="copyrightMD7">
<p>A conforming METS record must have one
rightsStatement/copyrightInformation/copyrightNote element for describing
constraints placed on re-use or re-distribution of the work. The note should be
in the form of: “Constraint(s) on Use: [note text]”.</p>
</requirement>
<requirement ID="licenserightsMD1">
<p>Additional rightsMD/mdWrap/xmlData elements must contain elements from the PREMIS
Rights schema.</p>
</requirement>
<requirement ID="licenserightsMD2">
<p>A conforming METS record may include a rightsStatement/rightsBasis element with
the value expressed as "License".</p>
</requirement>
<requirement ID="licenserightsMD3">
<p>When rightsBasis is "License", a conforming METS record must include a
rightsStatement/rightsGranted/act element with a value from the UC Libraries
Rights Actions Vocabulary.</p>
</requirement>
<requirement ID="licenserightsMD4">
<p>In cases when an action is not permitted, a conforming METS record must include a
rightsStatement/rightsGranted/restriction element with a value from the UC
Libraries Rights Restrictions Vocabulary.</p>
</requirement>
<requirement ID="licenserightsMD5">
<p>In cases when an action is restricted, a conforming METS record must include a
rightsStatement/rightsGranted/termOfGrant/startDate element with the value
indicating the time at which the restriction begins. Date must be expressed in
form YYYY-MM-DD.</p>
</requirement>
<requirement ID="licenserightsMD6">
<p>In cases when public display is restricted, a conforming METS record must include
a rightsStatement/rightsGranted/termOfGrant/endDate element with the value
indicating the time at which the restriction concludes. Date must be expressed
in form YYYY-MM-DD.</p>
</requirement>
<requirement ID="licenserightsMD7">
<p>A conforming METS record may, but is not required, to include the following
PREMIS Rights elements: <pre:rightsStatementIdentifierType>
(/rightsStatement/rightsStatementIdentifier/rightsStatementIdentifierType),
<pre:rightsStatementIdentifierValue>
(/rightsStatement/rightsStatementIdentifier/rightsStatementIdentifierValue),
<pre:licenseIdentifierType>
(/rightsStatement/licenseInformation/licenseIdentifier/licenseIdentifierType),
<pre:licenseIdentifierValue>
(/rightsStatement/licenseInformation/licenseIdentifier/licenseIdentifierValue),
<pre:licenseTerms>
(/rightsStatement/licenseInformation/licenseTerms),
<pre:licenseNote>
(/rightsStatement/licenseInformation/licenseNote), and
<pre:rightsGrantedNote>
(/rightsStatement/rightsGranted/rightsGrantedNote), </p>
</requirement>
<requirement ID="statuterightsMD1">
<p>Additional rightsMD/mdWrap/xmlData elements must contain elements from the PREMIS
Rights schema.</p>
</requirement>
<requirement ID="statuterightsMD2">
<p>A conforming METS record may include a rightsStatement/rightsBasis element with
the value expressed as "Statute".</p>
</requirement>
<requirement ID="statuterightsMD3">
<p>When rightsBasis is "Statute", a conforming METS record must include a
rightsStatement/statuteInformation/statuteCitation to identify the applicable
statute.The preferred citation is the name of the citation and a URI linking to
it. </p>
</requirement>
<requirement ID="statuterightsMD4">
<p>In cases when legal statute prohibits an action, a conforming METS record must
include a rightsStatement/rightsGranted/restriction element with a value from
the UC Libraries Rights Resrictions Vocabulary.</p>
</requirement>
<requirement ID="statuterightsMD5">
<p>In cases when an action is restricted, a conforming METS record must include a
rightsStatement/rightsGranted/termOfGrant/startDate element with the value
indicating the time at which the restriction begins (typically, the date the
content was created). Date must be expressed in form YYYY-MM-DD.</p>
</requirement>
<requirement ID="statuterightsMD6">
<p>In cases when public display is restricted, a conforming METS record must include
a rightsStatement/rightsGranted/termOfGrant/endDate element with the value
indicating the time at which the restriction concludes. Date must be expressed
in form YYYY-MM-DD.</p>
</requirement>
<requirement ID="statuterightsMD7">
<p>A conforming METS record may, but is not required, to include the following
PREMIS Rights elements: <pre:rightsStatementIdentifierType>
(/rightsStatement/rightsStatementIdentifier/rightsStatementIdentifierType),
<pre:rightsStatementIdentifierValue>
(/rightsStatement/rightsStatementIdentifier/rightsStatementIdentifierValue),
<pre:licenseIdentifierType>
(/rightsStatement/licenseInformation/licenseIdentifier/licenseIdentifierType),
<pre:licenseIdentifierValue>
(/rightsStatement/licenseInformation/licenseIdentifier/licenseIdentifierValue),
<pre:licenseTerms>
(/rightsStatement/licenseInformation/licenseTerms),
<pre:licenseNote>
(/rightsStatement/licenseInformation/licenseNote), and
<pre:rightsGrantedNote>
(/rightsStatement/rightsGranted/rightsGrantedNote), </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.</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.</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> element must contain one, and only one, file.</p>
</requirement>
<requirement ID="fileSec3">
<p>Each <fileGrp> must include a file USE attribute representing the
intended use of the referenced file.</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 AMDID
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 only one <structMap>
element</p>
</requirement>
<requirement ID="structMap2">
<p>The <structMap> element must contain a TYPE attribute encoded with
the value "physical."</p>
</requirement>
<requirement ID="structMap3">
<p>The <div> element must include a LABEL attribute value, which is
derived from and identical to the value encoded in the /mods/titleInfo/title
element.</p>
</requirement>
<requirement ID="structMap4">
<p>The <div> element must reference pertinent <dmdSec>
sections by including the relevant ID values in the DMDID attribute.</p>
</requirement>
<requirement ID="structMap5">
<p>The <div> element must reference pertinent <rightsMD>
sections by including the relevant ID values in the AMDID attribute.</p>
</requirement>
<requirement ID="structMap6">
<p>The <div> element must contain one or more <fptr>
elements, each of which references an individual <file> element
representing a version of the file.</p>
</requirement>
<requirement ID="structMap7">
<p>The <fptr> element must use the FILEID attribute to point directly
to a <file> element.</p>
</requirement>
<requirement ID="structMap8">
<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="structMap9">
<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.</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>No tools are associated with this profile</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: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/mix/mix02.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/bb00000001" TYPE="still image"
LABEL="Corning: Municipal Fire Station: Ext.: doorways"
PROFILE="UC San Diego Simple Object Profile">
<mets:metsHdr CREATEDATE="2004-09-05T14:15:00" LASTMODDATE="2006-04-27T16:05:00">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Digital Library Program, 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/record=b3904109" LOCTYPE="URL"
MDTYPE="MARC" LABEL="UC San Diego ROGER Record"/>
</mets:dmdSec>
<mets:dmdSec ID="DM1">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Corning: Municipal Fire Station: Ext.:
doorways</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Birkerts, Gunnar</mods:namePart>
</mods:name>
<mods:typeOfResource>still image</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>Unknown</mods:dateCreated>
<mods:dateIssued>c1977</mods:dateIssued>
</mods:originInfo>
<mods:subject authority="lcsh">
<mods:geographic>Corning (N.Y.)-Municipal Fire
Station</mods:geographic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Architecture--Artist--United States--20th C.
A.D.</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Fire stations</mods:topic>
</mods:subject>
<mods:classification authority="local">1/82 B619.3G 7GVmfs(a).cDR1</mods:classification>
<mods:identifier type="local">b3904109 aal</mods:identifier>
<mods:identifier type="ARK"
>http://libraries.ucsd.edu/ark:/20775/bb00000001</mods:identifier>
<mods:identifier type="local">41822000182301</mods:identifier>
<mods:note displayLabel="Digital object made available by"> Arts
Library, University of California, San Diego, La Jolla, 92093-0175
(http://libraries.ucsd.edu/locations/arts/) </mods:note>
<mods:relatedItem type="host">
<mods:titleInfo displayLabel="Collection">
<mods:title>AAL Visual Resources Collection</mods:title>
</mods:titleInfo>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:techMD ID="ADM1">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:premis>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000001/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>CRC</pre:messageDigestAlgorithm>
<pre:messageDigest>3,969,186,822</pre:messageDigest>
</pre:fixity>
<pre:size>16393</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>TIFF</pre:formatName>
<pre:formatVersion>5.0</pre:formatVersion>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2003-04-01T09:15:16</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</pre:premis>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="ADM2">
<mets:mdWrap MDTYPE="NISOIMG">
<mets:xmlData>
<mix:mix>
<mix:ImageCreation>
<mix:SourceType>Slide, color, 35 mm, Fuji film</mix:SourceType>
<mix:SourceID>41822000182301</mix:SourceID>
<mix:ImageProducer>Luna Imaging Inc.</mix:ImageProducer>
<mix:DeviceSource>transmission scanner</mix:DeviceSource>
<mix:ScanningSystemCapture>
<mix:ScanningSystemHardware>
<mix:ScannerManufacturer>CreoScitex</mix:ScannerManufacturer>
<mix:ScannerModel>
<mix:ScannerModelName>Eversmart
Select</mix:ScannerModelName>
</mix:ScannerModel>
</mix:ScanningSystemHardware>
<mix:ScanningSystemSoftware>
<mix:ScanningSoftware>oXYgen</mix:ScanningSoftware>
<mix:ScanningSoftwareVersionNo>v.1.1.0</mix:ScanningSoftwareVersionNo>
</mix:ScanningSystemSoftware>
</mix:ScanningSystemCapture>
</mix:ImageCreation>
</mix:mix>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="ADM3">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:rightsStatement>
<pre:rightsBasis>Copyright</pre:rightsBasis>
<pre:copyrightInformation>
<pre:copyrightStatus>Unknown</pre:copyrightStatus>
<pre:copyrightNote>Use: This work is available from the UC San
Diego Libraries. This digital copy of the work is intended
to support research, teaching, and private study. </pre:copyrightNote>
<pre:copyrightNote>Constraint(s) on Use: This work may be
protected by the U.S. Copyright Law (Title 17, U.S.C.). Use
of this work beyond that allowed by “fair use” requires the
written permission of the copyright holders(s).
Responsibility for obtaining permissions and any use and
distribution of this work rests exclusively with the user
and not the UC San Diego Libraries. Inquiries can be made to
the UC San Diego Libraries department having custody of the
work
(http://libraries.ucsd.edu/locations/arts/).</pre:copyrightNote>
</pre:copyrightInformation>
</pre:rightsStatement>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
</mets:amdSec>
<mets:fileSec>
<mets:fileGrp VERSDATE="2003-04-01T09:15:16" USE="Image-Master">
<mets:file ID="ark-20775-bb00000001-1-1" MIMETYPE="image/tiff"
CREATED="2003-04-01T09:15:16" ADMID="ADM1 ADM2" GROUPID="GID1">
<FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000001/1-1.tiff"
LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp VERSDATE="2003-04-01T09:15:16" USE="Image-Service">
<mets:file ID="ark-20775-bb00000001-1-2" MIMETYPE="image/jpeg"
CREATED="2003-04-01T09:15:16" GROUPID="GID1">
<FLocat xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000001/1-2.jpg"
LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp VERSDATE="2003-04-01T09:15:16" USE="Image-Thumbnail">
<mets:file ID="ark-20775-bb00000001-1-3" MIMETYPE="image/gif"
CREATED="2003-04-01T09:15:16" GROUPID="GID1">
<FLocat xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000001/1-3.gif"
LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap TYPE="physical">
<mets:div ORDER="1" TYPE="still image"
LABEL="Corning: Municipal Fire Station: Ext.: doorways" DMDID="EDM1 DM1"
ADMID="ADM3">
<mets:fptr FILEID="ark-20775-bb00000001-1-1"/>
<mets:fptr FILEID="ark-20775-bb00000001-1-2"/>
<mets:fptr FILEID="ark-20775-bb00000001-1-3"/>
</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: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/mix/mix02.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/bb00000002" TYPE="still image" LABEL="Cobla Barcelona"
PROFILE="UC San Diego Simple Object Profile">
<mets:metsHdr CREATEDATE="2004-09-21T11:30:00" LASTMODDATE="2006-05-01T11:30:00">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Digital Library Program, 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/record=b4320378" LOCTYPE="URL"
MDTYPE="MARC" LABEL="UC San Diego ROGER Record"/>
</mets:dmdSec>
<mets:dmdSec ID="DM1a">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Cobla Barcelona</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Fabregas, Richard</mods:namePart>
</mods:name>
<mods:typeOfResource>still image</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>1936</mods:dateCreated>
</mods:originInfo>
<mods:note>Musician in traditional costume, large oboe, and dancers in
background.</mods:note>
<mods:subject authority="rbgenr">
<mods:genre>Propaganda--Spain--1936</mods:genre>
</mods:subject>
<mods:subject authority="rbgenr">
<mods:genre>Posters--Spain--1936</mods:genre>
</mods:subject>
<mods:subject authority="lcsh">
<mods:geographic>Spain--History--Civil War,
1936-1939--Posters</mods:geographic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:geographic>Spain--History--Civil War,
1936-1939--Propaganda</mods:geographic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:geographic>Spain--History--Civil War, 1936-1939--Music and the
war</mods:geographic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Anti-fascist movements--Spain--Posters.</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Political posters, Spanish</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>War posters, Spanish</mods:topic>
</mods:subject>
<mods:classification authority="lcc">DP269.15.F33 1936</mods:classification>
<mods:identifier type="local">b4320378</mods:identifier>
<mods:identifier type="ARK"
>http://libraries.ucsd.edu/ark:/20775/bb00000002</mods:identifier>
<mods:note displayLabel="Digital object made available by"> Mandeville
Special Collections Library, University of California, San Diego,
San Diego, CA 92093-0175S
(http://libraries.ucsd.edu/locations/mscl/) </mods:note>
<mods:relatedItem type="host">
<mods:titleInfo displayLabel="Collection">
<mods:title>Southworth Spanish Civil War Collection</mods:title>
</mods:titleInfo>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:techMD ID="ADM1a">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:premis>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000002.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>CRC</pre:messageDigestAlgorithm>
<pre:messageDigest>2,299,258,308</pre:messageDigest>
</pre:fixity>
<pre:size>98259</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>TIFF</pre:formatName>
<pre:formatVersion>5.0</pre:formatVersion>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2002-12-04T00:00:00.0</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</pre:premis>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:techMD ID="ADM2a">
<mets:mdWrap MDTYPE="NISOIMG">
<mets:xmlData>
<mix:mix>
<mix:ImageCreation>
<mix:SourceType>1 print (poster); 100 x 70 cm.</mix:SourceType>
<mix:SourceID>DP269.15.F33 1936 35 mm slide</mix:SourceID>
<mix:ImageProducer>Mandeville Special Collections Library</mix:ImageProducer>
<mix:DeviceSource>transmission scanner</mix:DeviceSource>
<mix:ScanningSystemCapture>
<mix:ScanningSystemHardware>
<mix:ScannerManufacturer>Nikon</mix:ScannerManufacturer>
<mix:ScannerModel>
<mix:ScannerModelName>Coolscan</mix:ScannerModelName>
<mix:ScannerModelNumber>LS-200</mix:ScannerModelNumber>
</mix:ScannerModel>
</mix:ScanningSystemHardware>
<mix:ScanningSystemSoftware>
<mix:ScanningSoftware>NikonScan</mix:ScanningSoftware>
</mix:ScanningSystemSoftware>
</mix:ScanningSystemCapture>
</mix:ImageCreation>
</mix:mix>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="ADM3a">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:rightsStatement>
<pre:rightsBasis>Copyright</pre:rightsBasis>
<pre:copyrightInformation>
<pre:copyrightStatus>Under copyright</pre:copyrightStatus>
<pre:copyrightJurisdiction>us</pre:copyrightJurisdiction>
<pre:copyrightNote>Use: This work is available from the UC San
Diego Libraries. This digital copy of the work is intended
to support research, teaching, and private study. </pre:copyrightNote>
<pre:copyrightNote>Constraint(s) on Use: This work is protected
by the U.S. Copyright Law (Title 17, U.S.C.). Use of this
work beyond that allowed by “fair use” requires written
permission of the copyright holder(s). Responsibility for
obtaining permissions and any use and distribution of this
work rests exclusively with the user and not the UC San
Diego Libraries. Inquiries can be made to the UC San Diego
Libraries department having custody of the work
(http://libraries.ucsd.edu/locations/mscl/).
</pre:copyrightNote>
</pre:copyrightInformation>
</pre:rightsStatement>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
</mets:amdSec>
<mets:fileSec>
<mets:fileGrp VERSDATE="2002-12-04T00:00:00" USE="Image-Master">
<mets:fileGrp>
<mets:file ID="ark-20775-bb00000002-1-1" MIMETYPE="image/tiff"
CREATED="2002-12-04T00:00:00" ADMID="ADM1a ADM2a" GROUPID="GID1">
<FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000002/1-1.tif"
LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap TYPE="physical">
<mets:div ORDER="1" TYPE="still image" LABEL="Cobla Barcelona" DMDID="EDM1a DM1a"
ADMID="ADM3a">
<mets:fptr FILEID="ark-20775-bb00000002-1-1"/>
</mets:div>
</mets:structMap>
</mets:mets>
</Appendix>
<Appendix NUMBER="3">
<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: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/mix/mix02.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/bb00000003" TYPE="still image"
LABEL="Horizon coffee-can dredge, Wilde and Holden on Vanua Mbalavu. During two days we did a great deal of wading to and from the boats. Finally we reassembled on the beach to await arrival of the ship. While it was anchored, the bottom sediment of the lagoon was sampled with low-cost equipment."
PROFILE="UC San Diego Simple Object Profile">
<mets:metsHdr CREATEDATE="2004-09-22T08:45:00" LASTMODDATE="2006-04-24T10:52:00">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Digital Library Program, Geisel Library, University of California,
San Diego</mets:name>
<mets:note>mailto:[email protected]</mets:note>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="DM1b">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Horizon coffee-can dredge, Wilde and Holden on Vanua
Mbalavu. During two days we did a great deal of wading to and
from the boats. Finally we reassembled on the beach to await
arrival of the ship. While it was anchored, the bottom sediment
of the lagoon was sampled with low-cost equipment</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Abranson, Christian-Erik</mods:namePart>
</mods:name>
<mods:name type="corporate">
<mods:namePart>Nova Expedition</mods:namePart>
</mods:name>
<mods:typeOfResource>still image</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>1950-00-00</mods:dateCreated>
</mods:originInfo>
<mods:physicalDescription>
<mods:note>Black and white glossy print</mods:note>
<mods:note>8x10 print</mods:note>
<mods:note>Crop marks all around, small circular creases (bottom
left), long crease on left</mods:note>
</mods:physicalDescription>
<mods:subject authority="local">
<mods:genre>People</mods:genre>
</mods:subject>
<mods:subject authority="local">
<mods:genre>Scientific Equipment</mods:genre>
</mods:subject>
<mods:subject authority="local">
<mods:genre>Photograph</mods:genre>
</mods:subject>
<mods:subject>
<mods:name type="personal" authority="lcnaf">
<mods:namePart>Wilde, P. (Pat), 1935-</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject>
<mods:name type="personal" authority="lcnaf">
<mods:namePart>Holden, John C.</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject>
<mods:name type="corporate" authority="lcnaf">
<mods:namePart>Horizon (Ship)</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject>
<mods:name type="corporate" authority="lcnaf">
<mods:namePart>Nova Expedition</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject>
<mods:name type="corporate" authority="lcnaf">
<mods:namePart>NOVA-HORIZON</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Dredging</mods:topic>
</mods:subject>
<mods:subject authority="local">
<mods:topic>Vanua Mbalavu</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:geographic>Vanua Balavu (Fiji)</mods:geographic>
</mods:subject>
<mods:subject authority="local">
<mods:geographic>NOVA03HO</mods:geographic>
</mods:subject>
<mods:subject authority="local">
<mods:geographic>61</mods:geographic>
</mods:subject>
<mods:subject authority="local">
<mods:geographic>South Pacific Ocean</mods:geographic>
</mods:subject>
<mods:identifier type="ARK"
>http://libraries.ucsd.edu/ark:/20775/bb00000003</mods:identifier>
<mods:note displayLabel="Digital object made available by"> Scripps
Institution of Oceanography Library, University of California, San
Diego, La Jolla, CA 92093-0219
(http://libraries.ucsd.edu/locations/sio/) </mods:note>
<mods:relatedItem type="host">
<mods:titleInfo>
<mods:title>H. William Menard Papers, 1938-1986
(MC18)</mods:title>
</mods:titleInfo>
</mods:relatedItem>
<mods:relatedItem type="host" displayLabel="Project">
<mods:titleInfo>
<mods:title>LSTA-CEO</mods:title>
</mods:titleInfo>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:techMD ID="ADM1b">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>