berkeley_library-marc 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/build.yml +18 -0
  3. data/.gitignore +388 -0
  4. data/.idea/inspectionProfiles/Project_Default.xml +20 -0
  5. data/.idea/marc.iml +101 -0
  6. data/.idea/misc.xml +4 -0
  7. data/.idea/modules.xml +8 -0
  8. data/.idea/vcs.xml +6 -0
  9. data/.rubocop.yml +334 -0
  10. data/.ruby-version +1 -0
  11. data/.simplecov +8 -0
  12. data/.yardopts +1 -0
  13. data/CHANGES.md +12 -0
  14. data/Dockerfile +57 -0
  15. data/Gemfile +3 -0
  16. data/Jenkinsfile +18 -0
  17. data/LICENSE.md +21 -0
  18. data/README.md +4 -0
  19. data/Rakefile +20 -0
  20. data/berkeley_library-marc.gemspec +42 -0
  21. data/docker-compose.yml +15 -0
  22. data/lib/.rubocop.yml +6 -0
  23. data/lib/berkeley_library/marc.rb +3 -0
  24. data/lib/berkeley_library/marc/field_info.rb +1 -0
  25. data/lib/berkeley_library/marc/field_info/ctrl_fields/data/ctrl_fields_standard.txt +2143 -0
  26. data/lib/berkeley_library/marc/field_info/leader/data/leader_standard.txt +87 -0
  27. data/lib/berkeley_library/marc/field_info/var_fields.rb +46 -0
  28. data/lib/berkeley_library/marc/field_info/var_fields/data.rb +4 -0
  29. data/lib/berkeley_library/marc/field_info/var_fields/data/mapping-orig.tsv +265 -0
  30. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_berkeley_9xx.txt +53 -0
  31. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_berkeley_9xx_parsed.rb +51 -0
  32. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_standard.txt +5458 -0
  33. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_standard_parsed.rb +6577 -0
  34. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_tind_reserved.txt +44 -0
  35. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_tind_reserved_parsed.rb +30 -0
  36. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_ucblit_tind.txt +105 -0
  37. data/lib/berkeley_library/marc/field_info/var_fields/data/var_fields_ucblit_tind_parsed.rb +114 -0
  38. data/lib/berkeley_library/marc/field_info/var_fields/ind_def.rb +39 -0
  39. data/lib/berkeley_library/marc/field_info/var_fields/ind_val_def.rb +27 -0
  40. data/lib/berkeley_library/marc/field_info/var_fields/instrument_or_voices_code.rb +26 -0
  41. data/lib/berkeley_library/marc/field_info/var_fields/obsolescible.rb +55 -0
  42. data/lib/berkeley_library/marc/field_info/var_fields/section.rb +50 -0
  43. data/lib/berkeley_library/marc/field_info/var_fields/subfield_def.rb +50 -0
  44. data/lib/berkeley_library/marc/field_info/var_fields/subfield_val.rb +24 -0
  45. data/lib/berkeley_library/marc/field_info/var_fields/var_field_def.rb +62 -0
  46. data/lib/berkeley_library/marc/field_info/var_fields/var_field_list.rb +43 -0
  47. data/lib/berkeley_library/marc/field_info/var_fields/var_field_parser.rb +136 -0
  48. data/lib/berkeley_library/marc/field_info/var_fields/var_field_transform.rb +160 -0
  49. data/lib/berkeley_library/marc/module_info.rb +14 -0
  50. data/lib/marc_extensions.rb +1 -0
  51. data/lib/marc_extensions/data_field.rb +29 -0
  52. data/lib/marc_extensions/field_map.rb +63 -0
  53. data/lib/marc_extensions/record.rb +100 -0
  54. data/lib/marc_extensions/subfield.rb +21 -0
  55. data/lib/marc_extensions/xml_reader.rb +19 -0
  56. data/rakelib/bundle.rake +8 -0
  57. data/rakelib/coverage.rake +11 -0
  58. data/rakelib/gem.rake +54 -0
  59. data/rakelib/rubocop.rake +18 -0
  60. data/rakelib/spec.rake +2 -0
  61. data/spec/.rubocop.yml +37 -0
  62. data/spec/berkeley_library/marc/field_info/var_fields/var_field_def_spec.rb +26 -0
  63. data/spec/berkeley_library/marc/field_info/var_fields/var_field_parser_spec.rb +596 -0
  64. data/spec/berkeley_library/marc/field_info/var_fields/var_field_transform_spec.rb +173 -0
  65. data/spec/berkeley_library/marc/field_info/var_fields_spec.rb +112 -0
  66. data/spec/data/field_info/vf_046.txt +32 -0
  67. data/spec/data/field_info/vf_048.txt +112 -0
  68. data/spec/data/record-187888.xml +78 -0
  69. data/spec/marc_extensions/data_field_spec.rb +13 -0
  70. data/spec/marc_extensions/record_spec.rb +211 -0
  71. data/spec/spec_helper.rb +27 -0
  72. metadata +354 -0
