rdf 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CREDITS +1 -0
  3. data/VERSION +1 -1
  4. data/lib/rdf.rb +10 -48
  5. data/lib/rdf/cli/vocab-loader.rb +78 -142
  6. data/lib/rdf/mixin/enumerable.rb +25 -0
  7. data/lib/rdf/mixin/mutable.rb +3 -0
  8. data/lib/rdf/model/graph.rb +1 -1
  9. data/lib/rdf/model/node.rb +25 -2
  10. data/lib/rdf/model/statement.rb +20 -12
  11. data/lib/rdf/model/uri.rb +11 -2
  12. data/lib/rdf/nquads.rb +8 -6
  13. data/lib/rdf/ntriples/writer.rb +14 -10
  14. data/lib/rdf/query/pattern.rb +10 -8
  15. data/lib/rdf/reader.rb +11 -2
  16. data/lib/rdf/repository.rb +1 -1
  17. data/lib/rdf/vocab.rb +396 -96
  18. data/lib/rdf/vocab/cc.rb +117 -25
  19. data/lib/rdf/vocab/cert.rb +230 -117
  20. data/lib/rdf/vocab/dc.rb +930 -233
  21. data/lib/rdf/vocab/dc11.rb +151 -37
  22. data/lib/rdf/vocab/doap.rb +326 -114
  23. data/lib/rdf/vocab/exif.rb +930 -533
  24. data/lib/rdf/vocab/foaf.rb +602 -346
  25. data/lib/rdf/vocab/geo.rb +139 -33
  26. data/lib/rdf/vocab/gr.rb +1551 -1084
  27. data/lib/rdf/vocab/ht.rb +319 -0
  28. data/lib/rdf/vocab/ical.rb +507 -349
  29. data/lib/rdf/vocab/ma.rb +504 -280
  30. data/lib/rdf/vocab/mo.rb +2425 -876
  31. data/lib/rdf/vocab/og.rb +178 -90
  32. data/lib/rdf/vocab/owl.rb +513 -219
  33. data/lib/rdf/vocab/prov.rb +1557 -479
  34. data/lib/rdf/vocab/rdfs.rb +107 -31
  35. data/lib/rdf/vocab/rdfv.rb +165 -0
  36. data/lib/rdf/vocab/rsa.rb +61 -18
  37. data/lib/rdf/vocab/rss.rb +55 -22
  38. data/lib/rdf/vocab/schema.rb +8590 -3995
  39. data/lib/rdf/vocab/sioc.rb +657 -218
  40. data/lib/rdf/vocab/skos.rb +227 -134
  41. data/lib/rdf/vocab/skosxl.rb +47 -33
  42. data/lib/rdf/vocab/vcard.rb +693 -327
  43. data/lib/rdf/vocab/void.rb +175 -132
  44. data/lib/rdf/vocab/vs.rb +27 -0
  45. data/lib/rdf/vocab/wdrs.rb +123 -119
  46. data/lib/rdf/vocab/wot.rb +155 -45
  47. data/lib/rdf/vocab/xhtml.rb +2 -1
  48. data/lib/rdf/vocab/xhv.rb +496 -231
  49. data/lib/rdf/vocab/xsd.rb +382 -53
  50. data/lib/rdf/writer.rb +8 -4
  51. metadata +5 -4
  52. data/lib/rdf/vocab/http.rb +0 -84
  53. data/lib/rdf/vocab/v.rb +0 -154
@@ -1,543 +1,940 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  # This file generated automatically using vocab-fetch from http://www.w3.org/2003/12/exif/ns#
2
3
  require 'rdf'
3
4
  module RDF
4
5
  class EXIF < StrictVocabulary("http://www.w3.org/2003/12/exif/ns#")
5
6
 
6
7
  # Class definitions
7
- property :IFD, :label => 'IFD', :comment =>
8
- %(An Image File Directory)
8
+ term :IFD,
9
+ comment: %(An Image File Directory).freeze,
10
+ label: "IFD".freeze,
11
+ type: "rdfs:Class".freeze
9
12
 
10
13
  # Property definitions
