1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
|
#
# Copyright (c) 2007 NEPOMUK Consortium
# All rights reserved, licensed under either CC-BY or BSD.
#
# You are free:
# * to Share - to copy, distribute and transmit the work
# * to Remix - to adapt the work
# Under the following conditions:
# * Attribution - You must attribute the work in the manner specified by the author
# or licensor (but not in any way that suggests that they endorse you or your use
# of the work).
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice, this
# list of conditions and the following disclaimer in the documentation and/or
# other materials provided with the distribution.
# * Neither the names of the authors nor the names of contributors may
# be used to endorse or promote products derived from this ontology without
# specific prior written permission.
#
# THIS ONTOLOGY IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS ONTOLOGY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
@prefix exif: <http://www.kanzaki.com/ns/exif#> .
@prefix nid3: <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#> .
@prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix tmo: <http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#> .
@prefix protege: <http://protege.stanford.edu/system#> .
@prefix nmo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix nexif: <http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#> .
@prefix ncal: <http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#> .
@prefix pimo: <http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix nao: <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix nie: <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#> .
@prefix nco: <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
nexif: {nexif:Photo
a rdfs:Class ;
rdfs:comment "An Image File Directory" ;
rdfs:label "Photo" ;
rdfs:subClassOf exif:IFD , nfo:RasterImage .
nexif:oecf
a rdf:Property ;
rdfs:comment """tagNumber: 34856
Indicates the Opto-Electric Conversion Function (OECF) specified in ISO 14524. OECF is the relationship between the camera optical input and the image values.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "oecf" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:oecf .
nexif:fileSource
a rdf:Property ;
rdfs: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.
tagNumber: 41728""" ;
rdfs:domain nexif:Photo ;
rdfs:label "fileSource" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:fileSource , nexif:pictTaking .
nexif:maxApertureValue
a rdf:Property ;
rdfs:comment """tagNumber: 37381
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "maxApertureValue" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:maxApertureValue .
nexif:imageWidth
a rdf:Property ;
rdfs:comment """tagNumber: 256
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "imageWidth" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , nexif:width , exif:imageWidth .
nexif:pimSaturation
a rdf:Property ;
rdfs:comment """tagNumber: 12
Saturation info for print image matching""" ;
rdfs:domain nexif:Photo ;
rdfs:label "pimSaturation" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pimInfo , exif:pimSaturation .
nexif:printImageMatchingIFDPointer
a rdf:Property ;
rdfs:comment """tagNumber: 50341
A pointer to the print image matching IFD""" ;
rdfs:domain nexif:Photo ;
rdfs:label "printImageMatchingIFDPointer" ;
rdfs:range nexif:Photo ;
rdfs:subPropertyOf nexif:ifdPointer , exif:printImageMatching_IFD_Pointer .
nexif:subjectLocation
a rdf:Property ;
rdfs: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.
tagNumber: 41492""" ;
rdfs:domain nexif:Photo ;
rdfs:label "subjectLocation" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:subjectLocation .
nexif:recOffset
a rdf:Property ;
rdfs:comment "An attribute relating to recording offset" ;
rdfs:domain nexif:Photo ;
rdfs:label "recOffset" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:recOffset , nexif:exifAttribute .
nexif:focalPlaneYResolution
a rdf:Property ;
rdfs:comment """tagNumber: 41487
The number of pixels in the image height (Y) direction per FocalPlaneResolutionUnit on the camera focal plane.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "focalPlaneYResolution" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:focalPlaneYResolution , nexif:resolution .
nexif:imageDataStruct
a rdf:Property ;
rdfs:comment "An attribute relating to image data structure" ;
rdfs:domain nexif:Photo ;
rdfs:label "imageDataStruct" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:imageDataStruct , nexif:exifAttribute .
nexif:pictTaking
a rdf:Property ;
rdfs:comment "An attribute relating to Picture-Taking Conditions" ;
rdfs:domain nexif:Photo ;
rdfs:label "pictTaking" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:pictTaking , nexif:exifAttribute .
nexif:gpsAltitudeRef
a rdf:Property ;
rdfs: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.
tagNumber: 5""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsAltitudeRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsAltitudeRef .
nexif:photometricInterpretation
a rdf:Property ;
rdfs:comment """Pixel composition. In JPEG compressed data a JPEG marker is used instead of this tag.
tagNumber: 262""" ;
rdfs:domain nexif:Photo ;
rdfs:label "photometricInterpretation" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:photometricInterpretation .
nexif:sensingMethod
a rdf:Property ;
rdfs:comment """tagNumber: 41495
The image sensor type on the camera or input device, such as One-chip color area sensor etc.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "sensingMethod" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:sensingMethod .
nexif:colorSpace
a rdf:Property ;
rdfs:comment """tagNumber: 40961
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "colorSpace" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:colorSpace , nexif:imageDataCharacter .
nexif:exifAttribute
a rdf:Property ;
rdfs:comment "A property that connects an IFD (or other resource) to one of its entries (Exif attribute). Super property which integrates all Exif tags. Domain definition dropped so that this vocabulary can be used to describe not only Exif IFD, but also general image." ;
rdfs:domain nexif:Photo ;
rdfs:label "exifAttribute" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:exifAttribute .
nexif:contrast
a rdf:Property ;
rdfs:comment """tagNumber: 41992
The direction of contrast processing applied by the camera when the image was shot.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "contrast" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:contrast .
nexif:flashpixVersion
a rdf:Property ;
rdfs:comment """tagNumber: 40960
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "flashpixVersion" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:flashpixVersion , nexif:versionInfo .
nexif:interopInfo
a rdf:Property ;
rdfs:comment """An attribute relating to Interoperability. Tags stored in
Interoperability IFD may be defined dependently to each Interoperability rule.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "interopInfo" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:interopInfo , nexif:exifAttribute .
nexif:gpsTrackRef
a rdf:Property ;
rdfs:comment """tagNumber: 14
The reference for giving the direction of GPS receiver movement. 'T' denotes true direction and 'M' is magnetic direction.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsTrackRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsTrackRef .
nexif:gpsTrack
a rdf:Property ;
rdfs:comment """The direction of GPS receiver movement. The range of values is from 0.00 to 359.99.
tagNumber: 15""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsTrack" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsTrack , nexif:gpsInfo .
nexif:brightnessValue
a rdf:Property ;
rdfs:comment """tagNumber: 37379
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "brightnessValue" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:brightnessValue .
nexif:digitalZoomRatio
a rdf:Property ;
rdfs:comment """tagNumber: 41988
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "digitalZoomRatio" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:digitalZoomRatio .
nexif:resolution
a rdf:Property ;
rdfs:comment "a rational number representing a resolution. Could be a subProperty of other general schema." ;
rdfs:domain nexif:Photo ;
rdfs:label "resolution" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:resolution .
nexif:gpsLatitudeRef
a rdf:Property ;
rdfs:comment """tagNumber: 1
Indicates whether the latitude is north or south latitude. The ASCII value 'N' indicates north latitude, and 'S' is south latitude.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsLatitudeRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsLatitudeRef , nexif:gpsInfo .
nexif:yResolution
a rdf:Property ;
rdfs:comment """tagNumber: 283
The number of pixels per ResolutionUnit in the ImageLength direction. The same value as XResolution is designated.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "yResolution" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:yResolution , nexif:resolution .
nexif:flash
a rdf:Property ;
rdfs:comment """tagNumber: 37385
The status of flash when the image was shot.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "flash" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:flash , nexif:pictTaking .
nexif:dateTime
a rdf:Property ;
rdfs:comment """The date and time of image creation. In this standard it is the date and time the file was changed.
tagNumber: 306""" ;
rdfs:domain nexif:Photo ;
rdfs:label "dateTime" ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf exif:dateTime , nexif:date , nexif:exifAttribute .
nexif:gpsMapDatum
a rdf:Property ;
rdfs: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.
tagNumber: 18""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsMapDatum" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsMapDatum .
nexif:datatype
a rdf:Property ;
rdfs:comment "The Exif field data type, such as ascii, byte, short etc." ;
rdfs:domain nexif:Photo ;
rdfs:label "datatype" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dc:type , exif:datatype .
nexif:gpsDestDistance
a rdf:Property ;
rdfs:comment """The distance to the destination point.
tagNumber: 26""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDestDistance" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsDestDistance .
nexif:sceneType
a rdf:Property ;
rdfs:comment """tagNumber: 41729
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "sceneType" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:sceneType .
nexif:focalPlaneResolutionUnit
a rdf:Property ;
rdfs:comment """The unit for measuring FocalPlaneXResolution and FocalPlaneYResolution. This value is the same as the ResolutionUnit.
tagNumber: 41488""" ;
rdfs:domain nexif:Photo ;
rdfs:label "focalPlaneResolutionUnit" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:focalPlaneResolutionUnit .
nexif:exposureIndex
a rdf:Property ;
rdfs:comment """The exposure index selected on the camera or input device at the time the image is captured.
tagNumber: 41493""" ;
rdfs:domain nexif:Photo ;
rdfs:label "exposureIndex" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:exposureIndex , nexif:pictTaking .
nexif:componentsConfiguration
a rdf:Property ;
rdfs: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.
tagNumber: 37121""" ;
rdfs:domain nexif:Photo ;
rdfs:label "componentsConfiguration" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:componentsConfiguration , nexif:imageConfig .
nexif:subjectDistance
a rdf:Property ;
rdfs:comment """tagNumber: 37382
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "subjectDistance" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:meter , nexif:pictTaking , exif:subjectDistance .
nexif:exposureTime
a rdf:Property ;
rdfs:comment """tagNumber: 33434
Exposure time, given in seconds (sec).""" ;
rdfs:domain nexif:Photo ;
rdfs:label "exposureTime" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:seconds , nexif:pictTaking , exif:exposureTime .
nexif:make
a rdf:Property ;
rdfs:comment """Manufacturer of image input equipment
tagNumber: 271""" ;
rdfs:domain nexif:Photo ;
rdfs:label "make" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:make , nexif:exifAttribute .
nexif:rowsPerStrip
a rdf:Property ;
rdfs:comment """tagNumber: 278
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "rowsPerStrip" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:recOffset , exif:rowsPerStrip .
nexif:dateTimeOriginal
a rdf:Property ;
rdfs:comment """tagNumber: 36867
The date and time when the original image data was generated. For a DSC the date and time the picture was taken are recorded.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "dateTimeOriginal" ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf nexif:dateAndOrTime , exif:dateTimeOriginal , nexif:date .
nexif:pimSharpness
a rdf:Property ;
rdfs:comment """Sharpness info for print image matching
tagNumber: 13""" ;
rdfs:domain nexif:Photo ;
rdfs:label "pimSharpness" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pimInfo , exif:pimSharpness .
nexif:meteringMode
a rdf:Property ;
rdfs:comment """Metering mode, such as CenterWeightedAverage, Spot, MultiSpot,Pattern, Partial etc.
tagNumber: 37383""" ;
rdfs:domain nexif:Photo ;
rdfs:label "meteringMode" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:meteringMode .
nexif:subjectArea
a rdf:Property ;
rdfs:comment """tagNumber: 37396
The location and area of the main subject in the overall scene.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "subjectArea" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:subjectArea .
nexif:lightSource
a rdf:Property ;
rdfs:comment """tagNumber: 37384
Light source such as Daylight, Tungsten, Flash etc.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "lightSource" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:lightSource .
nexif:imageConfig
a rdf:Property ;
rdfs:comment "An attribute relating to Image Configuration" ;
rdfs:domain nexif:Photo ;
rdfs:label "imageConfig" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:imageConfig , nexif:exifAttribute .
nexif:focalLengthIn35mmFilm
a rdf:Property ;
rdfs: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.
tagNumber: 41989""" ;
rdfs:domain nexif:Photo ;
rdfs:label "focalLengthIn35mmFilm" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , nexif:length , exif:focalLengthIn35mmFilm .
nexif:dateAndOrTime
a rdf:Property ;
rdfs:comment "An attribute relating to Date and/or Time" ;
rdfs:domain nexif:Photo ;
rdfs:label "dateAndOrTime" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:dateAndOrTime , nexif:exifAttribute .
nexif:gpsMeasureMode
a rdf:Property ;
rdfs:comment """The GPS measurement mode. '2' means two-dimensional measurement and '3' means three-dimensional measurement is in progress.
tagNumber: 10""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsMeasureMode" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsMeasureMode .
nexif:gpsDestBearing
a rdf:Property ;
rdfs:comment """The bearing to the destination point. The range of values is from 0.00 to 359.99.
tagNumber: 24""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDestBearing" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsDestBearing , nexif:gpsInfo .
nexif:gpsInfo
a rdf:Property ;
rdfs:comment "An attribute relating to GPS information" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsInfo" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsInfo , nexif:exifAttribute .
nexif:xResolution
a rdf:Property ;
rdfs:comment """The number of pixels per ResolutionUnit in the ImageWidth direction. When the image resolution is unknown, 72 [dpi] is designated.
tagNumber: 282""" ;
rdfs:domain nexif:Photo ;
rdfs:label "xResolution" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:xResolution , nexif:resolution .
nexif:fNumber
a rdf:Property ;
rdfs:comment """tagNumber: 33437
F number""" ;
rdfs:domain nexif:Photo ;
rdfs:label "fNumber" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:fNumber , nexif:pictTaking .
nexif:exifVersion
a rdf:Property ;
rdfs:comment """tagNumber: 36864
Exif Version""" ;
rdfs:domain nexif:Photo ;
rdfs:label "exifVersion" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:exifVersion , nexif:versionInfo .
nexif:height
a rdf:Property ;
rdfs:comment "Height of an object" ;
rdfs:domain nexif:Photo ;
rdfs:label "height" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:height , nexif:length .
nexif:pixelXDimension
a rdf:Property ;
rdfs: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.
tagNumber: 40962""" ;
rdfs:domain nexif:Photo ;
rdfs:label "pixelXDimension" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:pixelXDimension , nexif:width , nexif:imageConfig .
nexif:date
a rdf:Property ;
rdfs:comment "a date information. Usually saved as YYYY:MM:DD (HH:MM:SS) format in Exif data, but represented here as W3C-DTF format" ;
rdfs:domain nexif:Photo ;
rdfs:label "date" ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf dc:date , exif:date .
nexif:subsecond
a rdf:Property ;
rdfs:label "subsecond" .
nexif:apertureValue
a rdf:Property ;
rdfs:comment """tagNumber: 37378
The lens aperture. The unit is the APEX value.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "apertureValue" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:apertureValue , nexif:pictTaking .
nexif:meter
a rdf:Property ;
rdfs:comment "A length with unit of meter" ;
rdfs:domain nexif:Photo ;
rdfs:label "meter" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:length , exif:meter .
nexif:yCbCrCoefficients
a rdf:Property ;
rdfs:comment """tagNumber: 529
The matrix coefficients for transformation from RGB to YCbCr image data.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "yCbCrCoefficients" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:yCbCrCoefficients , nexif:imageDataCharacter .
nexif:interoperabilityVersion
a rdf:Property ;
rdfs:comment """tagNumber: 2
Interoperability Version""" ;
rdfs:domain nexif:Photo ;
rdfs:label "interoperabilityVersion" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:interoperabilityVersion , nexif:interopInfo .
nexif:tagid
a rdf:Property ;
rdfs:comment "The Exif tag number with context prefix, such as IFD type or maker name (for this schema definition)" ;
rdfs:domain nexif:Photo ;
rdfs:label "tagid" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:tagNumber , exif:tagid .
nexif:gpsSpeed
a rdf:Property ;
rdfs:comment """The speed of GPS receiver movement.
tagNumber: 13""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsSpeed" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsSpeed , nexif:gpsInfo .
nexif:transferFunction
a rdf:Property ;
rdfs:comment """tagNumber: 301
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).""" ;
rdfs:domain nexif:Photo ;
rdfs:label "transferFunction" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:transferFunction , nexif:imageDataCharacter .
nexif:whiteBalance
a rdf:Property ;
rdfs:comment """tagNumber: 41987
The white balance mode set when the image was shot.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "whiteBalance" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:whiteBalance , nexif:pictTaking .
nexif:isoSpeedRatings
a rdf:Property ;
rdfs:comment """Indicates the ISO Speed and ISO Latitude of the camera or input device as specified in ISO 12232.
tagNumber: 34855""" ;
rdfs:domain nexif:Photo ;
rdfs:label "isoSpeedRatings" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:isoSpeedRatings .
nexif:pixelYDimension
a rdf:Property ;
rdfs: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.
tagNumber: 40963""" ;
rdfs:domain nexif:Photo ;
rdfs:label "pixelYDimension" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:pixelYDimension , nexif:height , nexif:imageConfig .
nexif:userComment
a rdf:Property ;
rdfs:comment """tagNumber: 37510
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "userComment" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:userComment , nexif:userInfo .
nexif:relatedImageFileFormat
a rdf:Property ;
rdfs:comment """Related image file format
tagNumber: 4096""" ;
rdfs:domain nexif:Photo ;
rdfs:label "relatedImageFileFormat" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:relatedImageFileFormat , nexif:interopInfo .
nexif:planarConfiguration
a rdf:Property ;
rdfs: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.
tagNumber: 284""" ;
rdfs:domain nexif:Photo ;
rdfs:label "planarConfiguration" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:planarConfiguration .
nexif:focalPlaneXResolution
a rdf:Property ;
rdfs:comment """The number of pixels in the image width (X) direction per FocalPlaneResolutionUnit on the camera focal plane.
tagNumber: 41486""" ;
rdfs:domain nexif:Photo ;
rdfs:label "focalPlaneXResolution" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:focalPlaneXResolution , nexif:pictTaking , nexif:resolution .
nexif:shutterSpeedValue
a rdf:Property ;
rdfs:comment """tagNumber: 37377
Shutter speed. The unit is the APEX (Additive System of Photographic Exposure) setting""" ;
rdfs:domain nexif:Photo ;
rdfs:label "shutterSpeedValue" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:shutterSpeedValue .
nexif:dateTimeDigitized
a rdf:Property ;
rdfs: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.
tagNumber: 36868""" ;
rdfs:domain nexif:Photo ;
rdfs:label "dateTimeDigitized" ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf nexif:dateAndOrTime , exif:dateTimeDigitized , nexif:date .
nexif:jpegInterchangeFormat
a rdf:Property ;
rdfs:comment """tagNumber: 513
The offset to the start byte (SOI) of JPEG compressed thumbnail data. This is not used for primary image JPEG data.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "jpegInterchangeFormat" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:recOffset , exif:jpegInterchangeFormat .
nexif:interoperabilityIndex
a rdf:Property ;
rdfs: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.
tagNumber: 1""" ;
rdfs:domain nexif:Photo ;
rdfs:label "interoperabilityIndex" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:interopInfo , exif:interoperabilityIndex .
nexif:pimBrightness
a rdf:Property ;
rdfs:comment """Brightness info for print image matching
tagNumber: 10""" ;
rdfs:domain nexif:Photo ;
rdfs:label "pimBrightness" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pimInfo , exif:pimBrightness .
nexif:yCbCrSubSampling
a rdf:Property ;
rdfs: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.
tagNumber: 530""" ;
rdfs:domain nexif:Photo ;
rdfs:label "yCbCrSubSampling" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:yCbCrSubSampling .
nexif:mm
a rdf:Property ;
rdfs:comment "A length with unit of mm" ;
rdfs:domain nexif:Photo ;
rdfs:label "mm" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:length , exif:mm .
nexif:sharpness
a rdf:Property ;
rdfs:comment """tagNumber: 41994
The direction of sharpness processing applied by the camera when the image was shot.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "sharpness" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:sharpness .
nexif:gpsInfoIFDPointer
a rdf:Property ;
rdfs:comment """A pointer to the GPS IFD, which is a set of tags for recording GPS information.
tagNumber: 34853""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsInfoIFDPointer" ;
rdfs:range nexif:Photo ;
rdfs:subPropertyOf exif:gpsInfo_IFD_Pointer , nexif:ifdPointer .
nexif:gpsLongitudeRef
a rdf:Property ;
rdfs:comment """tagNumber: 3
Indicates whether the longitude is east or west longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsLongitudeRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsLongitudeRef , nexif:gpsInfo .
nexif:subSecTimeOriginal
a rdf:Property ;
rdfs:comment """tagNumber: 37521
DateTimeOriginal subseconds""" ;
rdfs:domain nexif:Photo ;
rdfs:label "subSecTimeOriginal" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:dateAndOrTime , exif:subSecTimeOriginal , nexif:subsecond .
nexif:subSecTime
a rdf:Property ;
rdfs:comment """tagNumber: 37520
DateTime subseconds""" ;
rdfs:domain nexif:Photo ;
rdfs:label "subSecTime" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:dateAndOrTime , exif:subSecTime , nexif:subsecond .
nexif:resolutionUnit
a rdf:Property ;
rdfs:comment """tagNumber: 296
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "resolutionUnit" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:resolutionUnit .
nexif:gpsProcessingMethod
a rdf:Property ;
rdfs:comment """tagNumber: 27
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsProcessingMethod" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsProcessingMethod , nexif:gpsInfo .
nexif:focalLength
a rdf:Property ;
rdfs:comment """The actual focal length of the lens, in mm. Conversion is not made to the focal length of a 35 mm film camera.
tagNumber: 37386""" ;
rdfs:domain nexif:Photo ;
rdfs:label "focalLength" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:mm , exif:focalLength , nexif:pictTaking .
nexif:length
a rdf:Property ;
rdfs:comment "Length of an object. Could be a subProperty of other general schema." ;
rdfs:domain nexif:Photo ;
rdfs:label "length" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:length .
nexif:relatedImageWidth
a rdf:Property ;
rdfs:comment """tagNumber: 4097
Related image width""" ;
rdfs:domain nexif:Photo ;
rdfs:label "relatedImageWidth" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:width , nexif:interopInfo , exif:relatedImageWidth .
nexif:gpsDestLongitudeRef
a rdf:Property ;
rdfs:comment """Reference for longitude of destination
tagNumber: 21""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDestLongitudeRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsDestLongitudeRef , nexif:gpsInfo .
nexif:cfaPattern
a rdf:Property ;
rdfs:comment """tagNumber: 41730
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "cfaPattern" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:cfaPattern .
nexif:gpsDestBearingRef
a rdf:Property ;
rdfs:comment """Indicates the reference used for giving the bearing to the destination point. 'T' denotes true direction and 'M' is magnetic direction.
tagNumber: 23""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDestBearingRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsDestBearingRef .
nexif:software
a rdf:Property ;
rdfs:comment """tagNumber: 305
The name and version of the software or firmware of the camera or image input device used to generate the image.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "software" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:software , nexif:exifAttribute .
nexif:spectralSensitivity
a rdf:Property ;
rdfs: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.
tagNumber: 34852""" ;
rdfs:domain nexif:Photo ;
rdfs:label "spectralSensitivity" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:spectralSensitivity .
nexif:saturation
a rdf:Property ;
rdfs:comment """The direction of saturation processing applied by the camera when the image was shot.
tagNumber: 41993""" ;
rdfs:domain nexif:Photo ;
rdfs:label "saturation" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:saturation , nexif:pictTaking .
nexif:copyright
a rdf:Property ;
rdfs:comment """tagNumber: 33432
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "copyright" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dc:rights , exif:copyright , nexif:exifAttribute .
nexif:customRendered
a rdf:Property ;
rdfs: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.
tagNumber: 41985""" ;
rdfs:domain nexif:Photo ;
rdfs:label "customRendered" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:customRendered .
nexif:jpegInterchangeFormatLength
a rdf:Property ;
rdfs:comment """The number of bytes of JPEG compressed thumbnail data. This is not used for primary image JPEG data.
tagNumber: 514""" ;
rdfs:domain nexif:Photo ;
rdfs:label "jpegInterchangeFormatLength" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:recOffset , exif:jpegInterchangeFormatLength .
nexif:imageDescription
a rdf:Property ;
rdfs:comment """tagNumber: 270
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "imageDescription" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nie:title , exif:imageDescription , nexif:exifAttribute .
nexif:gpsSatellites
a rdf:Property ;
rdfs:comment """tagNumber: 8
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsSatellites" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsSatellites .
nexif:orientation
a rdf:Property ;
rdfs:comment """tagNumber: 274
The image orientation viewed in terms of rows and columns.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "orientation" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:orientation , nexif:imageDataStruct .
nexif:artist
a rdf:Property ;
rdfs:comment """tagNumber: 315
Person who created the image""" ;
rdfs:domain nexif:Photo ;
rdfs:label "artist" ;
rdfs:range nco:Contact ;
rdfs:subPropertyOf nco:creator , exif:artist , nexif:exifAttribute .
nexif:gpsVersionID
a rdf:Property ;
rdfs:comment """The version of GPSInfoIFD. The version is given as 2.2.0.0. This tag is mandatory when GPSInfo tag is present.
tagNumber: 0""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsVersionID" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsVersionID , nexif:gpsInfo , nexif:versionInfo .
nexif:unknown
a rdf:Property ;
rdfs:comment "An Exif tag whose meaning is not known" ;
rdfs:domain nexif:Photo ;
rdfs:label "unknown" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:_unknown .
nexif:tagNumber
a rdf:Property ;
rdfs:comment "The Exif tag number (for this schema definition)" ;
rdfs:domain nexif:Photo ;
rdfs:label "tagNumber" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf dc:identifier , exif:tag_number .
nexif:subseconds
a rdf:Property ;
rdfs:comment "A tag used to record fractions of seconds for a date property" ;
rdfs:domain nexif:Photo ;
rdfs:label "subseconds" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:subseconds .
nexif:imageDataCharacter
a rdf:Property ;
rdfs:comment "An attribute relating to image data characteristics" ;
rdfs:domain nexif:Photo ;
rdfs:label "imageDataCharacter" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:imageDataCharacter , nexif:exifAttribute .
nexif:gpsDOP
a rdf:Property ;
rdfs:comment """The GPS DOP (data degree of precision). An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.
tagNumber: 11""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDOP" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsDOP .
nexif:gpsDestDistanceRef
a rdf:Property ;
rdfs:comment """Indicates the unit used to express the distance to the destination point. 'K', 'M' and 'N' represent kilometers, miles and knots.
tagNumber: 25""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDestDistanceRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsDestDistanceRef .
nexif:gps
a rdf:Property ;
rdfs:comment "The location where the picture has been made. This property aggregates values of two properties from the original EXIF specification: gpsLatitute (tag number 2) and gpsLongitude (tag number 4), and gpsAltitude (tag number 6)." ;
rdfs:domain nexif:Photo ;
rdfs:label "gps" ;
rdfs:range geo:Point ;
rdfs:subPropertyOf nexif:geo .
nexif:exifdata
a rdf:Property ;
rdfs:comment "An Exif IFD data entry" ;
rdfs:domain nexif:Photo ;
rdfs:label "exifdata" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:exifdata .
nexif:sceneCaptureType
a rdf:Property ;
rdfs:comment """tagNumber: 41990
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "sceneCaptureType" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:sceneCaptureType , nexif:pictTaking .
nexif:gainControl
a rdf:Property ;
rdfs:comment """tagNumber: 41991
The degree of overall image gain adjustment.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gainControl" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gainControl , nexif:pictTaking .
nexif:gpsDestLatitudeRef
a rdf:Property ;
rdfs:comment """tagNumber: 19
Reference for latitude of destination""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDestLatitudeRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsDestLatitudeRef , nexif:gpsInfo .
nexif:model
a rdf:Property ;
rdfs:comment """tagNumber: 272
Model of image input equipment""" ;
rdfs:domain nexif:Photo ;
rdfs:label "model" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:model , nexif:exifAttribute .
nexif:compression
a rdf:Property ;
rdfs: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.
tagNumber: 259""" ;
rdfs:domain nexif:Photo ;
rdfs:label "compression" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:compression .
nexif:exposureBiasValue
a rdf:Property ;
rdfs:comment """tagNumber: 37380
The exposure bias. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "exposureBiasValue" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:exposureBiasValue .
nexif:imageLength
a rdf:Property ;
rdfs:comment """tagNumber: 257
Image height. The number of rows of image data. In JPEG compressed data a JPEG marker is used.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "imageLength" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:imageLength , nexif:height .
nexif:gpsImgDirection
a rdf:Property ;
rdfs:comment """tagNumber: 17
The direction of the image when it was captured. The range of values is from 0.00 to 359.99.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsImgDirection" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsImgDirection , nexif:gpsInfo .
nexif:geo
a rdf:Property ;
rdfs:comment "Geometric data such as latitude, longitude and altitude. Usually saved as rational number." ;
rdfs:domain nexif:Photo ;
rdfs:label "geo" ;
rdfs:subPropertyOf exif:geo .
nexif:exifIFDPointer
a rdf:Property ;
rdfs:comment """tagNumber: 34665
A pointer to the Exif IFD, which is a set of tags for recording Exif-specific attribute information.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "exifIFDPointer" ;
rdfs:range nexif:Photo ;
rdfs:subPropertyOf exif:exif_IFD_Pointer , nexif:ifdPointer .
nexif:whitePoint
a rdf:Property ;
rdfs: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).
tagNumber: 318""" ;
rdfs:domain nexif:Photo ;
rdfs:label "whitePoint" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:whitePoint , nexif:imageDataCharacter .
nexif:userInfo
a rdf:Property ;
rdfs:comment "An attribute relating to User Information" ;
rdfs:domain nexif:Photo ;
rdfs:label "userInfo" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:userInfo , nexif:exifAttribute .
nexif:samplesPerPixel
a rdf:Property ;
rdfs: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.
tagNumber: 277""" ;
rdfs:domain nexif:Photo ;
rdfs:label "samplesPerPixel" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:samplesPerPixel .
nexif:yCbCrPositioning
a rdf:Property ;
rdfs: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.
tagNumber: 531""" ;
rdfs:domain nexif:Photo ;
rdfs:label "yCbCrPositioning" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:yCbCrPositioning , nexif:imageDataStruct .
nexif:flashEnergy
a rdf:Property ;
rdfs:comment """tagNumber: 41483
The strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds (BCPS).""" ;
rdfs:domain nexif:Photo ;
rdfs:label "flashEnergy" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:flashEnergy , nexif:pictTaking .
nexif:gpsDest
a rdf:Property ;
rdfs:comment "Location of the destination. This property aggregates values of two other properties from the original exif specification. gpsDestLatitude (tag number 20) and gpsDestLongitude (tag number 22)" ;
rdfs:label "gpsDest" ;
rdfs:range geo:Point ;
rdfs:subPropertyOf nexif:geo .
nexif:compressedBitsPerPixel
a rdf:Property ;
rdfs:comment """tagNumber: 37122
Information specific to compressed data. The compression mode used for a compressed image is indicated in unit bits per pixel.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "compressedBitsPerPixel" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:compressedBitsPerPixel , nexif:imageConfig .
nexif:width
a rdf:Property ;
rdfs:comment "Width of an object" ;
rdfs:domain nexif:Photo ;
rdfs:label "width" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:length , exif:width .
nexif:referenceBlackWhite
a rdf:Property ;
rdfs:comment """tagNumber: 532
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "referenceBlackWhite" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:referenceBlackWhite , nexif:imageDataCharacter .
nexif:relatedSoundFile
a rdf:Property ;
rdfs:comment """Related audio file
tagNumber: 40964""" ;
rdfs:domain nexif:Photo ;
rdfs:label "relatedSoundFile" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:relatedFile , exif:relatedSoundFile .
nexif:seconds
a rdf:Property ;
rdfs:comment "a mesurement of time length with unit of second" ;
rdfs:domain nexif:Photo ;
rdfs:label "seconds" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:seconds .
nexif:subSecTimeDigitized
a rdf:Property ;
rdfs:comment """tagNumber: 37522
DateTimeDigitized subseconds""" ;
rdfs:domain nexif:Photo ;
rdfs:label "subSecTimeDigitized" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:dateAndOrTime , exif:subSecTimeDigitized , nexif:subsecond .
nexif:bitsPerSample
a rdf:Property ;
rdfs:comment """tagNumber: 258
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "bitsPerSample" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:imageDataStruct , exif:bitsPerSample , nexif:resolution .
nexif:stripByteCounts
a rdf:Property ;
rdfs:comment """tagNumber: 279
The total number of bytes in each strip. With JPEG compressed data this designation is not needed and is omitted.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "stripByteCounts" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:recOffset , exif:stripByteCounts .
nexif:makerNote
a rdf:Property ;
rdfs:comment """Manufacturer notes
tagNumber: 37500""" ;
rdfs:domain nexif:Photo ;
rdfs:label "makerNote" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:makerNote , nexif:userInfo .
nexif:primaryChromaticities
a rdf:Property ;
rdfs: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).
tagNumber: 319""" ;
rdfs:domain nexif:Photo ;
rdfs:label "primaryChromaticities" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:primaryChromaticities , nexif:imageDataCharacter .
nexif:gpsImgDirectionRef
a rdf:Property ;
rdfs:comment """tagNumber: 16
The reference for giving the direction of the image when it is captured. 'T' denotes true direction and 'M' is magnetic direction.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsImgDirectionRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsImgDirectionRef , nexif:gpsInfo .
nexif:exposureProgram
a rdf:Property ;
rdfs:comment """tagNumber: 34850
The class of the program used by the camera to set exposure when the picture is taken.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "exposureProgram" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:exposureProgram , nexif:pictTaking .
nexif:interoperabilityIFDPointer
a rdf:Property ;
rdfs:comment """A pointer to the Interoperability IFD, which is composed of tags storing the information to ensure the Interoperability
tagNumber: 40965""" ;
rdfs:domain nexif:Photo ;
rdfs:label "interoperabilityIFDPointer" ;
rdfs:range nexif:Photo ;
rdfs:subPropertyOf exif:interoperability_IFD_Pointer , nexif:ifdPointer .
nexif:spatialFrequencyResponse
a rdf:Property ;
rdfs: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.
tagNumber: 41484""" ;
rdfs:domain nexif:Photo ;
rdfs:label "spatialFrequencyResponse" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:spatialFrequencyResponse .
nexif:relatedImageLength
a rdf:Property ;
rdfs:comment """Related image length
tagNumber: 4098""" ;
rdfs:domain nexif:Photo ;
rdfs:label "relatedImageLength" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:relatedImageLength , nexif:interopInfo , nexif:height .
nexif:gpsStatus
a rdf:Property ;
rdfs:comment """tagNumber: 9
The status of the GPS receiver when the image is recorded. 'A' means measurement is in progress, and 'V' means the measurement is Interoperability.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsStatus" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsStatus , nexif:gpsInfo .
nexif:gpsDifferential
a rdf:Property ;
rdfs:comment """tagNumber: 30
Indicates whether differential correction is applied to the GPS receiver.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDifferential" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsDifferential .
nexif:exposureMode
a rdf:Property ;
rdfs:comment """tagNumber: 41986
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "exposureMode" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:exposureMode .
nexif:pimInfo
a rdf:Property ;
rdfs:comment "An attribute relating to print image matching" ;
rdfs:domain nexif:Photo ;
rdfs:label "pimInfo" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:pimInfo , nexif:exifAttribute .
nexif:pimContrast
a rdf:Property ;
rdfs:comment """tagNumber: 9
Contrast info for print image matching""" ;
rdfs:domain nexif:Photo ;
rdfs:label "pimContrast" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pimInfo , exif:pimContrast .
nexif:subjectDistanceRange
a rdf:Property ;
rdfs:comment """The distance to the subject, such as Macro, Close View or Distant View.
tagNumber: 41996""" ;
rdfs:domain nexif:Photo ;
rdfs:label "subjectDistanceRange" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:subjectDistanceRange .
nexif:gpsSpeedRef
a rdf:Property ;
rdfs:comment """tagNumber: 12
The unit used to express the GPS receiver speed of movement. 'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsSpeedRef" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:gpsSpeedRef , nexif:gpsInfo .
nexif:gpsTimeStamp
a rdf:Property ;
rdfs:comment """tagNumber: 7
The time as UTC (Coordinated Universal Time). TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsTimeStamp" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsTimeStamp .
nexif:relatedFile
a rdf:Property ;
rdfs:comment "Tag Relating to Related File Information" ;
rdfs:domain nexif:Photo ;
rdfs:label "relatedFile" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:relatedFile , nexif:exifAttribute .
nexif:pimColorBalance
a rdf:Property ;
rdfs:comment """tagNumber: 11
ColorBalance info for print image matching""" ;
rdfs:domain nexif:Photo ;
rdfs:label "pimColorBalance" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pimInfo , exif:pimColorBalance .
nexif:stripOffsets
a rdf:Property ;
rdfs:comment """For each strip, the byte offset of that strip. With JPEG compressed data this designation is not needed and is omitted.
tagNumber: 273""" ;
rdfs:domain nexif:Photo ;
rdfs:label "stripOffsets" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:recOffset , exif:stripOffsets .
nexif:gpsAreaInformation
a rdf:Property ;
rdfs: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.
tagNumber: 28""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsAreaInformation" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:gpsInfo , exif:gpsAreaInformation .
nexif:gpsDateStamp
a rdf:Property ;
rdfs:comment """tagNumber: 29
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""" ;
rdfs:domain nexif:Photo ;
rdfs:label "gpsDateStamp" ;
rdfs:range xsd:dateTime ;
rdfs:subPropertyOf exif:gpsDateStamp , nexif:gpsInfo , nexif:date .
nexif:deviceSettingDescription
a rdf:Property ;
rdfs:comment """tagNumber: 41995
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.""" ;
rdfs:domain nexif:Photo ;
rdfs:label "deviceSettingDescription" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf nexif:pictTaking , exif:deviceSettingDescription .
nexif:imageUniqueID
a rdf:Property ;
rdfs:comment """An identifier assigned uniquely to each image. It is recorded as an ASCII string equivalent to hexadecimal notation and 128-bit fixed length.
tagNumber: 42016""" ;
rdfs:domain nexif:Photo ;
rdfs:label "imageUniqueID" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:imageUniqueID , dc:identifier , nie:identifier , nexif:exifAttribute .
nexif:ifdPointer
a rdf:Property ;
rdfs:comment "A tag that refers a child IFD" ;
rdfs:domain nexif:Photo ;
rdfs:label "ifdPointer" ;
rdfs:range nexif:Photo ;
rdfs:subPropertyOf exif:ifdPointer , nexif:exifAttribute .
nexif:versionInfo
a rdf:Property ;
rdfs:comment "An attribute relating to Version" ;
rdfs:domain nexif:Photo ;
rdfs:label "versionInfo" ;
rdfs:range xsd:string ;
rdfs:subPropertyOf exif:versionInfo , nexif:exifAttribute .
}
<http://www.semanticdesktop.org/ontologies/2007/05/10/nexif_metadata#> {nexif:
a nrl:Ontology ;
nao:creator <http://www.dfki.uni-kl.de/~mylka> ;
nao:hasDefaultNamespace
"http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#" ;
nao:hasDefaultNamespaceAbbreviation
"nexif" ;
nao:lastModified "2008-10-05T19:45:51.703Z" ;
nao:status "Unstable" ;
nao:updatable "0 " ;
nao:version "Revision-8" .
<http://www.semanticdesktop.org/ontologies/2007/05/10/nexif_metadata#>
a nrl:GraphMetadata ;
nrl:coreGraphMetadataFor
nexif: .
}
|