data/Jenkinsfile ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env groovy
2
+
3
+ dockerComposePipeline(
4
+ commands: [
5
+ 'bundle exec rake coverage',
6
+ 'bundle exec rake rubocop',
7
+ 'bundle exec rake bundle:audit',
8
+ 'bundle exec rake gem'
9
+ ],
10
+ artifacts: [
11
+ junit: 'artifacts/rspec/**/*.xml',
12
+ html : [
13
+ 'Code Coverage': 'artifacts/rcov',
14
+ 'RuboCop' : 'artifacts/rubocop'
15
+ ],
16
+ raw : ['artifacts/**/*.gem']
17
+ ]
18
+ )
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # The MIT License (MIT)
2
+
3
+ Copyright © 2021 The Regents of the University of California
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a
6
+ copy of this software and associated documentation files (the “Software”),
7
+ to deal in the Software without restriction, including without limitation
8
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
9
+ and/or sell copies of the Software, and to permit persons to whom the
10
+ Software is furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
+ DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # BerkeleyLibrary::Marc
2
+
3
+ MARC-related utility code and opinionated extensions to [ruby-marc](https://github.com/ruby-marc/ruby-marc)
4
+ for the UC Berkeley Library.
data/Rakefile ADDED
@@ -0,0 +1,20 @@
1
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('Gemfile', __dir__)
2
+ require 'bundler/setup' # Set up gems listed in the Gemfile.
3
+
4
+ # ------------------------------------------------------------
5
+ # Application code
6
+
7
+ File.expand_path('lib', __dir__).tap do |lib|
8
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
9
+ end
10
+
11
+ # ------------------------------------------------------------
12
+ # CI
13
+
14
+ ENV['RAILS_ENV'] = 'test' if ENV['CI']
15
+
16
+ # ------------------------------------------------------------
17
+ # Custom tasks
18
+
19
+ desc 'Run tests, check test coverage, check code style, check for vulnerabilities, build gem'
20
+ task default: %i[coverage rubocop bundle:audit gem]
@@ -0,0 +1,42 @@
1
+ File.expand_path('lib', __dir__).tap do |lib|
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ end
4
+
5
+ ruby_version = '>= 2.7'
6
+
7
+ require 'berkeley_library/marc/module_info'
8
+
9
+ Gem::Specification.new do |spec|
10
+ spec.name = BerkeleyLibrary::Marc::ModuleInfo::NAME
11
+ spec.author = BerkeleyLibrary::Marc::ModuleInfo::AUTHOR
12
+ spec.email = BerkeleyLibrary::Marc::ModuleInfo::AUTHOR_EMAIL
13
+ spec.summary = BerkeleyLibrary::Marc::ModuleInfo::SUMMARY
14
+ spec.description = BerkeleyLibrary::Marc::ModuleInfo::DESCRIPTION
15
+ spec.license = BerkeleyLibrary::Marc::ModuleInfo::LICENSE
16
+ spec.version = BerkeleyLibrary::Marc::ModuleInfo::VERSION
17
+ spec.homepage = BerkeleyLibrary::Marc::ModuleInfo::HOMEPAGE
18
+
19
+ spec.files = `git ls-files -z`.split("\x0")
20
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
+ spec.require_paths = ['lib']
22
+
23
+ spec.required_ruby_version = ruby_version
24
+
25
+ spec.add_dependency 'marc', '~> 1.0'
26
+ spec.add_dependency 'parslet', '~> 2.0'
27
+
28
+ spec.add_development_dependency 'bundle-audit', '~> 0.1'
29
+ spec.add_development_dependency 'ci_reporter_rspec', '~> 1.0'
30
+ spec.add_development_dependency 'colorize', '~> 0.8'
31
+ spec.add_development_dependency 'dotenv', '~> 2.7'
32
+ spec.add_development_dependency 'listen', '>= 3.0.5', '< 3.2'
33
+ spec.add_development_dependency 'rake', '~> 13.0'
34
+ spec.add_development_dependency 'rspec', '~> 3.10'
35
+ spec.add_development_dependency 'rubocop', '= 1.11'
36
+ spec.add_development_dependency 'rubocop-rake', '~> 0.5'
37
+ spec.add_development_dependency 'rubocop-rspec', '~> 2.2'
38
+ spec.add_development_dependency 'ruby-prof', '~> 0.17.0'
39
+ spec.add_development_dependency 'simplecov', '~> 0.21'
40
+ spec.add_development_dependency 'simplecov-rcov', '~> 0.2'
41
+ spec.add_development_dependency 'webmock', '~> 3.12'
42
+ end
@@ -0,0 +1,15 @@
1
+ services:
2
+ gem:
3
+ build:
4
+ context: .
5
+ target: development
6
+ ports:
7
+ - target: 3000
8
+ published: 3000
9
+ restart: always
10
+ volumes:
11
+ # Note that this mounts the *entire* repo directory (including
12
+ # files ignored in .dockerignore when building the image)
13
+ - ./:/opt/app
14
+
15
+ version: "3.7"
data/lib/.rubocop.yml ADDED
@@ -0,0 +1,6 @@
1
+ inherit_from: ../.rubocop.yml
2
+
3
+ AllCops:
4
+ # Exclude generated files
5
+ Exclude:
6
+ - 'berkeley_library/marc/field_info/var_fields/data/**/*'
@@ -0,0 +1,3 @@
1
+ require 'marc_extensions'
2
+
3
+ Dir.glob(File.expand_path('marc/*.rb', __dir__)).sort.each(&method(:require))
@@ -0,0 +1 @@
1
+ Dir.glob(File.expand_path('field_info/*.rb', __dir__)).sort.each(&method(:require))
@@ -0,0 +1,2143 @@
1
+ # MARC 21 Format for Bibliographic Data Field List
2
+ # Adapted from https://www.loc.gov/marc/bibliographic/ecbdlist.html
3
+ # Retrieved 2021-01-13
4
+
5
+ --Control Fields (001-006)--
6
+ 001 - CONTROL NUMBER (NR)
7
+
8
+ 003 - CONTROL NUMBER IDENTIFIER (NR)
9
+
10
+ 005 - DATE AND TIME OF LATEST TRANSACTION (NR)
11
+
12
+ 006 - FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION (R)
13
+ 006--BOOKS
14
+ Character Positions
15
+ 00 - Form of material
16
+ a - Language material
17
+ t - Manuscript language material
18
+ 01-04 - Illustrations
19
+ 05 - Target audience
20
+ 06 - Form of item
21
+ 07-10 - Nature of contents
22
+ 11 - Government publication
23
+ 12 - Conference publication
24
+ 13 - Festschrift
25
+ 14 - Index
26
+ 15 - Undefined
27
+ 16 - Literary form
28
+ 17 - Biography
29
+ 006--COMPUTER FILES/ELECTRONIC RESOURCES
30
+ Character Positions
31
+ 00 - Form of material
32
+ m - Computer file/Electronic resource
33
+ 01-04 - Undefined
34
+ 05 - Target audience
35
+ 06 - Form of item
36
+ 07-08 - Undefined
37
+ 09 - Type of computer file
38
+ 10 - Undefined
39
+ 11 - Government publication
40
+ 12-17 - Undefined
41
+ 006--MAPS
42
+ Character Positions
43
+ 00 - Form of material
44
+ e - Cartographic material
45
+ f - Manuscript cartographic material
46
+ 01-04 - Relief
47
+ 05-06 - Projection
48
+ 07 - Undefined
49
+ 07 - Prime meridian [OBSOLETE]
50
+ 08 - Type of cartographic material
51
+ 09-10 - Undefined
52
+ 11 - Government publication
53
+ 12 - Form of item
54
+ 12 - Undefined [OBSOLETE]
55
+ 13 - Undefined
56
+ 14 - Index
57
+ 15 - Undefined
58
+ 16-17 - Special format characteristics
59
+ 006--MIXED MATERIALS
60
+ Character Positions
61
+ 00 - Form of material
62
+ p - Mixed material
63
+ 01-05 - Undefined
64
+ 06 - Form of item
65
+ 07-17 - Undefined
66
+ 006--MUSIC
67
+ Character Positions
68
+ 00 - Form of material
69
+ c - Notated music
70
+ d - Manuscript notated music
71
+ i - Nonmusical sound recording
72
+ j - Musical sound recording
73
+ 01-02 - Form of composition
74
+ 03 - Format of music
75
+ 04 - Music parts
76
+ 05 - Target audience
77
+ 06 - Form of item
78
+ 07-12 - Accompanying matter
79
+ 13-14 - Literary text for sound recordings
80
+ 15 - Undefined
81
+ 16 - Transposition and arrangement
82
+ 17 - Undefined
83
+ 006--CONTINUING RESOURCES
84
+ Character Positions
85
+ 00 - Form of material
86
+ s - Serial/Integrating resource
87
+ 01 - Frequency
88
+ 02 - Regularity
89
+ 03 - ISSN Center [OBSOLETE]
90
+ 04 - Type of continuing resource
91
+ 05 - Form of original item
92
+ 06 - Form of item
93
+ 07 - Nature of entire work
94
+ 08-10 - Nature of contents
95
+ 11 - Government publication
96
+ 12 - Conference publication
97
+ 13-15 - Undefined
98
+ 16 - Original alphabet or script of title
99
+ 17 - Entry convention
100
+ 006--VISUAL MATERIALS
101
+ Character Positions
102
+ 00 - Form of material
103
+ g - Projected medium
104
+ k - Two-dimensional nonprojectable graphic
105
+ o - Kit
106
+ r - Three-dimensional artifact or naturally occurring object
107
+ 01-03 - Running time
108
+ 04 - Undefined
109
+ 05 - Target audience
110
+ 06-10 - Undefined
111
+ 06-10 - Accompanying matter [OBSOLETE]
112
+ 11 - Government publication
113
+ 12 - Form of item
114
+ 12 - Undefined [OBSOLETE]
115
+ 13-15 - Undefined
116
+ 16 - Type of visual material
117
+ 17 - Technique
118
+
119
+ --Control Field 007--
120
+ 007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION (R)
121
+ 007--MAP
122
+ Character Positions
123
+ 00 - Category of material
124
+ a - Map
125
+ 01 - Specific material designation
126
+ d - Atlas
127
+ g - Diagram
128
+ j - Map
129
+ k - Profile
130
+ q - Model
131
+ r - Remote-sensing image
132
+ s - Section
133
+ u - Unspecified
134
+ y - View
135
+ z - Other
136
+ | - No attempt to code
137
+ 02 - Undefined
138
+ 03 - Color
139
+ a - One color
140
+ c - Multicolored
141
+ | - No attempt to code
142
+ 04 - Physical medium
143
+ a - Paper
144
+ b - Wood
145
+ c - Stone
146
+ d - Metal
147
+ e - Synthetic
148
+ f - Skin
149
+ g - Textile
150
+ i - Plastic
151
+ j - Glass
152
+ l - Vinyl
153
+ n - Vellum
154
+ p - Plaster
155
+ q - Flexible base photographic, positive
156
+ r - Flexible base photographic, negative
157
+ s - Non-flexible base photographic, positive
158
+ t - Non-flexible base photographic, negative
159
+ u - Unknown
160
+ v - Leather
161
+ w - Parchment
162
+ x - Not applicable
163
+ y - Other photographic medium
164
+ z - Other
165
+ | - No attempt to code
166
+ 05 - Type of reproduction
167
+ f - Facsimile
168
+ n - Not applicable
169
+ u - Unknown
170
+ z - Other
171
+ | - No attempt to code
172
+ 06 - Production/reproduction details
173
+ a - Photocopy, blueline print
174
+ b - Photocopy
175
+ c - Photographic pre-production
176
+ d - Film
177
+ u - Unknown
178
+ z - Other
179
+ | - No attempt to code
180
+ 07 - Positive/negative aspect
181
+ a - Positive
182
+ b - Negative
183
+ m - Mixed polarity
184
+ n - Not applicable
185
+ | - No attempt to code
186
+ 007--ELECTRONIC RESOURCE
187
+ Character Positions
188
+ 00 - Category of material
189
+ c - Computer file
190
+ 01 - Specific material designation
191
+ a - Tape cartridge
192
+ b - Chip cartridge
193
+ c - Computer optical disc cartridge
194
+ d - Computer disc, type unspecified
195
+ e - Computer disc cartridge, type unspecified
196
+ f - Tape cassette
197
+ h - Tape reel
198
+ j - Magnetic disk
199
+ k - Computer card
200
+ m - Magneto-optical disc
201
+ o - Optical disc
202
+ r - Remote
203
+ s - Standalone device
204
+ u - Unspecified
205
+ z - Other
206
+ | - No attempt to code
207
+ 02 - Undefined
208
+ 03 - Color
209
+ a - One color
210
+ b - Black-and-white
211
+ c - Multicolored
212
+ g - Gray scale
213
+ m - Mixed
214
+ n - Not applicable
215
+ u - Unknown
216
+ z - Other
217
+ | - No attempt to code
218
+ 04 - Dimensions
219
+ a - 3 1/2 in.
220
+ e - 12 in.
221
+ g - 4 3/4 in. or 12 cm.
222
+ i - 1 1/8 x 2 3/8 in.
223
+ j - 3 7/8 x 2 1/2 in.
224
+ n - Not applicable
225
+ o - 5 1/4 in.
226
+ u - Unknown
227
+ v - 8 in.
228
+ z - Other
229
+ | - No attempt to code
230
+ 05 - Sound
231
+ # - No sound (silent)
232
+ a - Sound on medium
233
+ u - Unknown
234
+ | - No attempt to code
235
+ 06-08 - Image bit depth
236
+ 001-999 - Exact bit depth
237
+ mmm - Multiple
238
+ nnn - Not applicable
239
+ --- - Unknown
240
+ ||| - No attempt to code
241
+ 09 - File formats
242
+ a - One
243
+ m - Multiple
244
+ u - Unknown
245
+ | - No attempt to code
246
+ 10 - Quality assurance target(s)
247
+ a - Absent
248
+ n - Not applicable
249
+ p - Present
250
+ u - Unknown
251
+ | - No attempt to code
252
+ 11 - Antecedent/source
253
+ a - File reproduced from original
254
+ b - File reproduced from microform
255
+ c - File reproduced from an electronic resource
256
+ d - File reproduced from an intermediate (not microform)
257
+ m - Mixed
258
+ n - Not applicable
259
+ u - Unknown
260
+ | - No attempt to code
261
+ 12 - Level of compression
262
+ a - Uncompressed
263
+ b - Lossless
264
+ d - Lossy
265
+ m - Mixed
266
+ u - Unknown
267
+ | - No attempt to code
268
+ 13 - Reformatting quality
269
+ a - Access
270
+ n - Not applicable
271
+ p - Preservation
272
+ r - Replacement
273
+ u - Unknown
274
+ | - No attempt to code
275
+ 007--GLOBE
276
+ Character Positions
277
+ 00 - Category of material
278
+ d - Globe
279
+ 01 - Specific material designation
280
+ a - Celestial globe
281
+ b - Planetary or lunar globe
282
+ c - Terrestrial globe
283
+ e - Earth moon globe
284
+ u - Unspecified
285
+ z - Other
286
+ | - No attempt to code
287
+ 02 - Undefined
288
+ 03 - Color
289
+ a - One color
290
+ c - Multicolored
291
+ | - No attempt to code
292
+ 04 - Physical medium
293
+ a - Paper
294
+ b - Wood
295
+ c - Stone
296
+ d - Metal
297
+ e - Synthetic
298
+ f - Skin
299
+ g - Textile
300
+ i - Plastic
301
+ l - Vinyl
302
+ n - Vellum
303
+ p - Plaster
304
+ u - Unknown
305
+ v - Leather
306
+ w - Parchment
307
+ z - Other
308
+ | - No attempt to code
309
+ 05 - Type of reproduction
310
+ f - Facsimile
311
+ n - Not applicable
312
+ u - Unknown
313
+ z - Other
314
+ | - No attempt to code
315
+ 007--TACTILE MATERIAL
316
+ Character Positions
317
+ 00 - Category of material
318
+ f - Tactile material
319
+ 01 - Specific material designation
320
+ a - Moon
321
+ b - Braille
322
+ c - Combination
323
+ d - Tactile, with no writing system
324
+ u - Unspecified
325
+ z - Other
326
+ | - No attempt to code
327
+ 02 - Undefined
328
+ 03-04 - Class of braille writing
329
+ # - No specified class of braille writing
330
+ a - Literary braille
331
+ b - Format code braille
332
+ c - Mathematics and scientific braille
333
+ d - Computer braille
334
+ e - Music braille
335
+ m - Multiple braille types
336
+ n - Not applicable
337
+ u - Unknown
338
+ z - Other
339
+ | - No attempt to code
340
+ 05 - Level of contraction
341
+ a - Uncontracted
342
+ b - Contracted
343
+ m - Combination
344
+ n - Not applicable
345
+ u - Unknown
346
+ z - Other
347
+ | - No attempt to code
348
+ 06-08 - Braille music format
349
+ # - No specified braille music format
350
+ a - Bar over bar
351
+ b - Bar by bar
352
+ c - Line over line
353
+ d - Paragraph
354
+ e - Single line
355
+ f - Section by section
356
+ g - Line by line
357
+ h - Open score
358
+ i - Spanner short form scoring
359
+ j - Short form scoring
360
+ k - Outline
361
+ l - Vertical score
362
+ n - Not applicable
363
+ u - Unknown
364
+ z - Other
365
+ | - No attempt to code
366
+ 09 - Specific physical characteristics
367
+ a - Print/braille
368
+ b - Jumbo or enlarged braille
369
+ n - Not applicable
370
+ u - Unknown
371
+ z - Other
372
+ | - No attempt to code
373
+ 007--PROJECTED GRAPHIC
374
+ Character Positions
375
+ 00 - Category of material
376
+ g - Projected graphic
377
+ 01 - Specific material designation
378
+ c - Filmstrip cartridge
379
+ d - Filmslip
380
+ f - Filmstrip, type unspecified
381
+ o - Filmstrip roll
382
+ s - Slide
383
+ t - Transparency
384
+ u - Unspecified
385
+ z - Other
386
+ | - No attempt to code
387
+ 02 - Undefined
388
+ 03 - Color
389
+ a - One color
390
+ b - Black-and-white
391
+ c - Multicolored
392
+ h - Hand colored
393
+ m - Mixed
394
+ n - Not applicable
395
+ u - Unknown
396
+ z - Other
397
+ | - No attempt to code
398
+ 04 - Base of emulsion
399
+ d - Glass
400
+ e - Synthetic
401
+ j - Safety film
402
+ k - Film base, other than safety film
403
+ m - Mixed collection
404
+ o - Paper
405
+ u - Unknown
406
+ z - Other
407
+ | - No attempt to code
408
+ 05 - Sound on medium or separate
409
+ # - No sound (silent)
410
+ a - Sound on medium
411
+ b - Sound separate from medium
412
+ u - Unknown
413
+ | - No attempt to code
414
+ 06 - Medium for sound
415
+ # - No sound (silent)
416
+ a - Optical sound track on motion picture film
417
+ b - Magnetic sound track on motion picture film
418
+ c - Magnetic audio tape in cartridge
419
+ d - Sound disc
420
+ e - Magnetic audio tape on reel
421
+ f - Magnetic audio tape in cassette
422
+ g - Optical and magnetic sound track on motion picture film
423
+ h - Videotape
424
+ i - Videodisc
425
+ u - Unknown
426
+ z - Other
427
+ | - No attempt to code
428
+ 07 - Dimensions
429
+ a - Standard 8 mm.
430
+ b - Super 8 mm./single 8 mm.
431
+ c - 9.5 mm.
432
+ d - 16 mm.
433
+ e - 28 mm.
434
+ f - 35 mm.
435
+ g - 70 mm.
436
+ j - 2x2 in. or 5x5 cm.
437
+ k - 2 1/4 x 2 1/4 in. or 6x6 cm.
438
+ s - 4x5 in. or 10x13 cm.
439
+ t - 5x7 in. or 13x18 cm.
440
+ u - Unknown
441
+ v - 8x10 in. or 21x26 cm.
442
+ w - 9x9 in. or 23x23 cm.
443
+ x - 10x10 in. or 26x26 cm.
444
+ y - 7x7 in. or 18x18 cm.
445
+ z - Other
446
+ | - No attempt to code
447
+ 08 - Secondary support material
448
+ # - No secondary support
449
+ c - Cardboard
450
+ d - Glass
451
+ e - Synthetic
452
+ h - Metal
453
+ j - Metal and glass
454
+ k - Synthetic and glass
455
+ m - Mixed collection
456
+ u - Unknown
457
+ z - Other
458
+ | - No attempt to code
459
+ 007--MICROFORM
460
+ Character Positions
461
+ 00 - Category of material
462
+ h - Microform
463
+ 01 - Specific material designation
464
+ a - Aperture card
465
+ b - Microfilm cartridge
466
+ c - Microfilm cassette
467
+ d - Microfilm reel
468
+ e - Microfiche
469
+ f - Microfiche cassette
470
+ g - Microopaque
471
+ h - Microfilm slip
472
+ j - Mircrofilm roll
473
+ u - Unspecified
474
+ z - Other
475
+ | - No attempt to code
476
+ 02 - Undefined
477
+ 03 - Positive/negative aspect
478
+ a - Positive
479
+ b - Negative
480
+ m - Mixed polarity
481
+ u - Unknown
482
+ | - No attempt to code
483
+ 04 - Dimensions
484
+ a - 8 mm.
485
+ d - 16 mm.
486
+ f - 35 mm.
487
+ g - 70 mm.
488
+ h - 105 mm.
489
+ l - 3x5 in. or 8x13 cm.
490
+ m - 4x6 in. or 11x15 cm.
491
+ o - 6x9 in. or 16x23 cm.
492
+ p - 3 1/4 x 7 3/8 in. or 9x19 cm.
493
+ u - Unknown
494
+ z - Other
495
+ | - No attempt to code
496
+ 05 - Reduction ratio range
497
+ a - Low reduction
498
+ b - Normal reduction
499
+ c - High reduction
500
+ d - Very high reduction
501
+ e - Ultra high reduction
502
+ u - Unknown
503
+ v - Reduction rate varies
504
+ | - No attempt to code
505
+ 06-08 - Reduction ratio
506
+ 09 - Color
507
+ b - Black-and-white (or monochrome)
508
+ c - Multicolored
509
+ m - Mixed
510
+ u - Unknown
511
+ z - Other
512
+ | - No attempt to code
513
+ 10 - Emulsion on film
514
+ a - Silver halide
515
+ b - Diazo
516
+ c - Vesicular
517
+ m - Mixed emulsion
518
+ n - Not applicable
519
+ u - Unknown
520
+ z - Other
521
+ | - No attempt to code
522
+ 11 - Generation
523
+ a - First generation (master)
524
+ b - Printing master
525
+ c - Service copy
526
+ m - Mixed generation
527
+ u - Unknown
528
+ | - No attempt to code
529
+ 12 - Base of film
530
+ a - Safety base, undetermined
531
+ c - Safety base, acetate undetermined
532
+ d - Safety base, diacetate
533
+ p - Safety base, polyester
534
+ r - Safety base, mixed
535
+ t - Safety base, triacetate
536
+ i - Nitrate base
537
+ m - Mixed base (nitrate and safety)
538
+ n - Not applicable
539
+ u - Unknown
540
+ z - Other
541
+ | - No attempt to code
542
+ 007--NONPROJECTED GRAPHIC
543
+ Character Positions
544
+ 00 - Category of material
545
+ k - Nonprojected graphic
546
+ 01 - Specific material designation
547
+ a - Activity card
548
+ c - Collage
549
+ d - Drawing
550
+ e - Painting
551
+ f - Photomechanical print
552
+ g - Photonegative
553
+ h - Photoprint
554
+ i - Picture
555
+ j - Print
556
+ k - Poster
557
+ l - Technical drawing
558
+ n - Chart
559
+ o - Flash card
560
+ p - Postcard
561
+ q - Icon
562
+ r - Radiograph
563
+ s - Study print
564
+ u - Unspecified
565
+ v - Photograph, type unspecified
566
+ z - Other
567
+ | - No attempt to code
568
+ 02 - Undefined
569
+ 03 - Color
570
+ a - One color
571
+ b - Black-and-white
572
+ c - Multicolored
573
+ h - Hand colored
574
+ m - Mixed
575
+ u - Unknown
576
+ z - Other
577
+ | - No attempt to code
578
+ 04 - Primary support material
579
+ a - Canvas
580
+ b - Bristol board
581
+ c - Cardboard/illustration board
582
+ d - Glass
583
+ e - Synthetic
584
+ f - Skin
585
+ g - Textile
586
+ h - Metal
587
+ i - Plastic
588
+ l - Vinyl
589
+ m - Mixed collection
590
+ n - Vellum
591
+ o - Paper
592
+ p - Plaster
593
+ q - Hardboard
594
+ r - Porcelain
595
+ s - Stone
596
+ t - Wood
597
+ u - Unknown
598
+ v - Leather
599
+ w - Parchment
600
+ z - Other
601
+ | - No attempt to code
602
+ 05 - Secondary support material
603
+ # - No secondary support
604
+ a - Canvas
605
+ b - Bristol board
606
+ c - Cardboard/illustration board
607
+ d - Glass
608
+ e - Synthetic
609
+ f - Skin
610
+ g - Textile
611
+ h - Metal
612
+ i - Plastic
613
+ l - Vinyl
614
+ m - Mixed collection
615
+ n - Vellum
616
+ o - Paper
617
+ p - Plaster
618
+ q - Hardboard
619
+ r - Porcelain
620
+ s - Stone
621
+ t - Wood
622
+ u - Unknown
623
+ v - Leather
624
+ w - Parchment
625
+ z - Other
626
+ | - No attempt to code
627
+ 007--MOTION PICTURE
628
+ Character Positions
629
+ 00 - Category of material
630
+ m - Motion picture
631
+ 01 - Specific material designation
632
+ c - Film cartridge
633
+ f - Film cassette
634
+ o - Film roll
635
+ r - Film reel
636
+ u - Unspecified
637
+ z - Other
638
+ | - No attempt to code
639
+ 02 - Undefined
640
+ 03 - Color
641
+ b - Black-and-white
642
+ c - Multicolored
643
+ h - Hand colored
644
+ m - Mixed
645
+ n - Not applicable
646
+ u - Unknown
647
+ z - Other
648
+ | - No attempt to code
649
+ 04 - Motion picture presentation format
650
+ a - Standard sound aperture (reduced frame)
651
+ b - Nonanamorphic (wide-screen)
652
+ c - 3D
653
+ d - Anamorphic (wide-screen)
654
+ e - Other wide-screen format
655
+ f - Standard silent aperture (full frame)
656
+ u - Unknown
657
+ z - Other
658
+ | - No attempt to code
659
+ 05 - Sound on medium or separate
660
+ # - No sound (silent)
661
+ a - Sound on medium
662
+ b - Sound separate from medium
663
+ u - Unknown
664
+ | - No attempt to code
665
+ 06 - Medium for sound
666
+ # - No sound (silent)
667
+ a - Optical sound track on motion picture film
668
+ b - Magnetic sound track on motion picture film
669
+ c - Magnetic audio tape in cartridge
670
+ d - Sound disc
671
+ e - Magnetic audio tape on reel
672
+ f - Magnetic audio tape in cassette
673
+ g - Optical and magnetic sound track on motion picture film
674
+ h - Videotape
675
+ i - Videodisc
676
+ u - Unknown
677
+ z - Other
678
+ | - No attempt to code
679
+ 07 - Dimensions
680
+ a - Standard 8 mm.
681
+ b - Super 8 mm./single 8 mm.
682
+ c - 9.5 mm.
683
+ d - 16 mm.
684
+ e - 28 mm.
685
+ f - 35 mm.
686
+ g - 70 mm.
687
+ u - Unknown
688
+ z - Other
689
+ | - No attempt to code
690
+ 08 - Configuration of playback channels
691
+ k - Mixed
692
+ m - Monaural
693
+ n - Not applicable
694
+ q - Quadraphonic, multichannel, or surround
695
+ s - Stereophonic
696
+ u - Unknown
697
+ z - Other
698
+ | - No attempt to code
699
+ 09 - Production elements
700
+ a - Workprint
701
+ b - Trims
702
+ c - Outtakes
703
+ d - Rushes
704
+ e - Mixing tracks
705
+ f - Title bands/intertitle rolls
706
+ g - Production rolls
707
+ n - Not applicable
708
+ z - Other
709
+ | - No attempt to code
710
+ 10 - Positive/negative aspect
711
+ a - Positive
712
+ b - Negative
713
+ n - Not applicable
714
+ u - Unknown
715
+ z - Other
716
+ | - No attempt to code
717
+ 11 - Generation
718
+ d - Duplicate
719
+ e - Master
720
+ o - Original
721
+ r - Reference print/viewing copy
722
+ u - Unknown
723
+ z - Other
724
+ | - No attempt to code
725
+ 12 - Base of film
726
+ a - Safety base, undetermined
727
+ c - Safety base, acetate undetermined
728
+ d - Safety base, diacetate
729
+ p - Safety base, polyester
730
+ r - Safety base, mixed
731
+ t - Safety base, triacetate
732
+ i - Nitrate base
733
+ m - Mixed base (nitrate and safety)
734
+ n - Not applicable
735
+ u - Unknown
736
+ z - Other
737
+ | - No attempt to code
738
+ 13 - Refined categories of color
739
+ a - 3 layer color
740
+ b - 2 color, single strip
741
+ c - Undetermined 2 color
742
+ d - Undetermined 3 color
743
+ e - 3 strip color
744
+ f - 2 strip color
745
+ g - Red strip
746
+ h - Blue or green strip
747
+ i - Cyan strip
748
+ j - Magenta strip
749
+ k - Yellow strip
750
+ l - S E N 2
751
+ m - S E N 3
752
+ n - Not applicable
753
+ p - Sepia tone
754
+ q - Other tone
755
+ r - Tint
756
+ s - Tinted and toned
757
+ t - Stencil color
758
+ u - Unknown
759
+ v - Hand colored
760
+ z - Other
761
+ | - No attempt to code
762
+ 14 - Kind of color stock or print
763
+ a - Imbibition dye transfer prints
764
+ b - Three layer stock
765
+ c - Three layer stock, low fade
766
+ d - Duplitized stock
767
+ n - Not applicable
768
+ u - Unknown
769
+ z - Other
770
+ | - No attempt to code
771
+ 15 - Deterioration stage
772
+ a - None apparent
773
+ b - Nitrate: suspicious odor
774
+ c - Nitrate: pungent odor
775
+ d - Nitrate: brownish, discoloration, fading, dusty
776
+ e - Nitrate: sticky
777
+ f - Nitrate: frothy, bubbles, blisters
778
+ g - Nitrate: congealed
779
+ h - Nitrate: powder
780
+ k - Non-nitrate: detectable deterioration (diacetate odor)
781
+ l - Non-nitrate: advanced deterioration
782
+ m - Non-nitrate: disaster
783
+ | - No attempt to code
784
+ 16 - Completeness
785
+ c - Complete
786
+ i - Incomplete
787
+ n - Not applicable
788
+ u - Unknown
789
+ | - No attempt to code
790
+ 17-22 - Film inspection date
791
+ 007--KIT
792
+ Character Positions
793
+ 00 - Category of material
794
+ o - Kit
795
+ 01 - Specific material designation
796
+ u - Unspecified
797
+ | - No attempt to code
798
+ 007--NOTATED MUSIC
799
+ Character Positions
800
+ 00 - Category of material
801
+ q - Notated music
802
+ 01 - Specific material designation
803
+ u - Unspecified
804
+ | - No attempt to code
805
+ 007--REMOTE-SENSING IMAGE
806
+ Character Positions
807
+ 00 - Category of material
808
+ r - Remote-sensing image
809
+ 01 - Specific material designation
810
+ u - Unspecified
811
+ | - No attempt to code
812
+ 02 - Undefined
813
+ 03 - Altitude of sensor
814
+ a - Surface
815
+ b - Airborne
816
+ c - Spaceborne
817
+ n - Not applicable
818
+ u - Unknown
819
+ z - Other
820
+ | - No attempt to code
821
+ 04 - Attitude of sensor
822
+ a - Low oblique
823
+ b - High oblique
824
+ c - Vertical
825
+ n - Not applicable
826
+ u - Unknown
827
+ | - No attempt to code
828
+ 05 - Cloud cover
829
+ 0 - 0-9%
830
+ 1 - 10-19%
831
+ 2 - 20-29%
832
+ 3 - 30-39%
833
+ 4 - 40-49%
834
+ 5 - 50-59%
835
+ 6 - 60-69%
836
+ 7 - 70-79%
837
+ 8 - 80-89%
838
+ 9 - 90-100%
839
+ n - Not applicable
840
+ u - Unknown
841
+ | - No attempt to code
842
+ 06 - Platform construction type
843
+ a - Balloon
844
+ b - Aircraft--low altitude
845
+ c - Aircraft--medium altitude
846
+ d - Aircraft--high altitude
847
+ e - Manned spacecraft
848
+ f - Unmanned spacecraft
849
+ g - Land-based remote-sensing device
850
+ h - Water surface-based remote-sensing device
851
+ i - Submersible remote-sensing device
852
+ n - Not applicable
853
+ u - Unknown
854
+ z - Other
855
+ | - No attempt to code
856
+ 07 - Platform use category
857
+ a - Meteorological
858
+ b - Surface observing
859
+ c - Space observing
860
+ m - Mixed uses
861
+ n - Not applicable
862
+ u - Unknown
863
+ z - Other
864
+ | - No attempt to code
865
+ 08 - Sensor type
866
+ a - Active
867
+ b - Passive
868
+ u - Unknown
869
+ z - Other
870
+ | - No attempt to code
871
+ 09-10 - Data type
872
+ aa - Visible light
873
+ da - Near infrared
874
+ db - Middle infrared
875
+ dc - Far infrared
876
+ dd - Thermal infrared
877
+ de - Shortwave infrared (SWIR)
878
+ df - Reflective infrared
879
+ dv - Combinations
880
+ dz - Other infrared data
881
+ ga - Sidelooking airborne radar (SLAR)
882
+ gb - Synthetic aperture radar (SAR)-Single frequency
883
+ gc - SAR-multi-frequency (multichannel)
884
+ gd - SAR-like polarization
885
+ ge - SAR-cross polarization
886
+ gf - Infometric SAR
887
+ gg - polarmetric SAR
888
+ gu - Passive microwave mapping
889
+ gz - Other microwave data
890
+ ja - Far ultraviolet
891
+ jb - Middle ultraviolet
892
+ jc - Near ultraviolet
893
+ jv - Ultraviolet combinations
894
+ jz - Other ultraviolet data
895
+ ma - Multi-spectral, multidata
896
+ mb - Multi-temporal
897
+ mm - Combination of various data types
898
+ nn - Not applicable
899
+ pa - Sonar--water depth
900
+ pb - Sonar--bottom topography images, sidescan
901
+ pc - Sonar--bottom topography, near surface
902
+ pd - Sonar--bottom topography, near bottom
903
+ pe - Seismic surveys
904
+ pz - Other acoustical data
905
+ ra - Gravity anomalies (general)
906
+ rb - Free-air
907
+ rc - Bouger
908
+ rd - Isostatic
909
+ sa - Magnetic field
910
+ ta - radiometric surveys
911
+ uu - Unknown
912
+ zz - Other
913
+ || - No attempt to code
914
+ 007--SOUND RECORDING
915
+ Character Positions
916
+ 00 - Category of material
917
+ s - Sound recording
918
+ 01 - Specific material designation
919
+ b - Belt
920
+ d - Sound disc
921
+ e - Cylinder
922
+ g - Sound cartridge
923
+ i - Sound-track film
924
+ q - Roll
925
+ r - Remote
926
+ s - Sound cassette
927
+ t - Sound-tape reel
928
+ u - Unspecified
929
+ w - Wire recording
930
+ z - Other
931
+ | - No attempt to code
932
+ 02 - Undefined
933
+ 03 - Speed
934
+ a - 16 rpm
935
+ b - 33 1/3 rpm
936
+ c - 45 rpm
937
+ d - 78 rpm
938
+ e - 8 rpm
939
+ f - 1.4 m. per sec.
940
+ h - 120 rpm
941
+ i - 160 rpm
942
+ k - 15/16 ips
943
+ l - 1 7/8 ips
944
+ m - 3 3/4 ips
945
+ n - Not applicable
946
+ o - 7 1/2 ips
947
+ p - 15 ips
948
+ r - 30 ips
949
+ u - Unknown
950
+ z - Other
951
+ | - No attempt to code
952
+ 04 - Configuration of playback channels
953
+ m - Monaural
954
+ q - Quadraphonic, multichannel, or surround
955
+ s - Stereophonic
956
+ u - Unknown
957
+ z - Other
958
+ | - No attempt to code
959
+ 05 - Groove width/groove pitch
960
+ m - Microgroove/fine
961
+ n - Not applicable
962
+ s - Coarse/standard
963
+ u - Unknown
964
+ z - Other
965
+ | - No attempt to code
966
+ 06 - Dimensions
967
+ a - 3 in.
968
+ b - 5 in.
969
+ c - 7 in.
970
+ d - 10 in.
971
+ e - 12 in.
972
+ f - 16 in.
973
+ g - 4 3/4 in. or 12 cm.
974
+ j - 3 7/8 x 2 1/2 in.
975
+ o - 5 1/4 x 3 7/8 in.
976
+ n - Not applicable
977
+ s - 2 3/4 x 4 in.
978
+ u - Unknown
979
+ z - Other
980
+ | - No attempt to code
981
+ 07 - Tape width
982
+ l - 1/8 in.
983
+ m - 1/4 in.
984
+ n - Not applicable
985
+ o - 1/2 in.
986
+ p - 1 in.
987
+ u - Unknown
988
+ z - Other
989
+ | - No attempt to code
990
+ 08 - Tape configuration
991
+ a - Full (1) track
992
+ b - Half (2) track
993
+ c - Quarter (4) track
994
+ d - Eight track
995
+ e - Twelve track
996
+ f - Sixteen track
997
+ n - Not applicable
998
+ u - Unknown
999
+ z - Other
1000
+ | - No attempt to code
1001
+ 09 - Kind of disc, cylinder or tape
1002
+ a - Master tape
1003
+ b - Tape duplication master
1004
+ d - Disc master (negative)
1005
+ i - Instantaneous (recorded on the spot)
1006
+ m - Mass produced
1007
+ n - Not applicable
1008
+ r - Mother (positive)
1009
+ s - Stamper (negative)
1010
+ t - Test pressing
1011
+ u - Unknown
1012
+ z - Other
1013
+ | - No attempt to code
1014
+ 10 - Kind of material
1015
+ a - Lacquer coating
1016
+ b - Cellulose nitrate
1017
+ c - Acetate tape with ferrous oxide
1018
+ g - Glass with lacquer
1019
+ i - Aluminum with lacquer
1020
+ r - Paper with lacquer or ferrous oxide
1021
+ l - Metal
1022
+ m - Plastic with metal
1023
+ n - Not applicable
1024
+ p - Plastic
1025
+ s - Shellac
1026
+ u - Unknown
1027
+ w - Wax
1028
+ z - Other
1029
+ | - No attempt to code
1030
+ 11 - Kind of cutting
1031
+ h - Hill-and-dale cutting
1032
+ l - Lateral or combined cutting
1033
+ n - Not applicable
1034
+ u - Unknown
1035
+ | - No attempt to code
1036
+ 12 - Special playback characteristics
1037
+ a - NAB standard
1038
+ b - CCIR standard
1039
+ c - Dolby-B encoded
1040
+ d - dbx encoded
1041
+ e - Digital recording
1042
+ f - Dolby-A encoded
1043
+ g - Dolby-C encoded
1044
+ h - CX encoded
1045
+ n - Not applicable
1046
+ u - Unknown
1047
+ z - Other
1048
+ | - No attempt to code
1049
+ 13 - Capture and storage technique
1050
+ a - Acoustical capture, direct storage
1051
+ b - Direct storage, not acoustical
1052
+ d - Digital storage
1053
+ e - Analog electrical storage
1054
+ u - Unknown
1055
+ z - Other
1056
+ | - No attempt to code
1057
+ 007--TEXT
1058
+ Character Positions
1059
+ 00 - Category of material
1060
+ t - Text
1061
+ 01 - Specific material designation
1062
+ a - Regular print
1063
+ b - Large print
1064
+ c - Braille
1065
+ d - Text in looseleaf binder
1066
+ u - Unspecified
1067
+ z - Other
1068
+ | - No attempt to code
1069
+ 007--VIDEORECORDING
1070
+ Character Positions
1071
+ 00 - Category of material
1072
+ v - Videorecording
1073
+ 01 - Specific material designation
1074
+ c - Videocartridge
1075
+ d - Videodisc
1076
+ f - Videocassette
1077
+ r - Videoreel
1078
+ u - Unspecified
1079
+ z - Other
1080
+ | - No attempt to code
1081
+ 02 - Undefined
1082
+ 03 - Color
1083
+ a - One color
1084
+ b - Black-and-white
1085
+ c - Multicolored
1086
+ m - Mixed
1087
+ n - Not applicable
1088
+ u - Unknown
1089
+ z - Other
1090
+ | - No attempt to code
1091
+ 04 - Videorecording format
1092
+ a - Beta (1/2 in., videocassette)
1093
+ b - VHS (1/2 in., videocassette)
1094
+ c - U-matic (3/4 in., videocassette)
1095
+ d - EIAJ (1/2 in. reel)
1096
+ e - Type C (1 in., reel)
1097
+ f - Quadruplex (1 in. or 2 in., reel)
1098
+ g - Laserdisc
1099
+ h - CED (Capacitance Electronic Disc) videodisc
1100
+ i - Betacam (1/2 in., videocassette)
1101
+ j - Betacam SP (1/2 in., videocassette)
1102
+ k - Super-VHS (1/2 in., videocassette)
1103
+ m - M-II (1/2 in., videocassette)
1104
+ o - D-2 (3/4 in., videocassette)
1105
+ p - 8 mm.
1106
+ q - Hi-8 mm.
1107
+ s - Blu-ray disc
1108
+ u - Unknown
1109
+ v - DVD
1110
+ z - Other
1111
+ | - No attempt to code
1112
+ 05 - Sound on medium or separate
1113
+ # - No sound (silent)
1114
+ a - Sound on medium
1115
+ b - Sound separate from medium
1116
+ u - Unknown
1117
+ |- No attempt to code
1118
+ 06 - Medium for sound
1119
+ # - No sound (silent)
1120
+ a - Optical sound track on motion picture film
1121
+ b - Magnetic sound track on motion picture film
1122
+ c - Magnetic audio tape in cartridge
1123
+ d - Sound disc
1124
+ e - Magnetic audio tape on reel
1125
+ f - Magnetic audio tape in cassette
1126
+ g - Optical and magnetic sound track on motion picture film
1127
+ h - Videotape
1128
+ i - Videodisc
1129
+ u - Unknown
1130
+ z - Other
1131
+ | - No attempt to code
1132
+ 07 - Dimensions
1133
+ a - 8 mm.
1134
+ m - 1/4 in.
1135
+ o - 1/2 in.
1136
+ p - 1 in.
1137
+ q - 2 in.
1138
+ r - 3/4 in.
1139
+ u - Unknown
1140
+ z - Other
1141
+ | - No attempt to code
1142
+ 08 - Configuration of playback channels
1143
+ k - Mixed
1144
+ m - Monaural
1145
+ n - Not applicable
1146
+ q - Quadraphonic, multichannel, or surround
1147
+ s - Stereophonic
1148
+ u - Unknown
1149
+ z - Other
1150
+ | - No attempt to code
1151
+ 007--UNSPECIFIED
1152
+ Character Positions
1153
+ 00 - Category of material
1154
+ z - Unspecified
1155
+ 01 - Specific material designation
1156
+ m - Multiple physical forms
1157
+ u - Unspecified
1158
+ z - Other
1159
+ | - No attempt to code
1160
+
1161
+ --Control Field 008--
1162
+ 008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION (NR)
1163
+ 008--ALL MATERIALS
1164
+ Character Positions
1165
+ 00-05 - Date entered on file
1166
+ 06 - Type of date/Publication status
1167
+ b - No dates given; B.C. date involved
1168
+ c - Continuing resource currently published
1169
+ c - Actual date and copyright date [OBSOLETE]
1170
+ d - Continuing resource ceased publication
1171
+ d - Detailed date [OBSOLETE]
1172
+ e - Detailed date
1173
+ i - Inclusive dates of collection
1174
+ k - Range of years of bulk of collection
1175
+ m - Multiple dates
1176
+ n - Dates unknown
1177
+ p - Date of distribution/release/issue and production/recording session when different
1178
+ q - Questionable date
1179
+ r - Reprint/reissue date and original date
1180
+ s - Single known date/probable date
1181
+ t - Publication date and copyright date
1182
+ u - Continuing resource status unknown
1183
+ | - No attempt to code
1184
+ 07-10 - Date 1
1185
+ 1-9 - Date digit
1186
+ # - Date element is not applicable
1187
+ u - Date element is totally or partially unknown
1188
+ | - No attempt to code
1189
+ 11-14 - Date 2
1190
+ 1-9 - Date digit
1191
+ # - Date element is not applicable
1192
+ u - Date element is totally or partially unknown
1193
+ | - No attempt to code
1194
+ 15-17 - Place of publication, production, or execution
1195
+ 35-37 - Language
1196
+ 38 - Modified record
1197
+ # - Not modified
1198
+ d - Dashed-on information omitted
1199
+ o - Completely romanized/printed cards romanized
1200
+ r - Completely romanized/printed cards in script
1201
+ s - Shortened
1202
+ x - Missing characters
1203
+ | - No attempt to code
1204
+ 39 - Cataloging source
1205
+ # - National bibliographic agency
1206
+ a - National Agricultural Library [OBSOLETE]
1207
+ b - National Library of Medicine [OBSOLETE]
1208
+ c - Cooperative cataloging program
1209
+ d - Other
1210
+ n - Report to [OBSOLETE]
1211
+ u - Unknown
1212
+ | - No attempt to code
1213
+ 008--BOOKS
1214
+ Character Positions
1215
+ 18-21 - Illustrations
1216
+ # - No illustrations
1217
+ a - Illustrations
1218
+ b - Maps
1219
+ c - Portraits
1220
+ d - Charts
1221
+ e - Plans
1222
+ f - Plates
1223
+ g - Music
1224
+ h - Facsimiles
1225
+ i - Coats of arms
1226
+ j - Genealogical tables
1227
+ k - Forms
1228
+ l - Samples
1229
+ m - Phonodisc, phonowire, etc.
1230
+ o - Photographs
1231
+ p - Illuminations
1232
+ | - No attempt to code
1233
+ 22 - Target audience
1234
+ # - Unknown or not specified
1235
+ a - Preschool
1236
+ b - Primary
1237
+ c - Pre-adolescent
1238
+ d - Adolescent
1239
+ e - Adult
1240
+ f - Specialized
1241
+ g - General
1242
+ j - Juvenile
1243
+ | - No attempt to code
1244
+ 23 - Form of item
1245
+ # - None of the following
1246
+ a - Microfilm
1247
+ b - Microfiche
1248
+ c - Microopaque
1249
+ d - Large print
1250
+ f - Braille
1251
+ g - Punched paper tape [OBSOLETE]
1252
+ h - Magnetic tape [OBSOLETE]
1253
+ i - Multimedia [OBSOLETE]
1254
+ o - Online
1255
+ q - Direct electronic
1256
+ r - Regular print reproduction
1257
+ s - Electronic
1258
+ z - Other form of reproduction [OBSOLETE]
1259
+ | - No attempt to code
1260
+ 24-27 - Nature of contents
1261
+ # - No specified nature of contents
1262
+ a - Abstracts/summaries
1263
+ b - Bibliographies
1264
+ c - Catalogs
1265
+ d - Dictionaries
1266
+ e - Encyclopedias
1267
+ f - Handbooks
1268
+ g - Legal articles
1269
+ h - Handbooks [OBSOLETE]
1270
+ i - Indexes
1271
+ j - Patent document
1272
+ k - Discographies
1273
+ l - Legislation
1274
+ m - Theses
1275
+ n - Surveys of literature in a subject area
1276
+ o - Reviews
1277
+ p - Programmed texts
1278
+ q - Filmographies
1279
+ r - Directories
1280
+ s - Statistics
1281
+ t - Technical reports
1282
+ u - Standards/specifications
1283
+ v - Legal cases and case notes
1284
+ w - Law reports and digests
1285
+ x - Technical reports [OBSOLETE]
1286
+ y - Yearbooks
1287
+ z - Treaties
1288
+ 2 - Offprints
1289
+ 5 - Calendars
1290
+ 6 - Comics/graphic novels
1291
+ | - No attempt to code
1292
+ 28 - Government publication
1293
+ # - Not a government publication
1294
+ a - Autonomous or semi-autonomous component
1295
+ c - Multilocal
1296
+ f - Federal/national
1297
+ i - International intergovernmental
1298
+ l - Local
1299
+ m - Multistate
1300
+ n - Government publication--level undetermined [OBSOLETE]
1301
+ o - Government publication--level undetermined
1302
+ s - State, provincial, territorial, dependent, etc.
1303
+ u - Unknown if item is government publication
1304
+ z - Other
1305
+ | - No attempt to code
1306
+ 29 - Conference publication
1307
+ 0 - Not a conference publication
1308
+ 1 - Conference publication
1309
+ | - No attempt to code
1310
+ 30 - Festschrift
1311
+ 0 - Not a festschrift
1312
+ 1 - Festschrift
1313
+ | - No attempt to code
1314
+ 31 - Index
1315
+ 0 - No index
1316
+ 1 - Index present
1317
+ | - No attempt to code
1318
+ 32 - Undefined
1319
+ 32 - Main entry in body of entry [OBSOLETE]
1320
+ 0 - Main entry not in body of entry
1321
+ 1 - Main entry in body of entry
1322
+ | - No attempt to code
1323
+ 33 - Literary form
1324
+ 0 - Not fiction (not further specified)
1325
+ 1 - Fiction (not further specified)
1326
+ c - Comic strips [OBSOLETE]
1327
+ d - Dramas
1328
+ e - Essays
1329
+ f - Novels
1330
+ h - Humor, satires, etc.
1331
+ i - Letters
1332
+ j - Short stories
1333
+ m - Mixed forms
1334
+ p - Poetry
1335
+ s - Speeches
1336
+ u - Unknown
1337
+ | - No attempt to code
1338
+ 34 - Biography
1339
+ # - No biographical material
1340
+ a - Autobiography
1341
+ b - Individual biography
1342
+ c - Collective biography
1343
+ d - Contains biographical information
1344
+ | - No attempt to code
1345
+ 008--COMPUTER FILES
1346
+ Character Positions
1347
+ 18-21 - Undefined
1348
+ 18 - Frequency [OBSOLETE]
1349
+ # - No determinable frequency
1350
+ a - Annual
1351
+ b - Bimonthly
1352
+ c - Semiweekly
1353
+ d - Daily
1354
+ e - Biweekly
1355
+ f - Semiannual
1356
+ g - Biennial
1357
+ h - Triennial
1358
+ i - Three times a week
1359
+ j - Three times a month
1360
+ m - Monthly
1361
+ n - Not applicable
1362
+ q - Quarterly
1363
+ s - Semimonthly
1364
+ t - Three times a year
1365
+ u - Unknown
1366
+ w - Weekly
1367
+ z - Other frequencies
1368
+ 19 - Regularity [OBSOLETE]
1369
+ # - Not applicable
1370
+ n - Normalized irregular
1371
+ r - Regular
1372
+ u - Unknown
1373
+ x - Completely irregular
1374
+ 22 - Target audience
1375
+ # - Unknown or not specified
1376
+ a - Preschool
1377
+ b - Primary
1378
+ c - Pre-adolescent
1379
+ d - Adolescent
1380
+ e - Adult
1381
+ f - Specialized
1382
+ g - General
1383
+ j - Juvenile
1384
+ | - No attempt to code
1385
+ 23 - Form of item
1386
+ o - Online
1387
+ q - Direct electronic
1388
+ 24-25 - Undefined
1389
+ 26 - Type of computer file
1390
+ a - Numeric data
1391
+ b - Computer program
1392
+ c - Representational
1393
+ d - Document
1394
+ e - Bibliographic data
1395
+ f - Font
1396
+ g - Game
1397
+ h - Sound
1398
+ i - Interactive multimedia
1399
+ j - Online system or service
1400
+ m - Combination
1401
+ u - Unknown
1402
+ z - Other
1403
+ | - No attempt to code
1404
+ 27 - Undefined
1405
+ 27 - Type of machine [OBSOLETE]
1406
+ a - Computer readable
1407
+ z - Other
1408
+ 28 - Government publication
1409
+ # - Not a government publication
1410
+ a - Autonomous or semi-autonomous component
1411
+ c - Multilocal
1412
+ f - Federal/national
1413
+ i - International intergovernmental
1414
+ l - Local
1415
+ m - Multistate
1416
+ o - Government publication--level undetermined
1417
+ s - State, provincial, territorial, dependent, etc.
1418
+ u - Unknown if item is government publication
1419
+ z - Other
1420
+ | - No attempt to code
1421
+ 29-34 - Undefined
1422
+ 008--MAPS
1423
+ Character Positions
1424
+ 18-21 - Relief
1425
+ # - No relief shown
1426
+ a - Contours
1427
+ b - Shading
1428
+ c - Gradient and bathymetric tints
1429
+ d - Hachures
1430
+ e - Bathymetry/soundings
1431
+ f - Form lines
1432
+ g - Spot heights
1433
+ h - Color [OBSOLETE]
1434
+ i - Pictorially
1435
+ j - Land forms
1436
+ k - Bathymetry/isolines
1437
+ m - Rock drawings
1438
+ z - Other relief type
1439
+ | - No attempt to code
1440
+ 22-23 - Projection
1441
+ ## - Projection not specified
1442
+ aa - Aitoff
1443
+ ab - Gnomic
1444
+ ac - Lambert's azimuthal equal area
1445
+ ad - Orthographic
1446
+ ae - Azimuthal equidistant
1447
+ af - Stereographic
1448
+ ag - General vertical near-sided
1449
+ am - Modified stereographic for Alaska
1450
+ an - Chamberlin trimetric
1451
+ ap - Polar stereographic
1452
+ au - Azimuthal, specific type unknown
1453
+ az - Azimuthal, other
1454
+ ba - Gall
1455
+ bb - Goode's homolographic
1456
+ bc - Lambert's cylindrical equal area
1457
+ bd - Mercator
1458
+ be - Miller
1459
+ bf - Mollweide
1460
+ bg - Sinusoidal
1461
+ bh - Transverse Mercator
1462
+ bi - Gauss-Kruger
1463
+ bj - Equirectangular
1464
+ bk - Krovak
1465
+ bl - Cassini-Soldner
1466
+ bo - Oblique Mercator
1467
+ br - Robinson
1468
+ bs - Space oblique Mercator
1469
+ bu - Cylindrical, specific type unknown
1470
+ bz - Cylindrical, other
1471
+ ca - Alber's equal area
1472
+ cb - Bonne
1473
+ cc - Lambert's conformal conic
1474
+ ce - Equidistant conic
1475
+ cp - Polyconic
1476
+ cu - Conic, specific type unknown
1477
+ cz - Conic, other
1478
+ da - Armadillo
1479
+ db - Butterfly
1480
+ dc - Eckert
1481
+ dd - Goode's homolosine
1482
+ de - Miller's bipolar oblique conformal conic
1483
+ df - Van Der Grinten
1484
+ dg - Dimaxion
1485
+ dh - Cordiform
1486
+ dl - Lambert conformal
1487
+ zz - Other
1488
+ | - No attempt to code
1489
+ 24 - Undefined
1490
+ 24 - Prime meridian [OBSOLETE]
1491
+ # - Prime meridian not specified
1492
+ e - Greenwich
1493
+ f - Ferro
1494
+ g - Paris
1495
+ h - Other [OBSOLETE]
1496
+ p - Philadelphia
1497
+ w - Washington, D.C.
1498
+ z - Other
1499
+ 25 - Type of cartographic material
1500
+ a - Single map
1501
+ b - Map series
1502
+ c - Map serial
1503
+ d - Globe
1504
+ e - Atlas
1505
+ f - Separate map supplement to another work
1506
+ g - Map bound as part of another work
1507
+ u - Unknown
1508
+ z - Other
1509
+ | - No attempt to code
1510
+ 26-27 - Undefined
1511
+ 26-27 - Publisher code [OBSOLETE]
1512
+ 28 - Government publication
1513
+ # - Not a government publication
1514
+ a - Autonomous or semi-autonomous component
1515
+ c - Multilocal
1516
+ f - Federal/national
1517
+ i - International intergovernmental
1518
+ l - Local
1519
+ m - Multistate
1520
+ o - Government publication--level undetermined
1521
+ s - State, provincial, territorial, dependent, etc.
1522
+ u - Unknown if item is government publication
1523
+ z - Other
1524
+ | - No attempt to code
1525
+ 29 - Form of item
1526
+ # - None of the following
1527
+ a - Microfilm
1528
+ b - Microfiche
1529
+ c - Microopaque
1530
+ d - Large print
1531
+ f - Braille
1532
+ o - Online
1533
+ q - Direct electronic
1534
+ r - Regular print reproduction
1535
+ s - Electronic
1536
+ | - No attempt to code
1537
+ 30 - Undefined
1538
+ 31 - Index
1539
+ 0 - No index
1540
+ 1 - Index present
1541
+ | - No attempt to code
1542
+ 32 - Undefined
1543
+ 32 - Citation indicator [OBSOLETE]
1544
+ 33-34 - Special format characteristics
1545
+ # - No specified special format characteristics
1546
+ a - Photocopy, blue line print [OBSOLETE]
1547
+ b - Photocopy [OBSOLETE]
1548
+ c - Negative photocopy [OBSOLETE]
1549
+ d - Film negative [OBSOLETE]
1550
+ e - Manuscript
1551
+ f - Facsimile [OBSOLETE]
1552
+ g - Relief model [OBSOLETE]
1553
+ h - Rare [OBSOLETE]
1554
+ j - Picture card, post card
1555
+ k - Calendar
1556
+ l - Puzzle
1557
+ m - Braille [OBSOLETE]
1558
+ n - Game
1559
+ o - Wall map
1560
+ p - Playing cards
1561
+ q - Large print [OBSOLETE]
1562
+ r - Loose-leaf
1563
+ z - Other
1564
+ | - No attempt to code
1565
+ 008--MUSIC
1566
+ Character Positions
1567
+ 18-19 - Form of composition
1568
+ an - Anthems
1569
+ bd - Ballads
1570
+ bg - Bluegrass music
1571
+ bl - Blues
1572
+ bt - Ballets
1573
+ ca - Chaconnes
1574
+ cb - Chants, Other religions
1575
+ cc - Chant, Christian
1576
+ cg - Concerti grossi
1577
+ ch - Chorales
1578
+ cl - Chorale preludes
1579
+ cn - Canons and rounds
1580
+ co - Concertos
1581
+ cp - Chansons, polyphonic
1582
+ cr - Carols
1583
+ cs - Chance compositions
1584
+ ct - Cantatas
1585
+ cy - Country music
1586
+ cz - Canzonas
1587
+ df - Dance forms
1588
+ dv - Divertimentos, serenades, cassations, divertissements, notturni
1589
+ fg - Fugues
1590
+ fl - Flamenco
1591
+ fm - Folk music
1592
+ ft - Fantasias
1593
+ gm - Gospel music
1594
+ hy - Hymns
1595
+ jz - Jazz
1596
+ mc - Musical revues and comedies
1597
+ md - Madrigals
1598
+ mi - Minuets
1599
+ mo - Motets
1600
+ mp - Motion picture music
1601
+ mr - Marches
1602
+ ms - Masses
1603
+ mu - Multiple forms
1604
+ mz - Mazurkas
1605
+ nc - Nocturnes
1606
+ nn - Not applicable
1607
+ op - Operas
1608
+ or - Oratorios
1609
+ ov - Overtures
1610
+ pg - Program music
1611
+ pm - Passion music
1612
+ po - Polonaises
1613
+ pp - Popular music
1614
+ pr - Preludes
1615
+ ps - Passacaglias
1616
+ pt - Part-songs
1617
+ pv - Pavans
1618
+ rc - Rock music
1619
+ rd - Rondos
1620
+ rg - Ragtime music
1621
+ ri - Ricercars
1622
+ rp - Rhapsodies
1623
+ rq - Requiems
1624
+ sd - Square dance music
1625
+ sg - Songs
1626
+ sn - Sonatas
1627
+ sp - Symphonic poems
1628
+ st - Studies and exercises
1629
+ su - Suites
1630
+ sy - Symphonies
1631
+ tc - Toccatas
1632
+ tl - Teatro lirico
1633
+ ts - Trio-sonatas
1634
+ uu - Unknown
1635
+ vi - Villancicos
1636
+ vr - Variations
1637
+ wz - Waltzes
1638
+ za - Zarzuelas
1639
+ zz - Other
1640
+ || - No attempt to code
1641
+ 20 - Format of music
1642
+ a - Full score
1643
+ b - Miniature or study score
1644
+ c - Accompaniment reduced for keyboard
1645
+ d - Voice score with accompaniment omitted
1646
+ e - Condensed score or piano-conductor score
1647
+ g - Close score
1648
+ h - Chorus score
1649
+ i - Condensed score
1650
+ j - Performer-conductor part
1651
+ k - Vocal score
1652
+ l - Score
1653
+ m - Multiple score formats
1654
+ n - Not applicable
1655
+ p - Piano score
1656
+ u - Unknown
1657
+ z - Other
1658
+ | - No attempt to code
1659
+ 21 - Music parts
1660
+ # - No parts in hand or not specified
1661
+ d - Instrumental and vocal parts
1662
+ e - Instrumental parts
1663
+ f - Vocal parts
1664
+ n - Not applicable
1665
+ u - Unknown
1666
+ | - No attempt to code
1667
+ 21 - Existence of parts [OBSOLETE]
1668
+ # - No parts exist
1669
+ a - Parts exist
1670
+ n - Not applicable
1671
+ u - Unknown
1672
+ 22 - Target audience
1673
+ # - Unknown or not specified
1674
+ a - Preschool
1675
+ b - Primary
1676
+ c - Pre-adolescent
1677
+ d - Adolescent
1678
+ e - Adult
1679
+ f - Specialized
1680
+ g - General
1681
+ j - Juvenile
1682
+ | - No attempt to code
1683
+ 23 - Form of item
1684
+ # - None of the following
1685
+ a - Microfilm
1686
+ b - Microfiche
1687
+ c - Microopaque
1688
+ d - Large print
1689
+ f - Braille
1690
+ g - Punched paper tape [ ]
1691
+ h - Magnetic tape [OBSOLETE]
1692
+ i - Multimedia [OBSOLETE]
1693
+ o - Online
1694
+ q - Direct electronic
1695
+ r - Regular print reproduction
1696
+ s - Electronic
1697
+ x - Other form of reproduction [OBSOLETE]
1698
+ z - Other form of reproduction [OBSOLETE]
1699
+ | - No attempt to code
1700
+ 24-29 - Accompanying matter
1701
+ # - No accompanying matter
1702
+ a - Discography
1703
+ b - Bibliography
1704
+ c - Thematic index
1705
+ d - Libretto or text
1706
+ e - Biography of composer or author
1707
+ f - Biography of performer or history of ensemble
1708
+ g - Technical and/or historical information on instruments
1709
+ h - Technical information on music
1710
+ i - Historical information
1711
+ j - Historical information other than music [OBSOLETE]
1712
+ k - Ethnological information
1713
+ n - Not applicable [OBSOLETE]
1714
+ r - Instructional materials
1715
+ s - Music
1716
+ z - Other
1717
+ | - No attempt to code
1718
+ 30-31 - Literary text for sound recordings
1719
+ # - Item is a musical sound recording
1720
+ a - Autobiography
1721
+ b - Biography
1722
+ c - Conference proceedings
1723
+ d - Drama
1724
+ e - Essays
1725
+ f - Fiction
1726
+ g - Reporting
1727
+ h - History
1728
+ i - Instruction
1729
+ j - Language instruction
1730
+ k - Comedy
1731
+ l - Lectures, speeches
1732
+ m - Memoirs
1733
+ n - Not applicable
1734
+ o - Folktales
1735
+ p - Poetry
1736
+ r - Rehearsals
1737
+ s - Sounds
1738
+ t - Interviews
1739
+ z - Other
1740
+ | - No attempt to code
1741
+ 32 - Main entry in body of entry [OBSOLETE]
1742
+ 0 - Main entry not in body of entry
1743
+ 1 - Main entry in body of entry
1744
+ | - No attempt to code
1745
+ 32 - Undefined
1746
+ 33 - Transposition and arrangement
1747
+ # - Not arrangement or transposition or not specified
1748
+ a - Transposition
1749
+ b - Arrangement
1750
+ c - Both transposed and arranged
1751
+ n - Not applicable
1752
+ u - Unknown
1753
+ | - No attempt to code
1754
+ 34 - Undefined
1755
+ 008--CONTINUING RESOURCES
1756
+ Character Positions
1757
+ 18 - Frequency
1758
+ # - No determinable frequency
1759
+ a - Annual
1760
+ b - Bimonthly
1761
+ c - Semiweekly
1762
+ d - Daily
1763
+ e - Biweekly
1764
+ f - Semiannual
1765
+ g - Biennial
1766
+ h - Triennial
1767
+ i - Three times a week
1768
+ j - Three times a month
1769
+ k - Continuously updated
1770
+ m - Monthly
1771
+ q - Quarterly
1772
+ s - Semimonthly
1773
+ t - Three times a year
1774
+ u - Unknown
1775
+ w - Weekly
1776
+ z - Other
1777
+ | - No attempt to code
1778
+ 19 - Regularity
1779
+ n - Normalized irregular
1780
+ r - Regular
1781
+ u - Unknown
1782
+ x - Completely irregular
1783
+ | - No attempt to code
1784
+ 20 - ISSN center [OBSOLETE]
1785
+ # - No ISSN center code assigned
1786
+ 0 - International Center
1787
+ 1 - United States
1788
+ 2 - United Kingdom
1789
+ 3 - Australia [OBSOLETE]
1790
+ 4 - Canada
1791
+ 5 - Moscow Regional Centre [OBSOLETE]
1792
+ 6 - Federal Republic of Germany [OBSOLETE]
1793
+ 7 - France [OBSOLETE]
1794
+ 8 - Argentina [OBSOLETE]
1795
+ 9 - Japan [OBSOLETE]
1796
+ u - Unknown [OBSOLETE]
1797
+ z - Other
1798
+ | - No attempt to code
1799
+ 21 - Type of continuing resource
1800
+ # - None of the following
1801
+ d - Updating database
1802
+ l - Updating loose-leaf
1803
+ m - Monographic series
1804
+ n - Newspaper
1805
+ p - Periodical
1806
+ w - Updating Web site
1807
+ | - No attempt to code
1808
+ 22 - Form of original item
1809
+ # - None of the following
1810
+ a - Microfilm
1811
+ b - Microfiche
1812
+ c - Microopaque
1813
+ d - Large print
1814
+ e - Newspaper format
1815
+ f - Braille
1816
+ g - Punched paper tape [OBSOLETE]
1817
+ h - Magnetic tape [OBSOLETE]
1818
+ i - Multimedia [OBSOLETE]
1819
+ o - Online
1820
+ q - Direct electronic
1821
+ s - Electronic
1822
+ x - Other physical medium [OBSOLETE]
1823
+ z - Other physical medium [OBSOLETE]
1824
+ | - No attempt to code
1825
+ 23 - Form of item
1826
+ # - None of the following
1827
+ a - Microfilm
1828
+ b - Microfiche
1829
+ c - Microopaque
1830
+ d - Large print
1831
+ f - Braille
1832
+ g - Punched paper tape [OBSOLETE]
1833
+ h - Magnetic tape [OBSOLETE]
1834
+ i - Multimedia [OBSOLETE]
1835
+ o - Online
1836
+ q - Direct electronic
1837
+ r - Regular print reproduction
1838
+ s - Electronic
1839
+ z - Other form of reproduction [OBSOLETE]
1840
+ | - No attempt to code
1841
+ 24 - Nature of entire work
1842
+ # - No specified nature of entire work
1843
+ a - Abstracts/summaries
1844
+ b - Bibliographies
1845
+ c - Catalogs
1846
+ d - Dictionaries
1847
+ e - Encyclopedias
1848
+ f - Handbooks
1849
+ g - Legal articles
1850
+ h - Biography
1851
+ i - Indexes
1852
+ k - Discographies
1853
+ l - Legislation
1854
+ m - Theses
1855
+ n - Surveys of literature in a subject area
1856
+ n - Legal cases and case notes [OBSOLETE]
1857
+ o - Reviews
1858
+ p - Programmed texts
1859
+ q - Filmographies
1860
+ r - Directories
1861
+ s - Statistics
1862
+ t - Technical reports
1863
+ u - Standards/specifications
1864
+ v - Legal cases and case notes
1865
+ w - Law reports and digests
1866
+ y - Yearbooks
1867
+ z - Treaties
1868
+ 5 - Calendars
1869
+ 6 - Comics/graphic novels
1870
+ | - No attempt to code
1871
+ 25-27 - Nature of contents
1872
+ # - No specified nature of contents
1873
+ a - Abstracts/summaries
1874
+ b - Bibliographies
1875
+ c - Catalogs
1876
+ d - Dictionaries
1877
+ e - Encyclopedias
1878
+ f - Handbooks
1879
+ g - Legal articles
1880
+ h - Biography
1881
+ i - Indexes
1882
+ k - Discographies
1883
+ l - Legislation
1884
+ m - Theses
1885
+ n - Surveys of literature in a subject area
1886
+ n - Legal cases and case notes [OBSOLETE]
1887
+ o - Reviews
1888
+ p - Programmed texts
1889
+ q - Filmographies
1890
+ r - Directories
1891
+ s - Statistics
1892
+ t - Technical reports
1893
+ u - Standards/specifications
1894
+ v - Legal cases and case notes
1895
+ w - Law reports and digests
1896
+ y - Yearbooks
1897
+ z - Treaties
1898
+ 5 - Calendars
1899
+ 6 - Comics/graphic novels
1900
+ | - No attempt to code
1901
+ 28 - Government publication
1902
+ # - Not a government publication
1903
+ a - Autonomous or semi-autonomous component
1904
+ c - Multilocal
1905
+ f - Federal/national
1906
+ i - International intergovernmental
1907
+ l - Local
1908
+ m - Multistate
1909
+ n - Government publication--level undetermined [OBSOLETE]
1910
+ o - Government publication--level undetermined
1911
+ s - State, provincial, territorial, dependent,etc.
1912
+ u - Unknown if item is government publication
1913
+ z - Other
1914
+ | - No attempt to code
1915
+ 29 - Conference publication
1916
+ 0 - Not a conference publication
1917
+ 1 - Conference publication
1918
+ | - No attempt to code
1919
+ 30-32 - Undefined
1920
+ 30 - Title page availability [OBSOLETE]
1921
+ # - No separate title page issued
1922
+ a - In last issue of volume, loose
1923
+ b - In last issue of volume, attached
1924
+ c - In first issue of next volume, loose
1925
+ d - In first issue of next volume, attached
1926
+ e - Published separately, free upon request
1927
+ f - Published separately, free, automatically sent
1928
+ g - Published separately, purchase, request
1929
+ u - Unknown
1930
+ z - Other title page availability
1931
+ | - No attempt to code
1932
+ 31 - Index availability [OBSOLETE]
1933
+ # - No index published
1934
+ a - Each issue contains index to its own contents (no volume index), loose
1935
+ b - In last issue of volume, loose, separately paged
1936
+ c - In last issue of volume, loose, unpaged
1937
+ d - In last issue of volume, attached
1938
+ e - In first issue of next volume, loose, separately paged
1939
+ f - In first issue of next volume, loose, unpaged
1940
+ g - In first issue of next volume, attached
1941
+ h - Published separately, free, automatically sent
1942
+ i - Published separately, free, upon request
1943
+ j - Published separately, bound from publisher, free, automatically sent
1944
+ k - Published separately, bound from publisher, free, upon request
1945
+ l - Received separately, bound from publisher
1946
+ m - Supplement or subseries, indexed in parent journal index
1947
+ u - Unknown
1948
+ z - Other index availability
1949
+ | - No attempt to code
1950
+ 32 - Cumulative index availability [OBSOLETE]
1951
+ 0 - No cumulative index available
1952
+ 1 - Cumulative index available
1953
+ u - Unknown
1954
+ | - No attempt to code
1955
+ 33 - Original alphabet or script of title
1956
+ # - No alphabet or script given/no key title
1957
+ a - Basic roman
1958
+ b - Extended roman
1959
+ c - Cyrillic
1960
+ d - Japanese
1961
+ e - Chinese
1962
+ f - Arabic
1963
+ g - Greek
1964
+ h - Hebrew
1965
+ i - Thai
1966
+ j - Devanagari
1967
+ k - Korean
1968
+ l - Tamil
1969
+ u - Unknown
1970
+ z - Other
1971
+ | - No attempt to code
1972
+ 34 - Entry convention
1973
+ 0 - Successive entry
1974
+ 1 - Latest entry
1975
+ 2 - Integrated entry
1976
+ | - No attempt to code
1977
+ 008--VISUAL MATERIALS
1978
+ Character Positions
1979
+ 18-20 - Running time for motion pictures and videorecordings
1980
+ 000 - Running time exceeds three characters
1981
+ 001-999 - Running time
1982
+ --- - Running time unknown
1983
+ nnn - Not applicable
1984
+ ||| - No attempt to code
1985
+ 21 - Undefined
1986
+ 21 - In LC collection [OBSOLETE]
1987
+ # - Not in LC
1988
+ a - In LC, print note
1989
+ b - In LC, do not print note
1990
+ u - Unknown
1991
+ 22 - Target audience
1992
+ # - Unknown or not specified
1993
+ a - Preschool
1994
+ b - Primary
1995
+ c - Pre-adolescent
1996
+ d - Adolescent
1997
+ e - Adult
1998
+ f - Specialized
1999
+ g - General
2000
+ j - Juvenile
2001
+ | - No attempt to code
2002
+ 23-27 - Undefined
2003
+ 23-27 - Accompanying matter [OBSOLETE]
2004
+ # - No accompanying matter
2005
+ 0 - No [OBSOLETE]
2006
+ 1 - Yes [OBSOLETE]
2007
+ l - Stills
2008
+ m - Script material
2009
+ o - Posters
2010
+ p - Pressbooks
2011
+ q - Lobby cards
2012
+ r - Instructional materials
2013
+ s - Music
2014
+ z - Other
2015
+ | - No attempt to code
2016
+ 28 - Government publication
2017
+ # - Not a government publication
2018
+ a - Autonomous or semi-autonomous component
2019
+ c - Multilocal
2020
+ f - Federal/national
2021
+ i - International intergovernmental
2022
+ l - Local
2023
+ m - Multistate
2024
+ n - Government publication--level undetermined [OBSOLETE]
2025
+ o - Government publication--level undetermined
2026
+ s - State, provincial, territorial, dependent, etc.
2027
+ u - Unknown if item is government publication
2028
+ z - Other
2029
+ | - No attempt to code
2030
+ 29 - Form of item
2031
+ # - None of the following
2032
+ a - Microfilm
2033
+ b - Microfiche
2034
+ c - Microopaque
2035
+ d - Large print
2036
+ f - Braille
2037
+ o - Online
2038
+ q - Direct electronic
2039
+ r - Regular print reproduction
2040
+ s - Electronic
2041
+ | - No attempt to code
2042
+ 30-32 - Undefined
2043
+ 32 - Main entry in body of entry [OBSOLETE]
2044
+ 0 - Main entry not in body of entry
2045
+ 1 - Main entry in body of entry
2046
+ | - No attempt to code
2047
+ 33 - Type of visual material
2048
+ a - Art original
2049
+ b - Kit
2050
+ c - Art reproduction
2051
+ d - Diorama
2052
+ e - Electronic videorecording [OBSOLETE]
2053
+ f - Filmstrip
2054
+ g - Game
2055
+ i - Picture
2056
+ k - Graphic
2057
+ l - Technical drawing
2058
+ m - Motion picture
2059
+ n - Chart
2060
+ o - Flash card
2061
+ p - Microscope slide
2062
+ q - Model
2063
+ r - Realia
2064
+ s - Slide
2065
+ t - Transparency
2066
+ v - Videorecording
2067
+ w - Toy
2068
+ z - Other
2069
+ | - No attempt to code
2070
+ 34 - Technique
2071
+ # - Not applicable [OBSOLETE]
2072
+ a - Animation
2073
+ c - Animation and live action
2074
+ l - Live action
2075
+ n - Not applicable
2076
+ u - Unknown
2077
+ z - Other technique
2078
+ | - No attempt to code
2079
+ 008--MIXED MATERIALS
2080
+ Character Positions
2081
+ 18-22 - Undefined
2082
+ 23 - Form of item
2083
+ # - None of the following
2084
+ a - Microfilm
2085
+ b - Microfiche
2086
+ c - Microopaque
2087
+ d - Large print
2088
+ f - Braille
2089
+ g - Punched paper tape [OBSOLETE]
2090
+ h - Magnetic tape [OBSOLETE]
2091
+ i - Multimedia [OBSOLETE]
2092
+ j - Handwritten transcript [OBSOLETE]
2093
+ o - Online
2094
+ p - Photocopy [OBSOLETE]
2095
+ q - Direct electronic
2096
+ r - Regular print reproduction
2097
+ s - Electronic
2098
+ t - Typewritten transcript [OBSOLETE]
2099
+ z - Other form of reproduction [OBSOLETE]
2100
+ | - No attempt to code
2101
+ 24-34 - Undefined
2102
+ 30 - Case file indicator [OBSOLETE]
2103
+ # - No case file exists
2104
+ c - Case file exists
2105
+ 32 - Processing status code [OBSOLETE]
2106
+ a - Collection not in library
2107
+ b - Completely processed
2108
+ c - Processed but with unprocessed additions
2109
+ d - Requires processing
2110
+ e - Totally unprocessed
2111
+ f - Under total cloture
2112
+ u - Unknown
2113
+ 33 - Collection status code [OBSOLETE]
2114
+ a - Discrete grouping of material
2115
+ b - Accession
2116
+ c - Active solicitation
2117
+ d - Solicitation unsuccessful
2118
+ e - Information file only
2119
+ u - Unknown
2120
+ 34 - Level of collection control code [OBSOLETE]
2121
+ a - Control on collection level
2122
+ b - Control by series
2123
+ c - Control by container
2124
+ d - Control by folder
2125
+ e - Control by item
2126
+ u - Unknown
2127
+
2128
+ 009 - PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) - [OBSOLETE]
2129
+ Character Positions
2130
+ 00 - Genealogical stage
2131
+ 01 - Technical stage
2132
+ 02 - Color stage
2133
+ 03 - Film emulsion
2134
+ 04 - Film base
2135
+ 05 - Negative or positive sound
2136
+ 06 - Additional types of color
2137
+ 07 - Longitudinal shrinkage
2138
+ 08 - Perforation shrinkage
2139
+ 09 - Film deterioration
2140
+ 10 - Completeness
2141
+ 11-14 - Film inspection date
2142
+
2143
+