11
- property :apertureValue, :label => 'ApertureValue', :comment =>
12
- %(The lens aperture. The unit is the APEX value.)
13
- property :artist, :label => 'Artist', :comment =>
14
- %(Person who created the image)
15
- property :bitsPerSample, :label => 'BitsPerSample', :comment =>
16
- %(The number of bits per image component. In this standard each
17
- component of the image is 8 bits, so the value for this tag is
18
- 8. See also SamplesPerPixel. In JPEG compressed data a JPEG
19
- marker is used instead of this tag.)
20
- property :brightnessValue, :label => 'BrightnessValue', :comment =>
21
- %(The value of brightness. The unit is the APEX value.
22
- Ordinarily it is given in the range of -99.99 to 99.99. Note
23
- that if the numerator of the recorded value is FFFFFFFF.H,
24
- Unknown shall be indicated.)
25
- property :cfaPattern, :label => 'CFAPattern', :comment =>
26
- %(The color filter array \(CFA\) geometric pattern of the image
27
- sensor when a one-chip color area sensor is used. It does not
28
- apply to all sensing methods.)
29
- property :colorSpace, :label => 'ColorSpace', :comment =>
30
- %(The color space information tag \(ColorSpace\) is always
31
- recorded as the color space specifier. Normally sRGB \(=1\) is
32
- used to define the color space based on the PC monitor
33
- conditions and environment.)
34
- property :componentsConfiguration, :label => 'ComponentsConfiguration', :comment =>
35
- %(Information specific to compressed data. The channels of each
36
- component are arranged in order from the 1st component to the
37
- 4th. For uncompressed data the data arrangement is given in
38
- the PhotometricInterpretation tag. However, since
39
- PhotometricInterpretation can only express the order of Y,Cb
40
- and Cr, this tag is provided for cases when compressed data
41
- uses components other than Y, Cb, and Cr and to enable support
42
- of other sequences.)
43
- property :compressedBitsPerPixel, :label => 'CompressedBitsPerPixel', :comment =>
44
- %(Information specific to compressed data. The compression mode
45
- used for a compressed image is indicated in unit bits per
46
- pixel.)
47
- property :compression, :label => 'Compression', :comment =>
48
- %(The compression scheme used for the image data. When a primary
49
- image is JPEG compressed, this designation is not necessary
50
- and is omitted. When thumbnails use JPEG compression, this tag
51
- value is set to 6.)
52
- property :contrast, :label => 'Contrast', :comment =>
53
- %(The direction of contrast processing applied by the camera
54
- when the image was shot.)
55
- property :copyright, :label => 'Copyright', :comment =>
56
- %(Copyright information. In this standard the tag is used to
57
- indicate both the photographer and editor copyrights. It is
58
- the copyright notice of the person or organization claiming
59
- rights to the image.)
60
- property :customRendered, :label => 'CustomRendered', :comment =>
61
- %(The use of special processing on image data, such as rendering
62
- geared to output. When special processing is performed, the
63
- reader is expected to disable or minimize any further
64
- processing.)
65
- property :datatype, :label => 'Data Type', :comment =>
66
- %(The Exif field data type, such as ascii, byte, short etc.)
67
- property :date, :label => 'Date', :comment =>
68
- %(a date information. Usually saved as YYYY:MM:DD \(HH:MM:SS\)
69
- format in Exif data, but represented here as W3C-DTF format)
70
- property :dateAndOrTime, :label => 'Date and/or Time', :comment =>
71
- %(An attribute relating to Date and/or Time)
72
- property :dateTime, :label => 'DateTime', :comment =>
73
- %(The date and time of image creation. In this standard it is
74
- the date and time the file was changed.)
75
- property :dateTimeDigitized, :label => 'DateTimeDigitized', :comment =>
76
- %(The date and time when the image was stored as digital data.
77
- If, for example, an image was captured by DSC and at the same
78
- time the file was recorded, then the DateTimeOriginal and
79
- DateTimeDigitized will have the same contents.)
80
- property :dateTimeOriginal, :label => 'DateTimeOriginal', :comment =>
81
- %(The date and time when the original image data was generated.
82
- For a DSC the date and time the picture was taken are
83
- recorded.)
84
- property :deviceSettingDescription, :label => 'DeviceSettingDescription', :comment =>
85
- %(Information on the picture-taking conditions of a particular
86
- camera model. The tag is used only to indicate the
87
- picture-taking conditions in the reader.)
88
- property :digitalZoomRatio, :label => 'DigitalZoomRatio', :comment =>
89
- %(The digital zoom ratio when the image was shot. If the
90
- numerator of the recorded value is 0, this indicates that
91
- digital zoom was not used.)
92
- property :exifAttribute, :label => 'Exif Attribute', :comment =>
93
- %(A property that connects an IFD to one of its entries. Super
94
- property which integrates all Exif tags.)
95
- property :exif_IFD_Pointer, :label => 'Exif IFD Pointer', :comment =>
96
- %(A pointer to the Exif IFD, which is a set of tags for
97
- recording Exif-specific attribute information.)
98
- property :exifdata, :label => 'Exif data', :comment =>
99
- %(An Exif IFD data entry)
100
- property :exifVersion, :label => 'ExifVersion', :comment =>
101
- %(Exif Version)
102
- property :exposureBiasValue, :label => 'ExposureBiasValue', :comment =>
103
- %(The exposure bias. The unit is the APEX value. Ordinarily it
104
- is given in the range of -99.99 to 99.99.)
105
- property :exposureIndex, :label => 'ExposureIndex', :comment =>
106
- %(The exposure index selected on the camera or input device at
107
- the time the image is captured.)
108
- property :exposureMode, :label => 'ExposureMode', :comment =>
109
- %(the exposure mode set when the image was shot. In
110
- auto-bracketing mode, the camera shoots a series of frames of
111
- the same scene at different exposure settings.)
112
- property :exposureProgram, :label => 'ExposureProgram', :comment =>
113
- %(The class of the program used by the camera to set exposure
114
- when the picture is taken.)
115
- property :exposureTime, :label => 'ExposureTime', :comment =>
116
- %(Exposure time, given in seconds \(sec\).)
117
- property :fNumber, :label => 'FNumber', :comment =>
118
- %(F number)
119
- property :fileSource, :label => 'FileSource', :comment =>
120
- %(The image source. If a DSC recorded the image, this tag value
121
- of this tag always be set to 3, indicating that the image was
122
- recorded on a DSC.)
123
- property :flash, :label => 'Flash', :comment =>
124
- %(The status of flash when the image was shot.)
125
- property :flashEnergy, :label => 'FlashEnergy', :comment =>
126
- %(The strobe energy at the time the image is captured, as
127
- measured in Beam Candle Power Seconds \(BCPS\).)
128
- property :flashpixVersion, :label => 'FlashpixVersion', :comment =>
129
- %(The Flashpix format version supported by a FPXR file. If the
130
- FPXR function supports Flashpix format Ver. 1.0, this is
131
- indicated similarly to ExifVersion by recording "0100" as
132
- 4-byte ASCII.)
133
- property :focalLength, :label => 'FocalLength', :comment =>
134
- %(The actual focal length of the lens, in mm. Conversion is not
135
- made to the focal length of a 35 mm film camera.)
136
- property :focalLengthIn35mmFilm, :label => 'FocalLengthIn35mmFilm', :comment =>
137
- %(The equivalent focal length assuming a 35mm film camera, in
138
- mm. A value of 0 means the focal length is unknown. Note that
139
- this tag differs from the FocalLength tag.)
140
- property :focalPlaneResolutionUnit, :label => 'FocalPlaneResolutionUnit', :comment =>
141
- %(The unit for measuring FocalPlaneXResolution and
142
- FocalPlaneYResolution. This value is the same as the
143
- ResolutionUnit.)
144
- property :focalPlaneXResolution, :label => 'FocalPlaneXResolution', :comment =>
145
- %(The number of pixels in the image width \(X\) direction per
146
- FocalPlaneResolutionUnit on the camera focal plane.)
147
- property :focalPlaneYResolution, :label => 'FocalPlaneYResolution', :comment =>
148
- %(The number of pixels in the image height \(Y\) direction per
149
- FocalPlaneResolutionUnit on the camera focal plane.)
150
- property :gpsInfo, :label => 'GPS Info', :comment =>
151
- %(An attribute relating to GPS information)
152
- property :gpsAltitude, :label => 'GPSAltitude', :comment =>
153
- %(The altitude based on the reference in GPSAltitudeRef.
154
- Altitude is expressed as one RATIONAL value. The reference
155
- unit is meters.)
156
- property :gpsAltitudeRef, :label => 'GPSAltitudeRef', :comment =>
157
- %(Indicates the altitude used as the reference altitude. If the
158
- reference is sea level and the altitude is above sea level, 0
159
- is given. If the altitude is below sea level, a value of 1 is
160
- given and the altitude is indicated as an absolute value in
161
- the GPSAltitude tag. The reference unit is meters.)
162
- property :gpsAreaInformation, :label => 'GPSAreaInformation', :comment =>
163
- %(A character string recording the name of the GPS area. The
164
- first byte indicates the character code used, and this is
165
- followed by the name of the GPS area.)
166
- property :gpsDOP, :label => 'GPSDOP', :comment =>
167
- %(The GPS DOP \(data degree of precision\). An HDOP value is
168
- written during two-dimensional measurement, and PDOP during
169
- three-dimensional measurement.)
170
- property :gpsDateStamp, :label => 'GPSDateStamp', :comment =>
171
- %(date and time information relative to UTC \(Coordinated
172
- Universal Time\). The record format is "YYYY:MM:DD" while
173
- converted to W3C-DTF to use in RDF)
174
- property :gpsDestBearing, :label => 'GPSDestBearing', :comment =>
175
- %(The bearing to the destination point. The range of values is
176
- from 0.00 to 359.99.)
177
- property :gpsDestBearingRef, :label => 'GPSDestBearingRef', :comment =>
178
- %(Indicates the reference used for giving the bearing to the
179
- destination point. 'T' denotes true direction and 'M' is
180
- magnetic direction.)
181
- property :gpsDestDistance, :label => 'GPSDestDistance', :comment =>
182
- %(The distance to the destination point.)
183
- property :gpsDestDistanceRef, :label => 'GPSDestDistanceRef', :comment =>
184
- %(Indicates the unit used to express the distance to the
185
- destination point. 'K', 'M' and 'N' represent kilometers,
186
- miles and knots.)
187
- property :gpsDestLatitude, :label => 'GPSDestLatitude', :comment =>
188
- %(Latitude of destination, expressed as three values giving the
189
- degrees, minutes, and seconds, respectively.)
190
- property :gpsDestLatitudeRef, :label => 'GPSDestLatitudeRef', :comment =>
191
- %(Reference for latitude of destination)
192
- property :gpsDestLongitude, :label => 'GPSDestLongitude', :comment =>
193
- %(Longitude of destination, expressed as three values giving the
194
- degrees, minutes, and seconds, respectively.)
195
- property :gpsDestLongitudeRef, :label => 'GPSDestLongitudeRef', :comment =>
196
- %(Reference for longitude of destination)
197
- property :gpsDifferential, :label => 'GPSDifferential', :comment =>
198
- %(Indicates whether differential correction is applied to the
199
- GPS receiver.)
200
- property :gpsImgDirection, :label => 'GPSImgDirection', :comment =>
201
- %(The direction of the image when it was captured. The range of
202
- values is from 0.00 to 359.99.)
203
- property :gpsImgDirectionRef, :label => 'GPSImgDirectionRef', :comment =>
204
- %(The reference for giving the direction of the image when it is
205
- captured. 'T' denotes true direction and 'M' is magnetic
206
- direction.)
207
- property :gpsInfo_IFD_Pointer, :label => 'GPSInfo IFD Pointer', :comment =>
208
- %(A pointer to the GPS IFD, which is a set of tags for recording
209
- GPS information.)
210
- property :gpsLatitude, :label => 'GPSLatitude', :comment =>
211
- %(The latitude, expressed as three values giving the degrees,
212
- minutes, and seconds, respectively.)
213
- property :gpsLatitudeRef, :label => 'GPSLatitudeRef', :comment =>
214
- %(Indicates whether the latitude is north or south latitude. The
215
- ASCII value 'N' indicates north latitude, and 'S' is south
216
- latitude.)
217
- property :gpsLongitude, :label => 'GPSLongitude', :comment =>
218
- %(The longitude, expressed as three values giving the degrees,
219
- minutes, and seconds, respectively.)
220
- property :gpsLongitudeRef, :label => 'GPSLongitudeRef', :comment =>
221
- %(Indicates whether the longitude is east or west longitude.
222
- ASCII 'E' indicates east longitude, and 'W' is west longitude.)
223
- property :gpsMapDatum, :label => 'GPSMapDatum', :comment =>
224
- %(The geodetic survey data used by the GPS receiver. If the
225
- survey data is restricted to Japan, the value of this tag is
226
- 'TOKYO' or 'WGS-84'. If a GPS Info tag is recorded, it is
227
- strongly recommended that this tag be recorded.)
228
- property :gpsMeasureMode, :label => 'GPSMeasureMode', :comment =>
229
- %(The GPS measurement mode. '2' means two-dimensional
230
- measurement and '3' means three-dimensional measurement is in
231
- progress.)
232
- property :gpsProcessingMethod, :label => 'GPSProcessingMethod', :comment =>
233
- %(A character string recording the name of the method used for
234
- location finding. The first byte indicates the character code
235
- used, and this is followed by the name of the method.)
236
- property :gpsSatellites, :label => 'GPSSatellites', :comment =>
237
- %(The GPS satellites used for measurements. This tag can be used
238
- to describe the number of satellites, their ID number, angle
239
- of elevation, azimuth, SNR and other information in ASCII
240
- notation. The format is not specified. If the GPS receiver is
241
- incapable of taking measurements, value of the tag shall be
242
- set to NULL.)
243
- property :gpsSpeed, :label => 'GPSSpeed', :comment =>
244
- %(The speed of GPS receiver movement.)
245
- property :gpsSpeedRef, :label => 'GPSSpeedRef', :comment =>
246
- %(The unit used to express the GPS receiver speed of movement.
247
- 'K' 'M' and 'N' represents kilometers per hour, miles per
248
- hour, and knots.)
249
- property :gpsStatus, :label => 'GPSStatus', :comment =>
250
- %(The status of the GPS receiver when the image is recorded. 'A'
251
- means measurement is in progress, and 'V' means the
252
- measurement is Interoperability.)
253
- property :gpsTimeStamp, :label => 'GPSTimeStamp', :comment =>
254
- %(The time as UTC \(Coordinated Universal Time\). TimeStamp is
255
- expressed as three RATIONAL values giving the hour, minute,
256
- and second.)
257
- property :gpsTrack, :label => 'GPSTrack', :comment =>
258
- %(The direction of GPS receiver movement. The range of values is
259
- from 0.00 to 359.99.)
260
- property :gpsTrackRef, :label => 'GPSTrackRef', :comment =>
261
- %(The reference for giving the direction of GPS receiver
262
- movement. 'T' denotes true direction and 'M' is magnetic
263
- direction.)
264
- property :gpsVersionID, :label => 'GPSVersionID', :comment =>
265
- %(The version of GPSInfoIFD. The version is given as 2.2.0.0.
266
- This tag is mandatory when GPSInfo tag is present.)
267
- property :gainControl, :label => 'GainControl', :comment =>
268
- %(The degree of overall image gain adjustment.)
269
- property :geo, :label => 'Geometric data', :comment =>
270
- %(Geometric data such as latitude, longitude and altitude.
271
- Usually saved as rational number.)
272
- property :height, :label => 'Height', :comment =>
273
- %(Height of an object)
274
- property :ifdPointer, :label => 'IFD Pointer', :comment =>
275
- %(A tag that refers a child IFD)
276
- property :isoSpeedRatings, :label => 'ISOSpeedRatings', :comment =>
277
- %(Indicates the ISO Speed and ISO Latitude of the camera or
278
- input device as specified in ISO 12232.)
279
- property :imageConfig, :label => 'Image Config', :comment =>
280
- %(An attribute relating to Image Configuration)
281
- property :imageDataCharacter, :label => 'Image Data Character', :comment =>
282
- %(An attribute relating to image data characteristics)
283
- property :imageDataStruct, :label => 'Image Data Structure', :comment =>
284
- %(An attribute relating to image data structure)
285
- property :imageDescription, :label => 'ImageDescription', :comment =>
286
- %(A character string giving the title of the image. It may be a
287
- comment such as "1988 company picnic" or the like. Two-byte
288
- character codes cannot be used. When a 2-byte code is
289
- necessary, the Exif Private tag UserComment is to be used.)
290
- property :imageLength, :label => 'ImageLength', :comment =>
291
- %(Image height. The number of rows of image data. In JPEG
292
- compressed data a JPEG marker is used.)
293
- property :imageUniqueID, :label => 'ImageUniqueID', :comment =>
294
- %(An identifier assigned uniquely to each image. It is recorded
295
- as an ASCII string equivalent to hexadecimal notation and
296
- 128-bit fixed length.)
297
- property :imageWidth, :label => 'ImageWidth', :comment =>
298
- %(Image width. The number of columns of image data, equal to the
299
- number of pixels per row. In JPEG compressed data a JPEG
300
- marker is used instead of this tag.)
301
- property :interoperability_IFD_Pointer, :label => 'Interoperability IFD Pointer', :comment =>
302
- %(A pointer to the Interoperability IFD, which is composed of
303
- tags storing the information to ensure the Interoperability)
304
- property :interopInfo, :label => 'Interoperability Info', :comment =>
305
- %(An attribute relating to Interoperability. Tags stored in
306
- Interoperability IFD may be defined dependently to each
307
- Interoperability rule.)
308
- property :interoperabilityIndex, :label => 'InteroperabilityIndex', :comment =>
309
- %(Indicates the identification of the Interoperability rule.
310
- 'R98' = conforming to R98 file specification of Recommended
311
- Exif Interoperability Rules \(ExifR98\) or to DCF basic file
312
- stipulated by Design Rule for Camera File System. 'THM' =
313
- conforming to DCF thumbnail file stipulated by Design rule for
314
- Camera File System.)
315
- property :interoperabilityVersion, :label => 'InteroperabilityVersion', :comment =>
316
- %(Interoperability Version)
317
- property :jpegInterchangeFormat, :label => 'JPEGInterchangeFormat', :comment =>
318
- %(The offset to the start byte \(SOI\) of JPEG compressed
319
- thumbnail data. This is not used for primary image JPEG data.)
320
- property :jpegInterchangeFormatLength, :label => 'JPEGInterchangeFormatLength', :comment =>
321
- %(The number of bytes of JPEG compressed thumbnail data. This is
322
- not used for primary image JPEG data.)
323
- property :length, :label => 'Length', :comment =>
324
- %(Length of an object. Could be a subProperty of other general
325
- schema.)
326
- property :lightSource, :label => 'LightSource', :comment =>
327
- %(Light source such as Daylight, Tungsten, Flash etc.)
328
- property :make, :label => 'Make', :comment =>
329
- %(Manufacturer of image input equipment)
330
- property :makerNote, :label => 'MakerNote', :comment =>
331
- %(Manufacturer notes)
332
- property :maxApertureValue, :label => 'MaxApertureValue', :comment =>
333
- %(The smallest F number of the lens. The unit is the APEX value.
334
- Ordinarily it is given in the range of 00.00 to 99.99, but it
335
- is not limited to this range.)
336
- property :meter, :label => 'Meter', :comment =>
337
- %(A length with unit of meter)
338
- property :meteringMode, :label => 'MeteringMode', :comment =>
339
- %(Metering mode, such as CenterWeightedAverage, Spot,
340
- MultiSpot,Pattern, Partial etc.)
341
- property :mm, :label => 'Milimeter', :comment =>
342
- %(A length with unit of mm)
343
- property :model, :label => 'Model', :comment =>
344
- %(Model of image input equipment)
345
- property :oecf, :label => 'OECF', :comment =>
346
- %(Indicates the Opto-Electric Conversion Function \(OECF\)
347
- specified in ISO 14524. OECF is the relationship between the
348
- camera optical input and the image values.)
349
- property :orientation, :label => 'Orientation', :comment =>
350
- %(The image orientation viewed in terms of rows and columns.)
351
- property :pimInfo, :label => 'PIM Info', :comment =>
352
- %(An attribute relating to print image matching)
353
- property :photometricInterpretation, :label => 'PhotometricInterpretation', :comment =>
354
- %(Pixel composition. In JPEG compressed data a JPEG marker is
355
- used instead of this tag.)
356
- property :pictTaking, :label => 'PictTaking', :comment =>
357
- %(An attribute relating to Picture-Taking Conditions)
358
- property :pixelXDimension, :label => 'PixelXDimension', :comment =>
359
- %(Information specific to compressed data. When a compressed
360
- file is recorded, the valid width of the meaningful image
361
- shall be recorded in this tag, whether or not there is padding
362
- data or a restart marker. This tag should not exist in an
363
- uncompressed file.)
364
- property :pixelYDimension, :label => 'PixelYDimension', :comment =>
365
- %(Information specific to compressed data. When a compressed
366
- file is recorded, the valid height of the meaningful image
367
- shall be recorded in this tag, whether or not there is padding
368
- data or a restart marker. This tag should not exist in an
369
- uncompressed file. Since data padding is unnecessary in the
370
- vertical direction, the number of lines recorded in this valid
371
- image height tag will in fact be the same as that recorded in
372
- the SOF.)
373
- property :planarConfiguration, :label => 'PlanarConfiguration', :comment =>
374
- %(Indicates whether pixel components are recorded in chunky or
375
- planar format. In JPEG compressed files a JPEG marker is used
376
- instead of this tag. If this field does not exist, the TIFF
377
- default of 1 \(chunky\) is assumed.)
378
- property :primaryChromaticities, :label => 'PrimaryChromaticities', :comment =>
379
- %(The chromaticity of the three primary colors of the image.
380
- Normally this tag is not necessary, since color space is
381
- specified in the color space information tag \(ColorSpace\).)
382
- property :pimBrightness, :label => 'PrintIM Brightness', :comment =>
383
- %(Brightness info for print image matching)
384
- property :pimColorBalance, :label => 'PrintIM ColorBalance', :comment =>
385
- %(ColorBalance info for print image matching)
386
- property :pimContrast, :label => 'PrintIM Contrast', :comment =>
387
- %(Contrast info for print image matching)
388
- property :pimSaturation, :label => 'PrintIM Saturation', :comment =>
389
- %(Saturation info for print image matching)
390
- property :pimSharpness, :label => 'PrintIM Sharpness', :comment =>
391
- %(Sharpness info for print image matching)
392
- property :printImageMatching_IFD_Pointer, :label => 'PrintImageMatching IFD Pointer', :comment =>
393
- %(A pointer to the print image matching IFD)
394
- property :recOffset, :label => 'Recording Offset', :comment =>
395
- %(An attribute relating to recording offset)
396
- property :referenceBlackWhite, :label => 'ReferenceBlackWhite', :comment =>
397
- %(The reference black point value and reference white point
398
- value. The color space is declared in a color space
399
- information tag, with the default being the value that gives
400
- the optimal image characteristics Interoperability these
401
- conditions.)
402
- property :relatedFile, :label => 'Related File', :comment =>
403
- %(Tag Relating to Related File Information)
404
- property :relatedImageFileFormat, :label => 'RelatedImageFileFormat', :comment =>
405
- %(Related image file format)
406
- property :relatedImageLength, :label => 'RelatedImageLength', :comment =>
407
- %(Related image length)
408
- property :relatedImageWidth, :label => 'RelatedImageWidth', :comment =>
409
- %(Related image width)
410
- property :relatedSoundFile, :label => 'RelatedSoundFile', :comment =>
411
- %(Related audio file)
412
- property :resolution, :label => 'Resolution', :comment =>
413
- %(a rational number representing a resolution. Could be a
414
- subProperty of other general schema.)
415
- property :resolutionUnit, :label => 'ResolutionUnit', :comment =>
416
- %(The unit for measuring XResolution and YResolution. The same
417
- unit is used for both XResolution and YResolution. If the
418
- image resolution in unknown, 2 \(inches\) is designated.)
419
- property :rowsPerStrip, :label => 'RowsPerStrip', :comment =>
420
- %(The number of rows per strip. This is the number of rows in
421
- the image of one strip when an image is divided into strips.
422
- With JPEG compressed data this designation is not needed and
423
- is omitted.)
424
- property :samplesPerPixel, :label => 'SamplesPerPixel', :comment =>
425
- %(The number of components per pixel. Since this standard
426
- applies to RGB and YCbCr images, the value set for this tag is
427
- 3. In JPEG compressed data a JPEG marker is used instead of
428
- this tag.)
429
- property :saturation, :label => 'Saturation', :comment =>
430
- %(The direction of saturation processing applied by the camera
431
- when the image was shot.)
432
- property :sceneCaptureType, :label => 'SceneCaptureType', :comment =>
433
- %(The type of scene that was shot. It can also be used to record
434
- the mode in which the image was shot, such as Landscape,
435
- Portrait etc. Note that this differs from the scene type
436
- \(SceneType\) tag.)
437
- property :sceneType, :label => 'SceneType', :comment =>
438
- %(The type of scene. If a DSC recorded the image, this tag value
439
- shall always be set to 1, indicating that the image was
440
- directly photographed.)
441
- property :seconds, :label => 'Seconds', :comment =>
442
- %(a mesurement of time length with unit of second)
443
- property :sensingMethod, :label => 'SensingMethod', :comment =>
444
- %(The image sensor type on the camera or input device, such as
445
- One-chip color area sensor etc.)
446
- property :sharpness, :label => 'Sharpness', :comment =>
447
- %(The direction of sharpness processing applied by the camera
448
- when the image was shot.)
449
- property :shutterSpeedValue, :label => 'ShutterSpeedValue', :comment =>
450
- %(Shutter speed. The unit is the APEX \(Additive System of
451
- Photographic Exposure\) setting)
452
- property :software, :label => 'Software', :comment =>
453
- %(The name and version of the software or firmware of the camera
454
- or image input device used to generate the image.)
455
- property :spatialFrequencyResponse, :label => 'SpatialFrequencyResponse', :comment =>
456
- %(This tag records the camera or input device spatial frequency
457
- table and SFR values in the direction of image width, image
458
- height, and diagonal direction, as specified in ISO 12233.)
459
- property :spectralSensitivity, :label => 'SpectralSensitivity', :comment =>
460
- %(Indicates the spectral sensitivity of each channel of the
461
- camera used. The tag value is an ASCII string compatible with
462
- the standard developed by the ASTM Technical committee.)
463
- property :stripByteCounts, :label => 'StripByteCounts', :comment =>
464
- %(The total number of bytes in each strip. With JPEG compressed
465
- data this designation is not needed and is omitted.)
466
- property :stripOffsets, :label => 'StripOffsets', :comment =>
467
- %(For each strip, the byte offset of that strip. With JPEG
468
- compressed data this designation is not needed and is omitted.)
469
- property :subSecTime, :label => 'SubSecTime', :comment =>
470
- %(DateTime subseconds)
471
- property :subSecTimeDigitized, :label => 'SubSecTimeDigitized', :comment =>
472
- %(DateTimeDigitized subseconds)
473
- property :subSecTimeOriginal, :label => 'SubSecTimeOriginal', :comment =>
474
- %(DateTimeOriginal subseconds)
475
- property :subjectArea, :label => 'SubjectArea', :comment =>
476
- %(The location and area of the main subject in the overall
477
- scene.)
478
- property :subjectDistance, :label => 'SubjectDistance', :comment =>
479
- %(The distance to the subject, given in meters. Note that if the
480
- numerator of the recorded value is FFFFFFFF.H, Infinity shall
481
- be indicated; and if the numerator is 0, Distance unknown
482
- shall be indicated.)
483
- property :subjectDistanceRange, :label => 'SubjectDistanceRange', :comment =>
484
- %(The distance to the subject, such as Macro, Close View or
485
- Distant View.)
486
- property :subjectLocation, :label => 'SubjectLocation', :comment =>
487
- %(The location of the main subject in the scene. The value of
488
- this tag represents the pixel at the center of the main
489
- subject relative to the left edge, prior to rotation
490
- processing as per the Rotation tag. The first value indicates
491
- the X column number and second indicates the Y row number.)
492
- property :subseconds, :label => 'Subseconds', :comment =>
493
- %(A tag used to record fractions of seconds for a date property)
494
- property :tagid, :label => 'Tag ID', :comment =>
495
- %(The Exif tag number with context prefix, such as IFD type or
496
- maker name)
497
- property :tag_number, :label => 'Tag number', :comment =>
498
- %(The Exif tag number)
499
- property :transferFunction, :label => 'TransferFunction', :comment =>
500
- %(A transfer function for the image, described in tabular style.
501
- Normally this tag is not necessary, since color space is
502
- specified in the color space information tag \(ColorSpace\).)
503
- property :_unknown, :label => 'Unknown tag', :comment =>
504
- %(An Exif tag whose meaning is not known)
505
- property :userInfo, :label => 'User Info', :comment =>
506
- %(An attribute relating to User Information)
507
- property :userComment, :label => 'UserComment', :comment =>
508
- %(A tag for Exif users to write keywords or comments on the
509
- image besides those in ImageDescription, and without the
510
- character code limitations of the ImageDescription tag. The
511
- character code used in the UserComment tag is identified based
512
- on an ID code in a fixed 8-byte area at the start of the tag
513
- data area.)
514
- property :versionInfo, :label => 'Version Info', :comment =>
515
- %(An attribute relating to Version)
516
- property :whiteBalance, :label => 'WhiteBalance', :comment =>
517
- %(The white balance mode set when the image was shot.)
518
- property :whitePoint, :label => 'WhitePoint', :comment =>
519
- %(The chromaticity of the white point of the image. Normally
520
- this tag is not necessary, since color space is specified in
521
- the color space information tag \(ColorSpace\).)
522
- property :width, :label => 'Width', :comment =>
523
- %(Width of an object)
524
- property :xResolution, :label => 'XResolution', :comment =>
525
- %(The number of pixels per ResolutionUnit in the ImageWidth
526
- direction. When the image resolution is unknown, 72 [dpi] is
527
- designated.)
528
- property :yCbCrCoefficients, :label => 'YCbCrCoefficients', :comment =>
529
- %(The matrix coefficients for transformation from RGB to YCbCr
530
- image data.)
531
- property :yCbCrPositioning, :label => 'YCbCrPositioning', :comment =>
532
- %(The position of chrominance components in relation to the
533
- luminance component. This field is designated only for JPEG
534
- compressed data or uncompressed YCbCr data.)
535
- property :yCbCrSubSampling, :label => 'YCbCrSubSampling', :comment =>
536
- %(The sampling ratio of chrominance components in relation to
537
- the luminance component. In JPEG compressed data a JPEG marker
538
- is used instead of this tag.)
539
- property :yResolution, :label => 'YResolution', :comment =>
540
- %(The number of pixels per ResolutionUnit in the ImageLength
541
- direction. The same value as XResolution is designated.)
14
+ property :_unknown,
15
+ comment: %(An Exif tag whose meaning is not known).freeze,
16
+ label: "Unknown tag".freeze,
17
+ type: "rdf:Property".freeze
18
+ property :apertureValue,
19
+ comment: %(The lens aperture. The unit is the APEX value.).freeze,
20
+ "exif:tagNumber" => %(37378).freeze,
21
+ label: "ApertureValue".freeze,
22
+ subPropertyOf: "exif:pictTaking".freeze,
23
+ type: "rdf:Property".freeze
24
+ property :artist,
25
+ comment: %(Person who created the image).freeze,
26
+ "exif:tagNumber" => %(315).freeze,
27
+ label: "Artist".freeze,
28
+ subPropertyOf: "exif:exifAttribute".freeze,
29
+ type: "rdf:Property".freeze
30
+ property :bitsPerSample,
31
+ comment: %(The number of bits per image component. In this standard each component of the image is 8 bits, so the value for this tag is 8. See also SamplesPerPixel. In JPEG compressed data a JPEG marker is used instead of this tag.).freeze,
32
+ "exif:tagNumber" => %(258).freeze,
33
+ label: "BitsPerSample".freeze,
34
+ subPropertyOf: "exif:imageDataStruct".freeze,
35
+ type: "rdf:Property".freeze
36
+ property :brightnessValue,
37
+ comment: %(The value of brightness. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99. Note that if the numerator of the recorded value is FFFFFFFF.H, Unknown shall be indicated.).freeze,
38
+ "exif:tagNumber" => %(37379).freeze,
39
+ label: "BrightnessValue".freeze,
40
+ subPropertyOf: "exif:pictTaking".freeze,
41
+ type: "rdf:Property".freeze
42
+ property :cfaPattern,
43
+ comment: %(The color filter array \(CFA\) geometric pattern of the image sensor when a one-chip color area sensor is used. It does not apply to all sensing methods.).freeze,
44
+ "exif:tagNumber" => %(41730).freeze,
45
+ label: "CFAPattern".freeze,
46
+ subPropertyOf: "exif:pictTaking".freeze,
47
+ type: "rdf:Property".freeze
48
+ property :colorSpace,
49
+ comment: %(The color space information tag \(ColorSpace\) is always recorded as the color space specifier. Normally sRGB \(=1\) is used to define the color space based on the PC monitor conditions and environment.).freeze,
50
+ "exif:tagNumber" => %(40961).freeze,
51
+ label: "ColorSpace".freeze,
52
+ subPropertyOf: "exif:imageDataCharacter".freeze,
53
+ type: "rdf:Property".freeze
54
+ property :componentsConfiguration,
55
+ comment: %(Information specific to compressed data. The channels of each component are arranged in order from the 1st component to the 4th. For uncompressed data the data arrangement is given in the PhotometricInterpretation tag. However, since PhotometricInterpretation can only express the order of Y,Cb and Cr, this tag is provided for cases when compressed data uses components other than Y, Cb, and Cr and to enable support of other sequences.).freeze,
56
+ "exif:tagNumber" => %(37121).freeze,
57
+ label: "ComponentsConfiguration".freeze,
58
+ subPropertyOf: "exif:imageConfig".freeze,
59
+ type: "rdf:Property".freeze
60
+ property :compressedBitsPerPixel,
61
+ comment: %(Information specific to compressed data. The compression mode used for a compressed image is indicated in unit bits per pixel.).freeze,
62
+ "exif:tagNumber" => %(37122).freeze,
63
+ label: "CompressedBitsPerPixel".freeze,
64
+ subPropertyOf: "exif:imageConfig".freeze,
65
+ type: "rdf:Property".freeze
66
+ property :compression,
67
+ comment: %(The compression scheme used for the image data. When a primary image is JPEG compressed, this designation is not necessary and is omitted. When thumbnails use JPEG compression, this tag value is set to 6.).freeze,
68
+ "exif:tagNumber" => %(259).freeze,
69
+ label: "Compression".freeze,
70
+ subPropertyOf: "exif:imageDataStruct".freeze,
71
+ type: "rdf:Property".freeze
72
+ property :contrast,
73
+ comment: %(The direction of contrast processing applied by the camera when the image was shot.).freeze,
74
+ "exif:tagNumber" => %(41992).freeze,
75
+ label: "Contrast".freeze,
76
+ subPropertyOf: "exif:pictTaking".freeze,
77
+ type: "rdf:Property".freeze
78
+ property :copyright,
79
+ comment: %(Copyright information. In this standard the tag is used to indicate both the photographer and editor copyrights. It is the copyright notice of the person or organization claiming rights to the image.).freeze,
80
+ "exif:tagNumber" => %(33432).freeze,
81
+ label: "Copyright".freeze,
82
+ subPropertyOf: "exif:exifAttribute".freeze,
83
+ type: "rdf:Property".freeze
84
+ property :customRendered,
85
+ comment: %(The use of special processing on image data, such as rendering geared to output. When special processing is performed, the reader is expected to disable or minimize any further processing.).freeze,
86
+ "exif:tagNumber" => %(41985).freeze,
87
+ label: "CustomRendered".freeze,
88
+ subPropertyOf: "exif:pictTaking".freeze,
89
+ type: "rdf:Property".freeze
90
+ property :datatype,
91
+ comment: %(The Exif field data type, such as ascii, byte, short etc.).freeze,
92
+ label: "Data Type".freeze,
93
+ subPropertyOf: "dc11:type".freeze,
94
+ type: "rdf:Property".freeze
95
+ property :date,
96
+ comment: %(a date information. Usually saved as YYYY:MM:DD \(HH:MM:SS\) format in Exif data, but represented here as W3C-DTF format).freeze,
97
+ label: "Date".freeze,
98
+ subPropertyOf: "dc11:date".freeze,
99
+ type: "rdf:Property".freeze
100
+ property :dateAndOrTime,
101
+ comment: %(An attribute relating to Date and/or Time).freeze,
102
+ label: "Date and/or Time".freeze,
103
+ subPropertyOf: "exif:exifAttribute".freeze,
104
+ type: "rdf:Property".freeze
105
+ property :dateTime,
106
+ comment: %(The date and time of image creation. In this standard it is the date and time the file was changed.).freeze,
107
+ "exif:tagNumber" => %(306).freeze,
108
+ label: "DateTime".freeze,
109
+ subPropertyOf: "exif:exifAttribute".freeze,
110
+ type: "rdf:Property".freeze
111
+ property :dateTimeDigitized,
112
+ comment: %(The date and time when the image was stored as digital data. If, for example, an image was captured by DSC and at the same time the file was recorded, then the DateTimeOriginal and DateTimeDigitized will have the same contents.).freeze,
113
+ "exif:tagNumber" => %(36868).freeze,
114
+ label: "DateTimeDigitized".freeze,
115
+ subPropertyOf: "exif:dateAndOrTime".freeze,
116
+ type: "rdf:Property".freeze
117
+ property :dateTimeOriginal,
118
+ comment: %(The date and time when the original image data was generated. For a DSC the date and time the picture was taken are recorded.).freeze,
119
+ "exif:tagNumber" => %(36867).freeze,
120
+ label: "DateTimeOriginal".freeze,
121
+ subPropertyOf: "exif:dateAndOrTime".freeze,
122
+ type: "rdf:Property".freeze
123
+ property :deviceSettingDescription,
124
+ comment: %(Information on the picture-taking conditions of a particular camera model. The tag is used only to indicate the picture-taking conditions in the reader.).freeze,
125
+ "exif:tagNumber" => %(41995).freeze,
126
+ label: "DeviceSettingDescription".freeze,
127
+ subPropertyOf: "exif:pictTaking".freeze,
128
+ type: "rdf:Property".freeze
129
+ property :digitalZoomRatio,
130
+ comment: %(The digital zoom ratio when the image was shot. If the numerator of the recorded value is 0, this indicates that digital zoom was not used.).freeze,
131
+ "exif:tagNumber" => %(41988).freeze,
132
+ label: "DigitalZoomRatio".freeze,
133
+ subPropertyOf: "exif:pictTaking".freeze,
134
+ type: "rdf:Property".freeze
135
+ property :exifAttribute,
136
+ comment: %(A property that connects an IFD to one of its entries. Super property which integrates all Exif tags.).freeze,
137
+ domain: "exif:IFD".freeze,
138
+ label: "Exif Attribute".freeze,
139
+ type: "rdf:Property".freeze
140
+ property :exifVersion,
141
+ comment: %(Exif Version).freeze,
142
+ "exif:tagNumber" => %(36864).freeze,
143
+ label: "ExifVersion".freeze,
144
+ subPropertyOf: "exif:versionInfo".freeze,
145
+ type: "rdf:Property".freeze
146
+ property :exif_IFD_Pointer,
147
+ comment: %(A pointer to the Exif IFD, which is a set of tags for recording Exif-specific attribute information.).freeze,
148
+ "exif:tagNumber" => %(34665).freeze,
149
+ label: "Exif IFD Pointer".freeze,
150
+ subPropertyOf: "exif:ifdPointer".freeze,
151
+ type: "rdf:Property".freeze
152
+ property :exifdata,
153
+ comment: %(An Exif IFD data entry).freeze,
154
+ label: "Exif data".freeze,
155
+ type: "rdf:Property".freeze
156
+ property :exposureBiasValue,
157
+ comment: %(The exposure bias. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99.).freeze,
158
+ "exif:tagNumber" => %(37380).freeze,
159
+ label: "ExposureBiasValue".freeze,
160
+ subPropertyOf: "exif:pictTaking".freeze,
161
+ type: "rdf:Property".freeze
162
+ property :exposureIndex,
163
+ comment: %(The exposure index selected on the camera or input device at the time the image is captured.).freeze,
164
+ "exif:tagNumber" => %(41493).freeze,
165
+ label: "ExposureIndex".freeze,
166
+ subPropertyOf: "exif:pictTaking".freeze,
167
+ type: "rdf:Property".freeze
168
+ property :exposureMode,
169
+ comment: %(the exposure mode set when the image was shot. In auto-bracketing mode, the camera shoots a series of frames of the same scene at different exposure settings.).freeze,
170
+ "exif:tagNumber" => %(41986).freeze,
171
+ label: "ExposureMode".freeze,
172
+ subPropertyOf: "exif:pictTaking".freeze,
173
+ type: "rdf:Property".freeze
174
+ property :exposureProgram,
175
+ comment: %(The class of the program used by the camera to set exposure when the picture is taken.).freeze,
176
+ "exif:tagNumber" => %(34850).freeze,
177
+ label: "ExposureProgram".freeze,
178
+ subPropertyOf: "exif:pictTaking".freeze,
179
+ type: "rdf:Property".freeze
180
+ property :exposureTime,
181
+ comment: %(Exposure time, given in seconds \(sec\).).freeze,
182
+ "exif:tagNumber" => %(33434).freeze,
183
+ label: "ExposureTime".freeze,
184
+ subPropertyOf: "exif:pictTaking".freeze,
185
+ type: "rdf:Property".freeze
186
+ property :fNumber,
187
+ comment: %(F number).freeze,
188
+ "exif:tagNumber" => %(33437).freeze,
189
+ label: "FNumber".freeze,
190
+ subPropertyOf: "exif:pictTaking".freeze,
191
+ type: "rdf:Property".freeze
192
+ property :fileSource,
193
+ comment: %(The image source. If a DSC recorded the image, this tag value of this tag always be set to 3, indicating that the image was recorded on a DSC.).freeze,
194
+ "exif:tagNumber" => %(41728).freeze,
195
+ label: "FileSource".freeze,
196
+ subPropertyOf: "exif:pictTaking".freeze,
197
+ type: "rdf:Property".freeze
198
+ property :flash,
199
+ comment: %(The status of flash when the image was shot.).freeze,
200
+ "exif:tagNumber" => %(37385).freeze,
201
+ label: "Flash".freeze,
202
+ subPropertyOf: "exif:pictTaking".freeze,
203
+ type: "rdf:Property".freeze
204
+ property :flashEnergy,
205
+ comment: %(The strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds \(BCPS\).).freeze,
206
+ "exif:tagNumber" => %(41483).freeze,
207
+ label: "FlashEnergy".freeze,
208
+ subPropertyOf: "exif:pictTaking".freeze,
209
+ type: "rdf:Property".freeze
210
+ property :flashpixVersion,
211
+ comment: %(The Flashpix format version supported by a FPXR file. If the FPXR function supports Flashpix format Ver. 1.0, this is indicated similarly to ExifVersion by recording "0100" as 4-byte ASCII.).freeze,
212
+ "exif:tagNumber" => %(40960).freeze,
213
+ label: "FlashpixVersion".freeze,
214
+ subPropertyOf: "exif:versionInfo".freeze,
215
+ type: "rdf:Property".freeze
216
+ property :focalLength,
217
+ comment: %(The actual focal length of the lens, in mm. Conversion is not made to the focal length of a 35 mm film camera.).freeze,
218
+ "exif:tagNumber" => %(37386).freeze,
219
+ label: "FocalLength".freeze,
220
+ subPropertyOf: "exif:pictTaking".freeze,
221
+ type: "rdf:Property".freeze
222
+ property :focalLengthIn35mmFilm,
223
+ comment: %(The equivalent focal length assuming a 35mm film camera, in mm. A value of 0 means the focal length is unknown. Note that this tag differs from the FocalLength tag.).freeze,
224
+ "exif:tagNumber" => %(41989).freeze,
225
+ label: "FocalLengthIn35mmFilm".freeze,
226
+ subPropertyOf: "exif:pictTaking".freeze,
227
+ type: "rdf:Property".freeze
228
+ property :focalPlaneResolutionUnit,
229
+ comment: %(The unit for measuring FocalPlaneXResolution and FocalPlaneYResolution. This value is the same as the ResolutionUnit.).freeze,
230
+ "exif:tagNumber" => %(41488).freeze,
231
+ label: "FocalPlaneResolutionUnit".freeze,
232
+ subPropertyOf: "exif:pictTaking".freeze,
233
+ type: "rdf:Property".freeze
234
+ property :focalPlaneXResolution,
235
+ comment: %(The number of pixels in the image width \(X\) direction per FocalPlaneResolutionUnit on the camera focal plane.).freeze,
236
+ "exif:tagNumber" => %(41486).freeze,
237
+ label: "FocalPlaneXResolution".freeze,
238
+ subPropertyOf: "exif:pictTaking".freeze,
239
+ type: "rdf:Property".freeze
240
+ property :focalPlaneYResolution,
241
+ comment: %(The number of pixels in the image height \(Y\) direction per FocalPlaneResolutionUnit on the camera focal plane.).freeze,
242
+ "exif:tagNumber" => %(41487).freeze,
243
+ label: "FocalPlaneYResolution".freeze,
244
+ subPropertyOf: "exif:pictTaking".freeze,
245
+ type: "rdf:Property".freeze
246
+ property :gainControl,
247
+ comment: %(The degree of overall image gain adjustment.).freeze,
248
+ "exif:tagNumber" => %(41991).freeze,
249
+ label: "GainControl".freeze,
250
+ subPropertyOf: "exif:pictTaking".freeze,
251
+ type: "rdf:Property".freeze
252
+ property :geo,
253
+ comment: %(Geometric data such as latitude, longitude and altitude. Usually saved as rational number.).freeze,
254
+ label: "Geometric data".freeze,
255
+ type: "rdf:Property".freeze
256
+ property :gpsAltitude,
257
+ comment: %(The altitude based on the reference in GPSAltitudeRef. Altitude is expressed as one RATIONAL value. The reference unit is meters.).freeze,
258
+ "exif:tagNumber" => %(6).freeze,
259
+ label: "GPSAltitude".freeze,
260
+ subPropertyOf: "exif:gpsInfo".freeze,
261
+ type: "rdf:Property".freeze
262
+ property :gpsAltitudeRef,
263
+ comment: %(Indicates the altitude used as the reference altitude. If the reference is sea level and the altitude is above sea level, 0 is given. If the altitude is below sea level, a value of 1 is given and the altitude is indicated as an absolute value in the GPSAltitude tag. The reference unit is meters.).freeze,
264
+ "exif:tagNumber" => %(5).freeze,
265
+ label: "GPSAltitudeRef".freeze,
266
+ subPropertyOf: "exif:gpsInfo".freeze,
267
+ type: "rdf:Property".freeze
268
+ property :gpsAreaInformation,
269
+ comment: %(A character string recording the name of the GPS area. The first byte indicates the character code used, and this is followed by the name of the GPS area.).freeze,
270
+ "exif:tagNumber" => %(28).freeze,
271
+ label: "GPSAreaInformation".freeze,
272
+ subPropertyOf: "exif:gpsInfo".freeze,
273
+ type: "rdf:Property".freeze
274
+ property :gpsDOP,
275
+ comment: %(The GPS DOP \(data degree of precision\). An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.).freeze,
276
+ "exif:tagNumber" => %(11).freeze,
277
+ label: "GPSDOP".freeze,
278
+ subPropertyOf: "exif:gpsInfo".freeze,
279
+ type: "rdf:Property".freeze
280
+ property :gpsDateStamp,
281
+ comment: %(date and time information relative to UTC \(Coordinated Universal Time\). The record format is "YYYY:MM:DD" while converted to W3C-DTF to use in RDF).freeze,
282
+ "exif:tagNumber" => %(29).freeze,
283
+ label: "GPSDateStamp".freeze,
284
+ subPropertyOf: "exif:gpsInfo".freeze,
285
+ type: "rdf:Property".freeze
286
+ property :gpsDestBearing,
287
+ comment: %(The bearing to the destination point. The range of values is from 0.00 to 359.99.).freeze,
288
+ "exif:tagNumber" => %(24).freeze,
289
+ label: "GPSDestBearing".freeze,
290
+ subPropertyOf: "exif:gpsInfo".freeze,
291
+ type: "rdf:Property".freeze
292
+ property :gpsDestBearingRef,
293
+ comment: %(Indicates the reference used for giving the bearing to the destination point. 'T' denotes true direction and 'M' is magnetic direction.).freeze,
294
+ "exif:tagNumber" => %(23).freeze,
295
+ label: "GPSDestBearingRef".freeze,
296
+ subPropertyOf: "exif:gpsInfo".freeze,
297
+ type: "rdf:Property".freeze
298
+ property :gpsDestDistance,
299
+ comment: %(The distance to the destination point.).freeze,
300
+ "exif:tagNumber" => %(26).freeze,
301
+ label: "GPSDestDistance".freeze,
302
+ subPropertyOf: "exif:gpsInfo".freeze,
303
+ type: "rdf:Property".freeze
304
+ property :gpsDestDistanceRef,
305
+ comment: %(Indicates the unit used to express the distance to the destination point. 'K', 'M' and 'N' represent kilometers, miles and knots.).freeze,
306
+ "exif:tagNumber" => %(25).freeze,
307
+ label: "GPSDestDistanceRef".freeze,
308
+ subPropertyOf: "exif:gpsInfo".freeze,
309
+ type: "rdf:Property".freeze
310
+ property :gpsDestLatitude,
311
+ comment: %(Latitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively.).freeze,
312
+ "exif:tagNumber" => %(20).freeze,
313
+ label: "GPSDestLatitude".freeze,
314
+ subPropertyOf: "exif:gpsInfo".freeze,
315
+ type: "rdf:Property".freeze
316
+ property :gpsDestLatitudeRef,
317
+ comment: %(Reference for latitude of destination).freeze,
318
+ "exif:tagNumber" => %(19).freeze,
319
+ label: "GPSDestLatitudeRef".freeze,
320
+ subPropertyOf: "exif:gpsInfo".freeze,
321
+ type: "rdf:Property".freeze
322
+ property :gpsDestLongitude,
323
+ comment: %(Longitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively.).freeze,
324
+ "exif:tagNumber" => %(22).freeze,
325
+ label: "GPSDestLongitude".freeze,
326
+ subPropertyOf: "exif:gpsInfo".freeze,
327
+ type: "rdf:Property".freeze
328
+ property :gpsDestLongitudeRef,
329
+ comment: %(Reference for longitude of destination).freeze,
330
+ "exif:tagNumber" => %(21).freeze,
331
+ label: "GPSDestLongitudeRef".freeze,
332
+ subPropertyOf: "exif:gpsInfo".freeze,
333
+ type: "rdf:Property".freeze
334
+ property :gpsDifferential,
335
+ comment: %(Indicates whether differential correction is applied to the GPS receiver.).freeze,
336
+ "exif:tagNumber" => %(30).freeze,
337
+ label: "GPSDifferential".freeze,
338
+ subPropertyOf: "exif:gpsInfo".freeze,
339
+ type: "rdf:Property".freeze
340
+ property :gpsImgDirection,
341
+ comment: %(The direction of the image when it was captured. The range of values is from 0.00 to 359.99.).freeze,
342
+ "exif:tagNumber" => %(17).freeze,
343
+ label: "GPSImgDirection".freeze,
344
+ subPropertyOf: "exif:gpsInfo".freeze,
345
+ type: "rdf:Property".freeze
346
+ property :gpsImgDirectionRef,
347
+ comment: %(The reference for giving the direction of the image when it is captured. 'T' denotes true direction and 'M' is magnetic direction.).freeze,
348
+ "exif:tagNumber" => %(16).freeze,
349
+ label: "GPSImgDirectionRef".freeze,
350
+ subPropertyOf: "exif:gpsInfo".freeze,
351
+ type: "rdf:Property".freeze
352
+ property :gpsInfo,
353
+ comment: %(An attribute relating to GPS information).freeze,
354
+ label: "GPS Info".freeze,
355
+ subPropertyOf: "exif:exifAttribute".freeze,
356
+ type: "rdf:Property".freeze
357
+ property :gpsInfo_IFD_Pointer,
358
+ comment: %(A pointer to the GPS IFD, which is a set of tags for recording GPS information.).freeze,
359
+ "exif:tagNumber" => %(34853).freeze,
360
+ label: "GPSInfo IFD Pointer".freeze,
361
+ subPropertyOf: "exif:ifdPointer".freeze,
362
+ type: "rdf:Property".freeze
363
+ property :gpsLatitude,
364
+ comment: %(The latitude, expressed as three values giving the degrees, minutes, and seconds, respectively.).freeze,
365
+ "exif:tagNumber" => %(2).freeze,
366
+ label: "GPSLatitude".freeze,
367
+ subPropertyOf: "exif:gpsInfo".freeze,
368
+ type: "rdf:Property".freeze
369
+ property :gpsLatitudeRef,
370
+ comment: %(Indicates whether the latitude is north or south latitude. The ASCII value 'N' indicates north latitude, and 'S' is south latitude.).freeze,
371
+ "exif:tagNumber" => %(1).freeze,
372
+ label: "GPSLatitudeRef".freeze,
373
+ subPropertyOf: "exif:gpsInfo".freeze,
374
+ type: "rdf:Property".freeze
375
+ property :gpsLongitude,
376
+ comment: %(The longitude, expressed as three values giving the degrees, minutes, and seconds, respectively.).freeze,
377
+ "exif:tagNumber" => %(4).freeze,
378
+ label: "GPSLongitude".freeze,
379
+ subPropertyOf: "exif:gpsInfo".freeze,
380
+ type: "rdf:Property".freeze
381
+ property :gpsLongitudeRef,
382
+ comment: %(Indicates whether the longitude is east or west longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude.).freeze,
383
+ "exif:tagNumber" => %(3).freeze,
384
+ label: "GPSLongitudeRef".freeze,
385
+ subPropertyOf: "exif:gpsInfo".freeze,
386
+ type: "rdf:Property".freeze
387
+ property :gpsMapDatum,
388
+ comment: %(The geodetic survey data used by the GPS receiver. If the survey data is restricted to Japan, the value of this tag is 'TOKYO' or 'WGS-84'. If a GPS Info tag is recorded, it is strongly recommended that this tag be recorded.).freeze,
389
+ "exif:tagNumber" => %(18).freeze,
390
+ label: "GPSMapDatum".freeze,
391
+ subPropertyOf: "exif:gpsInfo".freeze,
392
+ type: "rdf:Property".freeze
393
+ property :gpsMeasureMode,
394
+ comment: %(The GPS measurement mode. '2' means two-dimensional measurement and '3' means three-dimensional measurement is in progress.).freeze,
395
+ "exif:tagNumber" => %(10).freeze,
396
+ label: "GPSMeasureMode".freeze,
397
+ subPropertyOf: "exif:gpsInfo".freeze,
398
+ type: "rdf:Property".freeze
399
+ property :gpsProcessingMethod,
400
+ comment: %(A character string recording the name of the method used for location finding. The first byte indicates the character code used, and this is followed by the name of the method.).freeze,
401
+ "exif:tagNumber" => %(27).freeze,
402
+ label: "GPSProcessingMethod".freeze,
403
+ subPropertyOf: "exif:gpsInfo".freeze,
404
+ type: "rdf:Property".freeze
405
+ property :gpsSatellites,
406
+ comment: %(The GPS satellites used for measurements. This tag can be used to describe the number of satellites, their ID number, angle of elevation, azimuth, SNR and other information in ASCII notation. The format is not specified. If the GPS receiver is incapable of taking measurements, value of the tag shall be set to NULL.).freeze,
407
+ "exif:tagNumber" => %(8).freeze,
408
+ label: "GPSSatellites".freeze,
409
+ subPropertyOf: "exif:gpsInfo".freeze,
410
+ type: "rdf:Property".freeze
411
+ property :gpsSpeed,
412
+ comment: %(The speed of GPS receiver movement.).freeze,
413
+ "exif:tagNumber" => %(13).freeze,
414
+ label: "GPSSpeed".freeze,
415
+ subPropertyOf: "exif:gpsInfo".freeze,
416
+ type: "rdf:Property".freeze
417
+ property :gpsSpeedRef,
418
+ comment: %(The unit used to express the GPS receiver speed of movement. 'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots.).freeze,
419
+ "exif:tagNumber" => %(12).freeze,
420
+ label: "GPSSpeedRef".freeze,
421
+ subPropertyOf: "exif:gpsInfo".freeze,
422
+ type: "rdf:Property".freeze
423
+ property :gpsStatus,
424
+ comment: %(The status of the GPS receiver when the image is recorded. 'A' means measurement is in progress, and 'V' means the measurement is Interoperability.).freeze,
425
+ "exif:tagNumber" => %(9).freeze,
426
+ label: "GPSStatus".freeze,
427
+ subPropertyOf: "exif:gpsInfo".freeze,
428
+ type: "rdf:Property".freeze
429
+ property :gpsTimeStamp,
430
+ comment: %(The time as UTC \(Coordinated Universal Time\). TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.).freeze,
431
+ "exif:tagNumber" => %(7).freeze,
432
+ label: "GPSTimeStamp".freeze,
433
+ subPropertyOf: "exif:gpsInfo".freeze,
434
+ type: "rdf:Property".freeze
435
+ property :gpsTrack,
436
+ comment: %(The direction of GPS receiver movement. The range of values is from 0.00 to 359.99.).freeze,
437
+ "exif:tagNumber" => %(15).freeze,
438
+ label: "GPSTrack".freeze,
439
+ subPropertyOf: "exif:gpsInfo".freeze,
440
+ type: "rdf:Property".freeze
441
+ property :gpsTrackRef,
442
+ comment: %(The reference for giving the direction of GPS receiver movement. 'T' denotes true direction and 'M' is magnetic direction.).freeze,
443
+ "exif:tagNumber" => %(14).freeze,
444
+ label: "GPSTrackRef".freeze,
445
+ subPropertyOf: "exif:gpsInfo".freeze,
446
+ type: "rdf:Property".freeze
447
+ property :gpsVersionID,
448
+ comment: %(The version of GPSInfoIFD. The version is given as 2.2.0.0. This tag is mandatory when GPSInfo tag is present.).freeze,
449
+ "exif:tagNumber" => %(0).freeze,
450
+ label: "GPSVersionID".freeze,
451
+ subPropertyOf: "exif:gpsInfo".freeze,
452
+ type: "rdf:Property".freeze
453
+ property :height,
454
+ comment: %(Height of an object).freeze,
455
+ label: "Height".freeze,
456
+ subPropertyOf: "exif:length".freeze,
457
+ type: "rdf:Property".freeze
458
+ property :ifdPointer,
459
+ comment: %(A tag that refers a child IFD).freeze,
460
+ label: "IFD Pointer".freeze,
461
+ subPropertyOf: "exif:exifAttribute".freeze,
462
+ type: "rdf:Property".freeze
463
+ property :imageConfig,
464
+ comment: %(An attribute relating to Image Configuration).freeze,
465
+ label: "Image Config".freeze,
466
+ subPropertyOf: "exif:exifAttribute".freeze,
467
+ type: "rdf:Property".freeze
468
+ property :imageDataCharacter,
469
+ comment: %(An attribute relating to image data characteristics).freeze,
470
+ label: "Image Data Character".freeze,
471
+ subPropertyOf: "exif:exifAttribute".freeze,
472
+ type: "rdf:Property".freeze
473
+ property :imageDataStruct,
474
+ comment: %(An attribute relating to image data structure).freeze,
475
+ label: "Image Data Structure".freeze,
476
+ subPropertyOf: "exif:exifAttribute".freeze,
477
+ type: "rdf:Property".freeze
478
+ property :imageDescription,
479
+ comment: %(A character string giving the title of the image. It may be a comment such as "1988 company picnic" or the like. Two-byte character codes cannot be used. When a 2-byte code is necessary, the Exif Private tag UserComment is to be used.).freeze,
480
+ "exif:tagNumber" => %(270).freeze,
481
+ label: "ImageDescription".freeze,
482
+ subPropertyOf: "exif:exifAttribute".freeze,
483
+ type: "rdf:Property".freeze
484
+ property :imageLength,
485
+ comment: %(Image height. The number of rows of image data. In JPEG compressed data a JPEG marker is used.).freeze,
486
+ "exif:tagNumber" => %(257).freeze,
487
+ label: "ImageLength".freeze,
488
+ subPropertyOf: "exif:imageDataStruct".freeze,
489
+ type: "rdf:Property".freeze
490
+ property :imageUniqueID,
491
+ comment: %(An identifier assigned uniquely to each image. It is recorded as an ASCII string equivalent to hexadecimal notation and 128-bit fixed length.).freeze,
492
+ "exif:tagNumber" => %(42016).freeze,
493
+ label: "ImageUniqueID".freeze,
494
+ subPropertyOf: "exif:exifAttribute".freeze,
495
+ type: "rdf:Property".freeze
496
+ property :imageWidth,
497
+ comment: %(Image width. The number of columns of image data, equal to the number of pixels per row. In JPEG compressed data a JPEG marker is used instead of this tag.).freeze,
498
+ "exif:tagNumber" => %(256).freeze,
499
+ label: "ImageWidth".freeze,
500
+ subPropertyOf: "exif:imageDataStruct".freeze,
501
+ type: "rdf:Property".freeze
502
+ property :interopInfo,
503
+ comment: %(An attribute relating to Interoperability. Tags stored in
504
+ Interoperability IFD may be defined dependently to each Interoperability rule.).freeze,
505
+ label: "Interoperability Info".freeze,
506
+ subPropertyOf: "exif:exifAttribute".freeze,
507
+ type: "rdf:Property".freeze
508
+ property :interoperabilityIndex,
509
+ comment: %(Indicates the identification of the Interoperability rule. 'R98' = conforming to R98 file specification of Recommended Exif Interoperability Rules \(ExifR98\) or to DCF basic file stipulated by Design Rule for Camera File System. 'THM' = conforming to DCF thumbnail file stipulated by Design rule for Camera File System.).freeze,
510
+ "exif:tagNumber" => %(1).freeze,
511
+ label: "InteroperabilityIndex".freeze,
512
+ subPropertyOf: "exif:interopInfo".freeze,
513
+ type: "rdf:Property".freeze
514
+ property :interoperabilityVersion,
515
+ comment: %(Interoperability Version).freeze,
516
+ "exif:tagNumber" => %(2).freeze,
517
+ label: "InteroperabilityVersion".freeze,
518
+ subPropertyOf: "exif:interopInfo".freeze,
519
+ type: "rdf:Property".freeze
520
+ property :interoperability_IFD_Pointer,
521
+ comment: %(A pointer to the Interoperability IFD, which is composed of tags storing the information to ensure the Interoperability).freeze,
522
+ "exif:tagNumber" => %(40965).freeze,
523
+ label: "Interoperability IFD Pointer".freeze,
524
+ subPropertyOf: "exif:ifdPointer".freeze,
525
+ type: "rdf:Property".freeze
526
+ property :isoSpeedRatings,
527
+ comment: %(Indicates the ISO Speed and ISO Latitude of the camera or input device as specified in ISO 12232.).freeze,
528
+ "exif:tagNumber" => %(34855).freeze,
529
+ label: "ISOSpeedRatings".freeze,
530
+ subPropertyOf: "exif:pictTaking".freeze,
531
+ type: "rdf:Property".freeze
532
+ property :jpegInterchangeFormat,
533
+ comment: %(The offset to the start byte \(SOI\) of JPEG compressed thumbnail data. This is not used for primary image JPEG data.).freeze,
534
+ "exif:tagNumber" => %(513).freeze,
535
+ label: "JPEGInterchangeFormat".freeze,
536
+ subPropertyOf: "exif:recOffset".freeze,
537
+ type: "rdf:Property".freeze
538
+ property :jpegInterchangeFormatLength,
539
+ comment: %(The number of bytes of JPEG compressed thumbnail data. This is not used for primary image JPEG data.).freeze,
540
+ "exif:tagNumber" => %(514).freeze,
541
+ label: "JPEGInterchangeFormatLength".freeze,
542
+ subPropertyOf: "exif:recOffset".freeze,
543
+ type: "rdf:Property".freeze
544
+ property :length,
545
+ comment: %(Length of an object. Could be a subProperty of other general schema.).freeze,
546
+ label: "Length".freeze,
547
+ type: "rdf:Property".freeze
548
+ property :lightSource,
549
+ comment: %(Light source such as Daylight, Tungsten, Flash etc.).freeze,
550
+ "exif:tagNumber" => %(37384).freeze,
551
+ label: "LightSource".freeze,
552
+ subPropertyOf: "exif:pictTaking".freeze,
553
+ type: "rdf:Property".freeze
554
+ property :make,
555
+ comment: %(Manufacturer of image input equipment).freeze,
556
+ "exif:tagNumber" => %(271).freeze,
557
+ label: "Make".freeze,
558
+ subPropertyOf: "exif:exifAttribute".freeze,
559
+ type: "rdf:Property".freeze
560
+ property :makerNote,
561
+ comment: %(Manufacturer notes).freeze,
562
+ "exif:tagNumber" => %(37500).freeze,
563
+ label: "MakerNote".freeze,
564
+ subPropertyOf: "exif:userInfo".freeze,
565
+ type: "rdf:Property".freeze
566
+ property :maxApertureValue,
567
+ comment: %(The smallest F number of the lens. The unit is the APEX value. Ordinarily it is given in the range of 00.00 to 99.99, but it is not limited to this range.).freeze,
568
+ "exif:tagNumber" => %(37381).freeze,
569
+ label: "MaxApertureValue".freeze,
570
+ subPropertyOf: "exif:pictTaking".freeze,
571
+ type: "rdf:Property".freeze
572
+ property :meter,
573
+ comment: %(A length with unit of meter).freeze,
574
+ label: "Meter".freeze,
575
+ subPropertyOf: "exif:length".freeze,
576
+ type: "rdf:Property".freeze
577
+ property :meteringMode,
578
+ comment: %(Metering mode, such as CenterWeightedAverage, Spot, MultiSpot,Pattern, Partial etc.).freeze,
579
+ "exif:tagNumber" => %(37383).freeze,
580
+ label: "MeteringMode".freeze,
581
+ subPropertyOf: "exif:pictTaking".freeze,
582
+ type: "rdf:Property".freeze
583
+ property :mm,
584
+ comment: %(A length with unit of mm).freeze,
585
+ label: "Milimeter".freeze,
586
+ subPropertyOf: "exif:length".freeze,
587
+ type: "rdf:Property".freeze
588
+ property :model,
589
+ comment: %(Model of image input equipment).freeze,
590
+ "exif:tagNumber" => %(272).freeze,
591
+ label: "Model".freeze,
592
+ subPropertyOf: "exif:exifAttribute".freeze,
593
+ type: "rdf:Property".freeze
594
+ property :oecf,
595
+ comment: %(Indicates the Opto-Electric Conversion Function \(OECF\) specified in ISO 14524. OECF is the relationship between the camera optical input and the image values.).freeze,
596
+ "exif:tagNumber" => %(34856).freeze,
597
+ label: "OECF".freeze,
598
+ subPropertyOf: "exif:pictTaking".freeze,
599
+ type: "rdf:Property".freeze
600
+ property :orientation,
601
+ comment: %(The image orientation viewed in terms of rows and columns.).freeze,
602
+ "exif:tagNumber" => %(274).freeze,
603
+ label: "Orientation".freeze,
604
+ subPropertyOf: "exif:imageDataStruct".freeze,
605
+ type: "rdf:Property".freeze
606
+ property :photometricInterpretation,
607
+ comment: %(Pixel composition. In JPEG compressed data a JPEG marker is used instead of this tag.).freeze,
608
+ "exif:tagNumber" => %(262).freeze,
609
+ label: "PhotometricInterpretation".freeze,
610
+ subPropertyOf: "exif:imageDataStruct".freeze,
611
+ type: "rdf:Property".freeze
612
+ property :pictTaking,
613
+ comment: %(An attribute relating to Picture-Taking Conditions).freeze,
614
+ label: "PictTaking".freeze,
615
+ subPropertyOf: "exif:exifAttribute".freeze,
616
+ type: "rdf:Property".freeze
617
+ property :pimBrightness,
618
+ comment: %(Brightness info for print image matching).freeze,
619
+ "exif:tagNumber" => %(10).freeze,
620
+ label: "PrintIM Brightness".freeze,
621
+ subPropertyOf: "exif:pimInfo".freeze,
622
+ type: "rdf:Property".freeze
623
+ property :pimColorBalance,
624
+ comment: %(ColorBalance info for print image matching).freeze,
625
+ "exif:tagNumber" => %(11).freeze,
626
+ label: "PrintIM ColorBalance".freeze,
627
+ subPropertyOf: "exif:pimInfo".freeze,
628
+ type: "rdf:Property".freeze
629
+ property :pimContrast,
630
+ comment: %(Contrast info for print image matching).freeze,
631
+ "exif:tagNumber" => %(9).freeze,
632
+ label: "PrintIM Contrast".freeze,
633
+ subPropertyOf: "exif:pimInfo".freeze,
634
+ type: "rdf:Property".freeze
635
+ property :pimInfo,
636
+ comment: %(An attribute relating to print image matching).freeze,
637
+ label: "PIM Info".freeze,
638
+ subPropertyOf: "exif:exifAttribute".freeze,
639
+ type: "rdf:Property".freeze
640
+ property :pimSaturation,
641
+ comment: %(Saturation info for print image matching).freeze,
642
+ "exif:tagNumber" => %(12).freeze,
643
+ label: "PrintIM Saturation".freeze,
644
+ subPropertyOf: "exif:pimInfo".freeze,
645
+ type: "rdf:Property".freeze
646
+ property :pimSharpness,
647
+ comment: %(Sharpness info for print image matching).freeze,
648
+ "exif:tagNumber" => %(13).freeze,
649
+ label: "PrintIM Sharpness".freeze,
650
+ subPropertyOf: "exif:pimInfo".freeze,
651
+ type: "rdf:Property".freeze
652
+ property :pixelXDimension,
653
+ comment: %(Information specific to compressed data. When a compressed file is recorded, the valid width of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker. This tag should not exist in an uncompressed file.).freeze,
654
+ "exif:tagNumber" => %(40962).freeze,
655
+ label: "PixelXDimension".freeze,
656
+ subPropertyOf: "exif:imageConfig".freeze,
657
+ type: "rdf:Property".freeze
658
+ property :pixelYDimension,
659
+ comment: %(Information specific to compressed data. When a compressed file is recorded, the valid height of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker. This tag should not exist in an uncompressed file. Since data padding is unnecessary in the vertical direction, the number of lines recorded in this valid image height tag will in fact be the same as that recorded in the SOF.).freeze,
660
+ "exif:tagNumber" => %(40963).freeze,
661
+ label: "PixelYDimension".freeze,
662
+ subPropertyOf: "exif:imageConfig".freeze,
663
+ type: "rdf:Property".freeze
664
+ property :planarConfiguration,
665
+ comment: %(Indicates whether pixel components are recorded in chunky or planar format. In JPEG compressed files a JPEG marker is used instead of this tag. If this field does not exist, the TIFF default of 1 \(chunky\) is assumed.).freeze,
666
+ "exif:tagNumber" => %(284).freeze,
667
+ label: "PlanarConfiguration".freeze,
668
+ subPropertyOf: "exif:imageDataStruct".freeze,
669
+ type: "rdf:Property".freeze
670
+ property :primaryChromaticities,
671
+ comment: %(The chromaticity of the three primary colors of the image. Normally this tag is not necessary, since color space is specified in the color space information tag \(ColorSpace\).).freeze,
672
+ "exif:tagNumber" => %(319).freeze,
673
+ label: "PrimaryChromaticities".freeze,
674
+ subPropertyOf: "exif:imageDataCharacter".freeze,
675
+ type: "rdf:Property".freeze
676
+ property :printImageMatching_IFD_Pointer,
677
+ comment: %(A pointer to the print image matching IFD).freeze,
678
+ "exif:tagNumber" => %(50341).freeze,
679
+ label: "PrintImageMatching IFD Pointer".freeze,
680
+ subPropertyOf: "exif:ifdPointer".freeze,
681
+ type: "rdf:Property".freeze
682
+ property :recOffset,
683
+ comment: %(An attribute relating to recording offset).freeze,
684
+ label: "Recording Offset".freeze,
685
+ subPropertyOf: "exif:exifAttribute".freeze,
686
+ type: "rdf:Property".freeze
687
+ property :referenceBlackWhite,
688
+ comment: %(The reference black point value and reference white point value. The color space is declared in a color space information tag, with the default being the value that gives the optimal image characteristics Interoperability these conditions.).freeze,
689
+ "exif:tagNumber" => %(532).freeze,
690
+ label: "ReferenceBlackWhite".freeze,
691
+ subPropertyOf: "exif:imageDataCharacter".freeze,
692
+ type: "rdf:Property".freeze
693
+ property :relatedFile,
694
+ comment: %(Tag Relating to Related File Information).freeze,
695
+ label: "Related File".freeze,
696
+ subPropertyOf: "exif:exifAttribute".freeze,
697
+ type: "rdf:Property".freeze
698
+ property :relatedImageFileFormat,
699
+ comment: %(Related image file format).freeze,
700
+ "exif:tagNumber" => %(4096).freeze,
701
+ label: "RelatedImageFileFormat".freeze,
702
+ subPropertyOf: "exif:interopInfo".freeze,
703
+ type: "rdf:Property".freeze
704
+ property :relatedImageLength,
705
+ comment: %(Related image length).freeze,
706
+ "exif:tagNumber" => %(4098).freeze,
707
+ label: "RelatedImageLength".freeze,
708
+ subPropertyOf: "exif:interopInfo".freeze,
709
+ type: "rdf:Property".freeze
710
+ property :relatedImageWidth,
711
+ comment: %(Related image width).freeze,
712
+ "exif:tagNumber" => %(4097).freeze,
713
+ label: "RelatedImageWidth".freeze,
714
+ subPropertyOf: "exif:interopInfo".freeze,
715
+ type: "rdf:Property".freeze
716
+ property :relatedSoundFile,
717
+ comment: %(Related audio file).freeze,
718
+ "exif:tagNumber" => %(40964).freeze,
719
+ label: "RelatedSoundFile".freeze,
720
+ subPropertyOf: "exif:relatedFile".freeze,
721
+ type: "rdf:Property".freeze
722
+ property :resolution,
723
+ comment: %(a rational number representing a resolution. Could be a subProperty of other general schema.).freeze,
724
+ label: "Resolution".freeze,
725
+ type: "rdf:Property".freeze
726
+ property :resolutionUnit,
727
+ comment: %(The unit for measuring XResolution and YResolution. The same unit is used for both XResolution and YResolution. If the image resolution in unknown, 2 \(inches\) is designated.).freeze,
728
+ "exif:tagNumber" => %(296).freeze,
729
+ label: "ResolutionUnit".freeze,
730
+ subPropertyOf: "exif:imageDataStruct".freeze,
731
+ type: "rdf:Property".freeze
732
+ property :rowsPerStrip,
733
+ comment: %(The number of rows per strip. This is the number of rows in the image of one strip when an image is divided into strips. With JPEG compressed data this designation is not needed and is omitted.).freeze,
734
+ "exif:tagNumber" => %(278).freeze,
735
+ label: "RowsPerStrip".freeze,
736
+ subPropertyOf: "exif:recOffset".freeze,
737
+ type: "rdf:Property".freeze
738
+ property :samplesPerPixel,
739
+ comment: %(The number of components per pixel. Since this standard applies to RGB and YCbCr images, the value set for this tag is 3. In JPEG compressed data a JPEG marker is used instead of this tag.).freeze,
740
+ "exif:tagNumber" => %(277).freeze,
741
+ label: "SamplesPerPixel".freeze,
742
+ subPropertyOf: "exif:imageDataStruct".freeze,
743
+ type: "rdf:Property".freeze
744
+ property :saturation,
745
+ comment: %(The direction of saturation processing applied by the camera when the image was shot.).freeze,
746
+ "exif:tagNumber" => %(41993).freeze,
747
+ label: "Saturation".freeze,
748
+ subPropertyOf: "exif:pictTaking".freeze,
749
+ type: "rdf:Property".freeze
750
+ property :sceneCaptureType,
751
+ comment: %(The type of scene that was shot. It can also be used to record the mode in which the image was shot, such as Landscape, Portrait etc. Note that this differs from the scene type \(SceneType\) tag.).freeze,
752
+ "exif:tagNumber" => %(41990).freeze,
753
+ label: "SceneCaptureType".freeze,
754
+ subPropertyOf: "exif:pictTaking".freeze,
755
+ type: "rdf:Property".freeze
756
+ property :sceneType,
757
+ comment: %(The type of scene. If a DSC recorded the image, this tag value shall always be set to 1, indicating that the image was directly photographed.).freeze,
758
+ "exif:tagNumber" => %(41729).freeze,
759
+ label: "SceneType".freeze,
760
+ subPropertyOf: "exif:pictTaking".freeze,
761
+ type: "rdf:Property".freeze
762
+ property :seconds,
763
+ comment: %(a mesurement of time length with unit of second).freeze,
764
+ label: "Seconds".freeze,
765
+ type: "rdf:Property".freeze
766
+ property :sensingMethod,
767
+ comment: %(The image sensor type on the camera or input device, such as One-chip color area sensor etc.).freeze,
768
+ "exif:tagNumber" => %(41495).freeze,
769
+ label: "SensingMethod".freeze,
770
+ subPropertyOf: "exif:pictTaking".freeze,
771
+ type: "rdf:Property".freeze
772
+ property :sharpness,
773
+ comment: %(The direction of sharpness processing applied by the camera when the image was shot.).freeze,
774
+ "exif:tagNumber" => %(41994).freeze,
775
+ label: "Sharpness".freeze,
776
+ subPropertyOf: "exif:pictTaking".freeze,
777
+ type: "rdf:Property".freeze
778
+ property :shutterSpeedValue,
779
+ comment: %(Shutter speed. The unit is the APEX \(Additive System of Photographic Exposure\) setting).freeze,
780
+ "exif:tagNumber" => %(37377).freeze,
781
+ label: "ShutterSpeedValue".freeze,
782
+ subPropertyOf: "exif:pictTaking".freeze,
783
+ type: "rdf:Property".freeze
784
+ property :software,
785
+ comment: %(The name and version of the software or firmware of the camera or image input device used to generate the image.).freeze,
786
+ "exif:tagNumber" => %(305).freeze,
787
+ label: "Software".freeze,
788
+ subPropertyOf: "exif:exifAttribute".freeze,
789
+ type: "rdf:Property".freeze
790
+ property :spatialFrequencyResponse,
791
+ comment: %(This tag records the camera or input device spatial frequency table and SFR values in the direction of image width, image height, and diagonal direction, as specified in ISO 12233.).freeze,
792
+ "exif:tagNumber" => %(41484).freeze,
793
+ label: "SpatialFrequencyResponse".freeze,
794
+ subPropertyOf: "exif:pictTaking".freeze,
795
+ type: "rdf:Property".freeze
796
+ property :spectralSensitivity,
797
+ comment: %(Indicates the spectral sensitivity of each channel of the camera used. The tag value is an ASCII string compatible with the standard developed by the ASTM Technical committee.).freeze,
798
+ "exif:tagNumber" => %(34852).freeze,
799
+ label: "SpectralSensitivity".freeze,
800
+ subPropertyOf: "exif:pictTaking".freeze,
801
+ type: "rdf:Property".freeze
802
+ property :stripByteCounts,
803
+ comment: %(The total number of bytes in each strip. With JPEG compressed data this designation is not needed and is omitted.).freeze,
804
+ "exif:tagNumber" => %(279).freeze,
805
+ label: "StripByteCounts".freeze,
806
+ subPropertyOf: "exif:recOffset".freeze,
807
+ type: "rdf:Property".freeze
808
+ property :stripOffsets,
809
+ comment: %(For each strip, the byte offset of that strip. With JPEG compressed data this designation is not needed and is omitted.).freeze,
810
+ "exif:tagNumber" => %(273).freeze,
811
+ label: "StripOffsets".freeze,
812
+ subPropertyOf: "exif:recOffset".freeze,
813
+ type: "rdf:Property".freeze
814
+ property :subSecTime,
815
+ comment: %(DateTime subseconds).freeze,
816
+ "exif:tagNumber" => %(37520).freeze,
817
+ label: "SubSecTime".freeze,
818
+ subPropertyOf: "exif:dateAndOrTime".freeze,
819
+ type: "rdf:Property".freeze
820
+ property :subSecTimeDigitized,
821
+ comment: %(DateTimeDigitized subseconds).freeze,
822
+ "exif:tagNumber" => %(37522).freeze,
823
+ label: "SubSecTimeDigitized".freeze,
824
+ subPropertyOf: "exif:dateAndOrTime".freeze,
825
+ type: "rdf:Property".freeze
826
+ property :subSecTimeOriginal,
827
+ comment: %(DateTimeOriginal subseconds).freeze,
828
+ "exif:tagNumber" => %(37521).freeze,
829
+ label: "SubSecTimeOriginal".freeze,
830
+ subPropertyOf: "exif:dateAndOrTime".freeze,
831
+ type: "rdf:Property".freeze
832
+ property :subjectArea,
833
+ comment: %(The location and area of the main subject in the overall scene.).freeze,
834
+ "exif:tagNumber" => %(37396).freeze,
835
+ label: "SubjectArea".freeze,
836
+ subPropertyOf: "exif:pictTaking".freeze,
837
+ type: "rdf:Property".freeze
838
+ property :subjectDistance,
839
+ comment: %(The distance to the subject, given in meters. Note that if the numerator of the recorded value is FFFFFFFF.H, Infinity shall be indicated; and if the numerator is 0, Distance unknown shall be indicated.).freeze,
840
+ "exif:tagNumber" => %(37382).freeze,
841
+ label: "SubjectDistance".freeze,
842
+ subPropertyOf: "exif:pictTaking".freeze,
843
+ type: "rdf:Property".freeze
844
+ property :subjectDistanceRange,
845
+ comment: %(The distance to the subject, such as Macro, Close View or Distant View.).freeze,
846
+ "exif:tagNumber" => %(41996).freeze,
847
+ label: "SubjectDistanceRange".freeze,
848
+ subPropertyOf: "exif:pictTaking".freeze,
849
+ type: "rdf:Property".freeze
850
+ property :subjectLocation,
851
+ comment: %(The location of the main subject in the scene. The value of this tag represents the pixel at the center of the main subject relative to the left edge, prior to rotation processing as per the Rotation tag. The first value indicates the X column number and second indicates the Y row number.).freeze,
852
+ "exif:tagNumber" => %(41492).freeze,
853
+ label: "SubjectLocation".freeze,
854
+ subPropertyOf: "exif:pictTaking".freeze,
855
+ type: "rdf:Property".freeze
856
+ property :subseconds,
857
+ comment: %(A tag used to record fractions of seconds for a date property).freeze,
858
+ label: "Subseconds".freeze,
859
+ type: "rdf:Property".freeze
860
+ property :tag_number,
861
+ comment: %(The Exif tag number).freeze,
862
+ label: "Tag number".freeze,
863
+ subPropertyOf: "dc11:identifier".freeze,
864
+ type: "rdf:Property".freeze
865
+ property :tagid,
866
+ comment: %(The Exif tag number with context prefix, such as IFD type or maker name).freeze,
867
+ label: "Tag ID".freeze,
868
+ subPropertyOf: "exif:tag_number".freeze,
869
+ type: "rdf:Property".freeze
870
+ property :transferFunction,
871
+ comment: %(A transfer function for the image, described in tabular style. Normally this tag is not necessary, since color space is specified in the color space information tag \(ColorSpace\).).freeze,
872
+ "exif:tagNumber" => %(301).freeze,
873
+ label: "TransferFunction".freeze,
874
+ subPropertyOf: "exif:imageDataCharacter".freeze,
875
+ type: "rdf:Property".freeze
876
+ property :userComment,
877
+ comment: %(A tag for Exif users to write keywords or comments on the image besides those in ImageDescription, and without the character code limitations of the ImageDescription tag. The character code used in the UserComment tag is identified based on an ID code in a fixed 8-byte area at the start of the tag data area.).freeze,
878
+ "exif:tagNumber" => %(37510).freeze,
879
+ label: "UserComment".freeze,
880
+ subPropertyOf: "exif:userInfo".freeze,
881
+ type: "rdf:Property".freeze
882
+ property :userInfo,
883
+ comment: %(An attribute relating to User Information).freeze,
884
+ label: "User Info".freeze,
885
+ subPropertyOf: "exif:exifAttribute".freeze,
886
+ type: "rdf:Property".freeze
887
+ property :versionInfo,
888
+ comment: %(An attribute relating to Version).freeze,
889
+ label: "Version Info".freeze,
890
+ subPropertyOf: "exif:exifAttribute".freeze,
891
+ type: "rdf:Property".freeze
892
+ property :whiteBalance,
893
+ comment: %(The white balance mode set when the image was shot.).freeze,
894
+ "exif:tagNumber" => %(41987).freeze,
895
+ label: "WhiteBalance".freeze,
896
+ subPropertyOf: "exif:pictTaking".freeze,
897
+ type: "rdf:Property".freeze
898
+ property :whitePoint,
899
+ comment: %(The chromaticity of the white point of the image. Normally this tag is not necessary, since color space is specified in the color space information tag \(ColorSpace\).).freeze,
900
+ "exif:tagNumber" => %(318).freeze,
901
+ label: "WhitePoint".freeze,
902
+ subPropertyOf: "exif:imageDataCharacter".freeze,
903
+ type: "rdf:Property".freeze
904
+ property :width,
905
+ comment: %(Width of an object).freeze,
906
+ label: "Width".freeze,
907
+ subPropertyOf: "exif:length".freeze,
908
+ type: "rdf:Property".freeze
909
+ property :xResolution,
910
+ comment: %(The number of pixels per ResolutionUnit in the ImageWidth direction. When the image resolution is unknown, 72 [dpi] is designated.).freeze,
911
+ "exif:tagNumber" => %(282).freeze,
912
+ label: "XResolution".freeze,
913
+ subPropertyOf: "exif:imageDataStruct".freeze,
914
+ type: "rdf:Property".freeze
915
+ property :yCbCrCoefficients,
916
+ comment: %(The matrix coefficients for transformation from RGB to YCbCr image data.).freeze,
917
+ "exif:tagNumber" => %(529).freeze,
918
+ label: "YCbCrCoefficients".freeze,
919
+ subPropertyOf: "exif:imageDataCharacter".freeze,
920
+ type: "rdf:Property".freeze
921
+ property :yCbCrPositioning,
922
+ comment: %(The position of chrominance components in relation to the luminance component. This field is designated only for JPEG compressed data or uncompressed YCbCr data.).freeze,
923
+ "exif:tagNumber" => %(531).freeze,
924
+ label: "YCbCrPositioning".freeze,
925
+ subPropertyOf: "exif:imageDataStruct".freeze,
926
+ type: "rdf:Property".freeze
927
+ property :yCbCrSubSampling,
928
+ comment: %(The sampling ratio of chrominance components in relation to the luminance component. In JPEG compressed data a JPEG marker is used instead of this tag.).freeze,
929
+ "exif:tagNumber" => %(530).freeze,
930
+ label: "YCbCrSubSampling".freeze,
931
+ subPropertyOf: "exif:imageDataStruct".freeze,
932
+ type: "rdf:Property".freeze
933
+ property :yResolution,
934
+ comment: %(The number of pixels per ResolutionUnit in the ImageLength direction. The same value as XResolution is designated.).freeze,
935
+ "exif:tagNumber" => %(283).freeze,
936
+ label: "YResolution".freeze,
937
+ subPropertyOf: "exif:imageDataStruct".freeze,
938
+ type: "rdf:Property".freeze
542
939
  end
543
940
  end