ns 65.5 KB
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rdf:RDF [
 <!ENTITY rdfs  'http://www.w3.org/2000/01/rdf-schema#'>
 <!ENTITY exif  'http://www.w3.org/2003/12/exif/ns'>
 <!ENTITY dc  'http://purl.org/dc/elements/1.1/'>
 <!ENTITY dcterms  'http://purl.org/dc/terms/'>
 <!ENTITY foaf  'http://xmlns.com/foaf/0.1/'>
]>
<rdf:RDF
  xmlns:rdfs="&rdfs;"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="&dc;"
  xmlns:dcterms="&dcterms;"
  xmlns:foaf="&foaf;"
  xmlns:owl="http://www.w3.org/2002/07/owl#"
  xmlns:exif="&exif;#"
  xmlns:ex="http://example.org/"
  xml:base="&exif;"
  xml:lang="en"
  >

 <owl:Ontology rdf:about="">
  <dc:title>Exif data description vocabulary</dc:title>
  <dc:description xml:lang="en">Vocabulary to describe an Exif format picture data. All Exif 2.2 tags are defined as RDF properties, as well as several terms to help this schema.</dc:description>
  <dc:description xml:lang="fr">Vocabulaire pour décrire les données Exif d'une photographie. Toutes les balises Exif 2.2 sont définies comme des propriétés RDF, ainsi que plusieurs termes pour donner de l'aide.</dc:description>
  <dc:description xml:lang="ja">Exifフォーマットの写真からデータを取りだしてRDFで表現するため、Exif 2.2の全てのタグをRDFプロパティとして定義し、さらにそれを記述するのに必要な語彙を追加したボキャブラリ</dc:description>
  <dcterms:created>2003-07-18</dcterms:created>
  <dcterms:modified>2003-08-19</dcterms:modified>
  <dc:source rdf:resource="http://tsc.jeita.or.jp/avs/data/cp3451.pdf" dc:title="JEITA CP-3451/EXIF 2.2 Specification" dc:format="PDF"/>
  <owl:versionInfo>Experimental version.</owl:versionInfo>
  <foaf:maker>
   <foaf:Person rdf:about="urn:pin:MK705">
    <foaf:name xml:lang="ja">神崎正英</foaf:name>
    <rdfs:seeAlso rdf:resource="http://www.kanzaki.com/info/webwho.rdf"/>
   </foaf:Person>
  </foaf:maker>
 </owl:Ontology>

<!-- ==== Class definitions ==== -->

 <rdfs:Class rdf:ID="IFD">
  <rdfs:label>IFD</rdfs:label>
  <rdfs:comment>An Image File Directory</rdfs:comment>
 </rdfs:Class>



<!-- ==== Property definitions ==== -->
<!-- general properties -->
 <rdf:Property rdf:ID="exifdata">
  <rdfs:label>Exif data</rdfs:label>
  <rdfs:comment>An Exif IFD data entry</rdfs:comment>
 </rdf:Property>

 <rdf:Property rdf:ID="tag_number">
  <rdfs:label>Tag number</rdfs:label>
  <rdfs:comment>The Exif tag number</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="&dc;identifier"/>
 </rdf:Property>

 <rdf:Property rdf:ID="tagid">
  <rdfs:label>Tag ID</rdfs:label>
  <rdfs:comment>The Exif tag number with context prefix, such as IFD type or maker name</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#tag_number"/>
 </rdf:Property>

 <rdf:Property rdf:ID="datatype">
  <rdfs:label>Data Type</rdfs:label>
  <rdfs:comment>The Exif field data type, such as ascii, byte, short etc.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="&dc;type"/>
 </rdf:Property>

 <rdf:Property rdf:ID="length">
  <rdfs:label>Length</rdfs:label>
  <rdfs:comment>Length of an object. Could be a subProperty of other general schema.</rdfs:comment>
 </rdf:Property>

 <rdf:Property rdf:ID="width">
  <rdfs:label>Width</rdfs:label>
  <rdfs:comment>Width of an object</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#length"/>
 </rdf:Property>

 <rdf:Property rdf:ID="height">
  <rdfs:label>Height</rdfs:label>
  <rdfs:comment>Height of an object</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#length"/>
 </rdf:Property>

 <rdf:Property rdf:ID="resolution">
  <rdfs:label>Resolution</rdfs:label>
  <rdfs:comment>a rational number representing a resolution. Could be a subProperty of other general schema.</rdfs:comment>
 </rdf:Property>

 <rdf:Property rdf:ID="meter">
  <rdfs:label>Meter</rdfs:label>
  <rdfs:comment>A length with unit of meter</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#length"/>
 </rdf:Property>

 <rdf:Property rdf:ID="mm">
  <rdfs:label>Milimeter</rdfs:label>
  <rdfs:comment>A length with unit of mm</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#length"/>
 </rdf:Property>

 <rdf:Property rdf:ID="seconds">
  <rdfs:label>Seconds</rdfs:label>
  <rdfs:comment>a mesurement of time length with unit of second</rdfs:comment>
 </rdf:Property>

 <rdf:Property rdf:ID="date">
  <rdfs:label>Date</rdfs:label>
  <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:comment>
  <rdfs:subPropertyOf rdf:resource="&dc;date"/>
 </rdf:Property>

 <rdf:Property rdf:ID="subseconds">
  <rdfs:label>Subseconds</rdfs:label>
  <rdfs:comment>A tag used to record fractions of seconds for a date property</rdfs:comment>
 </rdf:Property>

 <rdf:Property rdf:ID="geo">
  <rdfs:label>Geometric data</rdfs:label>
  <rdfs:comment>Geometric data such as latitude, longitude and altitude. Usually saved as rational number.</rdfs:comment>
 </rdf:Property>

 <rdf:Property rdf:ID="_unknown">
  <rdfs:label>Unknown tag</rdfs:label>
  <rdfs:comment>An Exif tag whose meaning is not known</rdfs:comment>
 </rdf:Property>


<!-- Base property types as per Exif 2.2 spec -->

 <rdf:Property rdf:ID="exifAttribute">
  <rdfs:label>Exif Attribute</rdfs:label>
  <rdfs:comment>A property that connects an IFD to one of its entries. Super property which integrates all Exif tags.</rdfs:comment>
  <rdfs:domain rdf:resource="#IFD"/>
 </rdf:Property>

 <rdf:Property rdf:ID="dateAndOrTime">
  <rdfs:label>Date and/or Time</rdfs:label>
  <rdfs:comment>An attribute relating to Date and/or Time</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsInfo">
  <rdfs:label>GPS Info</rdfs:label>
  <rdfs:comment>An attribute relating to GPS information</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="ifdPointer">
  <rdfs:label>IFD Pointer</rdfs:label>
  <rdfs:comment>A tag that refers a child IFD</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="imageConfig">
  <rdfs:label>Image Config</rdfs:label>
  <rdfs:comment>An attribute relating to Image Configuration</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="imageDataCharacter">
  <rdfs:label>Image Data Character</rdfs:label>
  <rdfs:comment>An attribute relating to image data characteristics</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="imageDataStruct">
  <rdfs:label>Image Data Structure</rdfs:label>
  <rdfs:comment>An attribute relating to image data structure</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="interopInfo">
  <rdfs:label>Interoperability Info</rdfs:label>
  <rdfs:comment>An attribute relating to Interoperability. Tags stored in
Interoperability IFD may be defined dependently to each Interoperability rule.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="pictTaking">
  <rdfs:label>PictTaking</rdfs:label>
  <rdfs:comment>An attribute relating to Picture-Taking Conditions</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="pimInfo">
  <rdfs:label>PIM Info</rdfs:label>
  <rdfs:comment>An attribute relating to print image matching</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="recOffset">
  <rdfs:label>Recording Offset</rdfs:label>
  <rdfs:comment>An attribute relating to recording offset</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="relatedFile">
  <rdfs:label>Related File</rdfs:label>
  <rdfs:comment>Tag Relating to Related File Information</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="userInfo">
  <rdfs:label>User Info</rdfs:label>
  <rdfs:comment>An attribute relating to User Information</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>

 <rdf:Property rdf:ID="versionInfo">
  <rdfs:label>Version Info</rdfs:label>
  <rdfs:comment>An attribute relating to Version</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
 </rdf:Property>



<!-- Properties from Exif specification -->

 <rdf:Property rdf:ID="imageWidth">
  <rdfs:label>ImageWidth</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <rdfs:subPropertyOf rdf:resource="#width"/>
  <exif:tagNumber>256</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="imageLength">
  <rdfs:label>ImageLength</rdfs:label>
  <rdfs:comment>Image height. The number of rows of image data. In JPEG compressed data a JPEG marker is used.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <rdfs:subPropertyOf rdf:resource="#height"/>
  <exif:tagNumber>257</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="bitsPerSample">
  <rdfs:label>BitsPerSample</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <rdfs:subPropertyOf rdf:resource="#resolution"/>
  <exif:tagNumber>258</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="compression">
  <rdfs:label>Compression</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>259</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="photometricInterpretation">
  <rdfs:label>PhotometricInterpretation</rdfs:label>
  <rdfs:comment>Pixel composition. In JPEG compressed data a JPEG marker is used instead of this tag.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>262</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="imageDescription">
  <rdfs:label>ImageDescription</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">この画像についての説明。漢字等の2バイト文字の使用は禁止</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="&dc;title"/>
  <exif:tagNumber>270</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="make">
  <rdfs:label>Make</rdfs:label>
  <rdfs:comment>Manufacturer of image input equipment</rdfs:comment>
  <rdfs:comment xml:lang="ja">カメラのメーカー名。DCFでは必須</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="&rdfs;label"/>
  <exif:tagNumber>271</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="model">
  <rdfs:label>Model</rdfs:label>
  <rdfs:comment>Model of image input equipment</rdfs:comment>
  <rdfs:comment xml:lang="ja">カメラの機種名。DCFでは必須</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="&rdfs;label"/>
  <exif:tagNumber>272</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="stripOffsets">
  <rdfs:label>StripOffsets</rdfs:label>
  <rdfs:comment>For each strip, the byte offset of that strip. With JPEG compressed data this designation is not needed and is omitted.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#recOffset"/>
  <exif:tagNumber>273</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="orientation">
  <rdfs:label>Orientation</rdfs:label>
  <rdfs:comment>The image orientation viewed in terms of rows and columns.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像データがどこ(top-leftなど)を起点として、どの向きで格納されているか</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>274</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="samplesPerPixel">
  <rdfs:label>SamplesPerPixel</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>277</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="rowsPerStrip">
  <rdfs:label>RowsPerStrip</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#recOffset"/>
  <exif:tagNumber>278</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="stripByteCounts">
  <rdfs:label>StripByteCounts</rdfs:label>
  <rdfs:comment>The total number of bytes in each strip. With JPEG compressed data this designation is not needed and is omitted.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#recOffset"/>
  <exif:tagNumber>279</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="xResolution">
  <rdfs:label>XResolution</rdfs:label>
  <rdfs:comment>The number of pixels per ResolutionUnit in the ImageWidth direction. When the image resolution is unknown, 72 [dpi] is designated.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像の表示・印刷時の水平解像度</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <rdfs:subPropertyOf rdf:resource="#resolution"/>
  <exif:tagNumber>282</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="yResolution">
  <rdfs:label>YResolution</rdfs:label>
  <rdfs:comment>The number of pixels per ResolutionUnit in the ImageLength direction. The same value as XResolution is designated.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像の表示・印刷時の垂直解像度</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <rdfs:subPropertyOf rdf:resource="#resolution"/>
  <exif:tagNumber>283</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="planarConfiguration">
  <rdfs:label>PlanarConfiguration</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>284</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="resolutionUnit">
  <rdfs:label>ResolutionUnit</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">XResolution/YResolutionの解像度の単位</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>296</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="transferFunction">
  <rdfs:label>TransferFunction</rdfs:label>
  <rdfs: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).</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataCharacter"/>
  <exif:tagNumber>301</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="software">
  <rdfs:label>Software</rdfs:label>
  <rdfs:comment>The name and version of the software or firmware of the camera or image input device used to generate the image.</rdfs:comment>
  <rdfs:comment xml:lang="ja">デジカメ(もしくは入力機器)の内蔵ソフトウェア/ファームウェアの名称とバージョン</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="&rdfs;label"/>
  <exif:tagNumber>305</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="dateTime">
  <rdfs:label>DateTime</rdfs:label>
  <rdfs:comment>The date and time of image creation. In this standard it is the date and time the file was changed.</rdfs:comment>
  <rdfs:comment xml:lang="ja">この画像が作成(あるいは最後に変更された)日時。通常はDateTimeOriginaと同じ値</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="#date"/>
  <exif:tagNumber>306</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="artist">
  <rdfs:label>Artist</rdfs:label>
  <rdfs:comment>Person who created the image</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="&dc;creator"/>
  <exif:tagNumber>315</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="whitePoint">
  <rdfs:label>WhitePoint</rdfs:label>
  <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).</rdfs:comment>
  <rdfs:comment xml:lang="ja">白点の色度。CIE Standard Illuminant D65(いわゆる昼光色の世界標準値)を使っていれば、'3127/10000,3290/10000'という値。通常はColorSpaceタグがあるので不要</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataCharacter"/>
  <exif:tagNumber>318</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="primaryChromaticities">
  <rdfs:label>PrimaryChromaticities</rdfs:label>
  <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).</rdfs:comment>
  <rdfs:comment xml:lang="ja">原色の色度。CCIR REcommendation 709 primariesを使っている場合は、'640/1000,330/1000,300/1000,600/1000,150/1000,60/1000'という値。通常はColorSpaceタグがあるので不要</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataCharacter"/>
  <exif:tagNumber>319</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="jpegInterchangeFormat">
  <rdfs:label>JPEGInterchangeFormat</rdfs:label>
  <rdfs:comment>The offset to the start byte (SOI) of JPEG compressed thumbnail data. This is not used for primary image JPEG data.</rdfs:comment>
  <rdfs:comment xml:lang="ja">圧縮されたサムネイルへのオフセット</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#recOffset"/>
  <exif:tagNumber>513</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="jpegInterchangeFormatLength">
  <rdfs:label>JPEGInterchangeFormatLength</rdfs:label>
  <rdfs:comment>The number of bytes of JPEG compressed thumbnail data. This is not used for primary image JPEG data.</rdfs:comment>
  <rdfs:comment xml:lang="ja">圧縮されたサムネイルのサイズ</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#recOffset"/>
  <exif:tagNumber>514</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="yCbCrCoefficients">
  <rdfs:label>YCbCrCoefficients</rdfs:label>
  <rdfs:comment>The matrix coefficients for transformation from RGB to YCbCr image data.</rdfs:comment>
  <rdfs:comment xml:lang="ja">RGB形式からYCbCr形式に変換するための3つの係数。通常は0.299、0.587、0.114という値</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataCharacter"/>
  <exif:tagNumber>529</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="yCbCrSubSampling">
  <rdfs:label>YCbCrSubSampling</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>530</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="yCbCrPositioning">
  <rdfs:label>YCbCrPositioning</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">色情報のサンプリングを間引きしている場合に、色情報のサンプルポイントがどこになるか。1='centered'なら点集合の中央、2='co-sited'なら点集合の原点</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataStruct"/>
  <exif:tagNumber>531</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="referenceBlackWhite">
  <rdfs:label>ReferenceBlackWhite</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像情報の黒点・白点値。YCbCr形式の場合、最初の2つの値がY(輝度)の黒点・白点、次がCb、最後がCrとなり、デフォルト値は'0,255,0,128,0,128'。RGB形式の場合はR、G、Bの順で黒点・白点値が並んでおり、デフォルト値は'0,255,0,255,0,255'。</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataCharacter"/>
  <exif:tagNumber>532</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="copyright">
  <rdfs:label>Copyright</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">この画像の撮影者および編集者の著作権情報</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="&dc;rights"/>
  <exif:tagNumber>33432</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="exif_IFD_Pointer">
  <rdfs:label>Exif IFD Pointer</rdfs:label>
  <rdfs:comment>A pointer to the Exif IFD, which is a set of tags for recording Exif-specific attribute information.</rdfs:comment>
  <rdfs:comment xml:lang="ja">Exif IFDへのポインタ</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#ifdPointer"/>
  <exif:tagNumber>34665</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsInfo_IFD_Pointer">
  <rdfs:label>GPSInfo IFD Pointer</rdfs:label>
  <rdfs:comment>A pointer to the GPS IFD, which is a set of tags for recording GPS information.</rdfs:comment>
  <rdfs:comment xml:lang="ja">GPS IFDへのポインタ</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#ifdPointer"/>
  <exif:tagNumber>34853</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="exposureTime">
  <rdfs:label>ExposureTime</rdfs:label>
  <rdfs:comment>Exposure time, given in seconds (sec).</rdfs:comment>
  <rdfs:comment xml:lang="ja">露光時間(シャッター速度の逆数)。単位は秒</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <rdfs:subPropertyOf rdf:resource="#seconds"/>
  <exif:tagNumber>33434</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="fNumber">
  <rdfs:label>FNumber</rdfs:label>
  <rdfs:comment>F number</rdfs:comment>
  <rdfs:comment xml:lang="ja">レンズのF値</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>33437</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="exposureProgram">
  <rdfs:label>ExposureProgram</rdfs:label>
  <rdfs:comment>The class of the program used by the camera to set exposure when the picture is taken.</rdfs:comment>
  <rdfs:comment xml:lang="ja">露光制御のモード</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>34850</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="spectralSensitivity">
  <rdfs:label>SpectralSensitivity</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>34852</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="isoSpeedRatings">
  <rdfs:label>ISOSpeedRatings</rdfs:label>
  <rdfs:comment>Indicates the ISO Speed and ISO Latitude of the camera or input device as specified in ISO 12232.</rdfs:comment>
  <rdfs:comment xml:lang="ja">CCD感度の銀塩フィルム換算値</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>34855</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="oecf">
  <rdfs:label>OECF</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>34856</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="exifVersion">
  <rdfs:label>ExifVersion</rdfs:label>
  <rdfs:comment>Exif Version</rdfs:comment>
  <rdfs:comment xml:lang="ja">Exif形式のバージョン</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#versionInfo"/>
  <exif:tagNumber>36864</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="dateTimeOriginal">
  <rdfs:label>DateTimeOriginal</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">オリジナル画像が作成(撮影)された日時</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#dateAndOrTime"/>
  <rdfs:subPropertyOf rdf:resource="#date"/>
  <exif:tagNumber>36867</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="dateTimeDigitized">
  <rdfs:label>DateTimeDigitized</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像がデジタル化された日時。デジカメ画像なら通常DateTimeOriginalと同じ値</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#dateAndOrTime"/>
  <rdfs:subPropertyOf rdf:resource="#date"/>
  <exif:tagNumber>36868</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="componentsConfiguration">
  <rdfs:label>ComponentsConfiguration</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">圧縮データがYCC以外の並びの場合、4バイトでその並びを示す。それぞれの値は0:not exist,1:Y,2:Cb,3:Cr,4:R,5:G,6:B</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageConfig"/>
  <exif:tagNumber>37121</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="compressedBitsPerPixel">
  <rdfs:label>CompressedBitsPerPixel</rdfs:label>
  <rdfs:comment>Information specific to compressed data. The compression mode used for a compressed image is indicated in unit bits per pixel.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像の圧縮率</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageConfig"/>
  <exif:tagNumber>37122</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="shutterSpeedValue">
  <rdfs:label>ShutterSpeedValue</rdfs:label>
  <rdfs:comment>Shutter speed. The unit is the APEX (Additive System of Photographic Exposure) setting</rdfs:comment>
  <rdfs:comment xml:lang="ja">シャッター速度(APEX値)。この値の2のベキ乗をとって逆数にすると、通常のシャッター速度表示になる。例えば'4'の場合だと1/(2^4)=1/16秒</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37377</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="apertureValue">
  <rdfs:label>ApertureValue</rdfs:label>
  <rdfs:comment>The lens aperture. The unit is the APEX value.</rdfs:comment>
  <rdfs:comment xml:lang="ja">レンズ絞り値(APEX値)。この値のルート2のベキ乗を取ると、通常の絞り値となる。例えば'5'の場合だと√2^5=F5.6</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37378</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="brightnessValue">
  <rdfs:label>BrightnessValue</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像撮影時の撮影対象物の明るさ(APEX値)。EVにするにはISO感度の値を足す必要があり、Ev:Exposure, Bv:BrightnessValue, Sv:SensitivityValueとしてEv=Bv+Sv Sv=log^2(ISOSpeedRating/3.125)という計算式を使う。ISO感度100の場合Sv=5、ISO200の場合Sv=6、ISO125ではSv=5.32</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37379</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="exposureBiasValue">
  <rdfs:label>ExposureBiasValue</rdfs:label>
  <rdfs:comment>The exposure bias. The unit is the APEX value. Ordinarily it is given in the range of -99.99 to 99.99.</rdfs:comment>
  <rdfs:comment xml:lang="ja">撮影時の露光補正量。単位はAPEX値(EV)</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37380</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="maxApertureValue">
  <rdfs:label>MaxApertureValue</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">レンズの開放F値。ApertureValue同様、ルート2のベキ乗を取ると通常の絞り値に換算できる</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37381</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="subjectDistance">
  <rdfs:label>SubjectDistance</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">被写体までの距離。単位はm</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <rdfs:subPropertyOf rdf:resource="#meter"/>
  <exif:tagNumber>37382</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="meteringMode">
  <rdfs:label>MeteringMode</rdfs:label>
  <rdfs:comment>Metering mode, such as CenterWeightedAverage, Spot, MultiSpot,Pattern, Partial etc.</rdfs:comment>
  <rdfs:comment xml:lang="ja">自動露出の測光モード</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37383</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="lightSource">
  <rdfs:label>LightSource</rdfs:label>
  <rdfs:comment>Light source such as Daylight, Tungsten, Flash etc.</rdfs:comment>
  <rdfs:comment xml:lang="ja">光源。これはマニュアルでホワイトバランスを設定した場合のモード値となる</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37384</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="flash">
  <rdfs:label>Flash</rdfs:label>
  <rdfs:comment>The status of flash when the image was shot.</rdfs:comment>
  <rdfs:comment xml:lang="ja">フラッシュ発光の状態</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37385</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="focalLength">
  <rdfs:label>FocalLength</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">レンズの焦点距離。単位はmm</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <rdfs:subPropertyOf rdf:resource="#mm"/>
  <exif:tagNumber>37386</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="subjectArea">
  <rdfs:label>SubjectArea</rdfs:label>
  <rdfs:comment>The location and area of the main subject in the overall scene.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画面中の主たる被写体の位置。2値によるXY座標、3値による円、4値による長方形座標の3通りの示し方がある</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>37396</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="makerNote">
  <rdfs:label>MakerNote</rdfs:label>
  <rdfs:comment>Manufacturer notes</rdfs:comment>
  <rdfs:comment xml:lang="ja">カメラの内部情報等、メーカー依存データ</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#userInfo"/>
  <exif:tagNumber>37500</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="userComment">
  <rdfs:label>UserComment</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">ユーザーコメント。ImageDescriptionタグと違って、こちらはJIS2バイトコード、Unicode等での記述が許されており、最初の8バイトが文字コード</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#userInfo"/>
  <exif:tagNumber>37510</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="subSecTime">
  <rdfs:label>SubSecTime</rdfs:label>
  <rdfs:comment>DateTime subseconds</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#dateAndOrTime"/>
  <rdfs:subPropertyOf rdf:resource="#subsecond"/>
  <exif:tagNumber>37520</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="subSecTimeOriginal">
  <rdfs:label>SubSecTimeOriginal</rdfs:label>
  <rdfs:comment>DateTimeOriginal subseconds</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#dateAndOrTime"/>
  <rdfs:subPropertyOf rdf:resource="#subsecond"/>
  <exif:tagNumber>37521</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="subSecTimeDigitized">
  <rdfs:label>SubSecTimeDigitized</rdfs:label>
  <rdfs:comment>DateTimeDigitized subseconds</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#dateAndOrTime"/>
  <rdfs:subPropertyOf rdf:resource="#subsecond"/>
  <exif:tagNumber>37522</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="flashpixVersion">
  <rdfs:label>FlashpixVersion</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#versionInfo"/>
  <exif:tagNumber>40960</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="colorSpace">
  <rdfs:label>ColorSpace</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">使われる色空間。通常sRGB</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageDataCharacter"/>
  <exif:tagNumber>40961</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="pixelXDimension">
  <rdfs:label>PixelXDimension</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageConfig"/>
  <rdfs:subPropertyOf rdf:resource="#width"/>
  <exif:tagNumber>40962</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="pixelYDimension">
  <rdfs:label>PixelYDimension</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#imageConfig"/>
  <rdfs:subPropertyOf rdf:resource="#height"/>
  <exif:tagNumber>40963</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="relatedSoundFile">
  <rdfs:label>RelatedSoundFile</rdfs:label>
  <rdfs:comment>Related audio file</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像と一緒に音声録音できる機種の場合に、音声ファイルの名前</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#relatedFile"/>
  <exif:tagNumber>40964</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="interoperability_IFD_Pointer">
  <rdfs:label>Interoperability IFD Pointer</rdfs:label>
  <rdfs:comment>A pointer to the Interoperability IFD, which is composed of tags storing the information to ensure the Interoperability</rdfs:comment>
  <rdfs:comment xml:lang="ja">Interoperability IFDへのポインタ</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#ifdPointer"/>
  <exif:tagNumber>40965</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="flashEnergy">
  <rdfs:label>FlashEnergy</rdfs:label>
  <rdfs:comment>The strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds (BCPS).</rdfs:comment>
  <rdfs:comment xml:lang="ja">BCPSによるストロボの強度</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41483</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="spatialFrequencyResponse">
  <rdfs:label>SpatialFrequencyResponse</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41484</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="focalPlaneXResolution">
  <rdfs:label>FocalPlaneXResolution</rdfs:label>
  <rdfs:comment>The number of pixels in the image width (X) direction per FocalPlaneResolutionUnit on the camera focal plane.</rdfs:comment>
  <rdfs:comment xml:lang="ja">撮影画像のCCD位置での水平解像度。この値とFocalPlaneYResolution、FocalLengthを使うと、レンズ焦点距離の35mmカメラ換算値が計算できる。例えば200万画素機を使いVGAモードの画像を撮ったような場合はこの値はVGAの解像度でリサンプルされた値になっており、CCDの画素ピッチそのままの値ではないので注意が必要</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <rdfs:subPropertyOf rdf:resource="#resolution"/>
  <exif:tagNumber>41486</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="focalPlaneYResolution">
  <rdfs:label>FocalPlaneYResolution</rdfs:label>
  <rdfs:comment>The number of pixels in the image height (Y) direction per FocalPlaneResolutionUnit on the camera focal plane.</rdfs:comment>
  <rdfs:comment xml:lang="ja">撮影画像のCCD位置での垂直解像度</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <rdfs:subPropertyOf rdf:resource="#resolution"/>
  <exif:tagNumber>41487</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="focalPlaneResolutionUnit">
  <rdfs:label>FocalPlaneResolutionUnit</rdfs:label>
  <rdfs:comment>The unit for measuring FocalPlaneXResolution and FocalPlaneYResolution. This value is the same as the ResolutionUnit.</rdfs:comment>
  <rdfs:comment xml:lang="ja">CCD画素密度の単位</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41488</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="subjectLocation">
  <rdfs:label>SubjectLocation</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画面中の主要被写体のXY座標</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41492</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="exposureIndex">
  <rdfs:label>ExposureIndex</rdfs:label>
  <rdfs:comment>The exposure index selected on the camera or input device at the time the image is captured.</rdfs:comment>
  <rdfs:comment xml:lang="ja">CCD感度。データ形式が符号なし分数である事を除き、ISOSpeedRatingsと同じ</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41493</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="sensingMethod">
  <rdfs:label>SensingMethod</rdfs:label>
  <rdfs:comment>The image sensor type on the camera or input device, such as One-chip color area sensor etc.</rdfs:comment>
  <rdfs:comment xml:lang="ja">イメージセンサーの形式。One-chip color area sensor、Color sequential area sensor、Trilinear sensorなど</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41495</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="fileSource">
  <rdfs:label>FileSource</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像がどういうデバイスから得られたか。通常3=DSC</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41728</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="sceneType">
  <rdfs:label>SceneType</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像がどうやって撮られたか。デジカメの場合は通常1=A directly photographed image</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41729</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="cfaPattern">
  <rdfs:label>CFAPattern</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">CCDに付いているColor filter array(CFA)のパターン。例えば普通のRGBフィルターだと、CFAPatternのデータは 02 02 00 01 01 02</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41730</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="customRendered">
  <rdfs:label>CustomRendered</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">特別なレンダリング処理を行っているかどうか</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41985</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="exposureMode">
  <rdfs:label>ExposureMode</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">露光モード</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41986</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="whiteBalance">
  <rdfs:label>WhiteBalance</rdfs:label>
  <rdfs:comment>The white balance mode set when the image was shot.</rdfs:comment>
  <rdfs:comment xml:lang="ja">ホワイトバランスのモード</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41987</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="digitalZoomRatio">
  <rdfs:label>DigitalZoomRatio</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">デジタルズームが使われた場合、その比率</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41988</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="focalLengthIn35mmFilm">
  <rdfs:label>FocalLengthIn35mmFilm</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">35mm換算した焦点距離</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <rdfs:subPropertyOf rdf:resource="#length"/>
  <exif:tagNumber>41989</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="sceneCaptureType">
  <rdfs:label>SceneCaptureType</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41990</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gainControl">
  <rdfs:label>GainControl</rdfs:label>
  <rdfs:comment>The degree of overall image gain adjustment.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41991</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="contrast">
  <rdfs:label>Contrast</rdfs:label>
  <rdfs:comment>The direction of contrast processing applied by the camera when the image was shot.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41992</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="saturation">
  <rdfs:label>Saturation</rdfs:label>
  <rdfs:comment>The direction of saturation processing applied by the camera when the image was shot.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41993</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="sharpness">
  <rdfs:label>Sharpness</rdfs:label>
  <rdfs:comment>The direction of sharpness processing applied by the camera when the image was shot.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41994</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="deviceSettingDescription">
  <rdfs:label>DeviceSettingDescription</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41995</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="subjectDistanceRange">
  <rdfs:label>SubjectDistanceRange</rdfs:label>
  <rdfs:comment>The distance to the subject, such as Macro, Close View or Distant View.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pictTaking"/>
  <exif:tagNumber>41996</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="imageUniqueID">
  <rdfs:label>ImageUniqueID</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#exifAttribute"/>
  <rdfs:subPropertyOf rdf:resource="&dc;identifier"/>
  <exif:tagNumber>42016</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsVersionID">
  <rdfs:label>GPSVersionID</rdfs:label>
  <rdfs:comment>The version of GPSInfoIFD. The version is given as 2.2.0.0. This tag is mandatory when GPSInfo tag is present.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <rdfs:subPropertyOf rdf:resource="#versionInfo"/>
  <exif:tagNumber>0</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsLatitudeRef">
  <rdfs:label>GPSLatitudeRef</rdfs:label>
  <rdfs:comment>Indicates whether the latitude is north or south latitude. The ASCII value 'N' indicates north latitude, and 'S' is south latitude.</rdfs:comment>
  <rdfs:comment xml:lang="ja">緯度の北緯もしくは南緯</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>1</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsLatitude">
  <rdfs:label>GPSLatitude</rdfs:label>
  <rdfs:comment>The latitude, expressed as three values giving the degrees, minutes, and seconds, respectively.</rdfs:comment>
  <rdfs:comment xml:lang="ja">緯度</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <rdfs:subPropertyOf rdf:resource="#geo"/>
  <exif:tagNumber>2</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsLongitudeRef">
  <rdfs:label>GPSLongitudeRef</rdfs:label>
  <rdfs:comment>Indicates whether the longitude is east or west longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude.</rdfs:comment>
  <rdfs:comment xml:lang="ja">経度の東経もしくは西経</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>3</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsLongitude">
  <rdfs:label>GPSLongitude</rdfs:label>
  <rdfs:comment>The longitude, expressed as three values giving the degrees, minutes, and seconds, respectively.</rdfs:comment>
  <rdfs:comment xml:lang="ja">経度</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <rdfs:subPropertyOf rdf:resource="#geo"/>
  <exif:tagNumber>4</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsAltitudeRef">
  <rdfs:label>GPSAltitudeRef</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>5</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsAltitude">
  <rdfs:label>GPSAltitude</rdfs:label>
  <rdfs:comment>The altitude based on the reference in GPSAltitudeRef. Altitude is expressed as one RATIONAL value. The reference unit is meters.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <rdfs:subPropertyOf rdf:resource="#geo"/>
  <exif:tagNumber>6</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsTimeStamp">
  <rdfs:label>GPSTimeStamp</rdfs:label>
  <rdfs:comment>The time as UTC (Coordinated Universal Time). TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>7</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsSatellites">
  <rdfs:label>GPSSatellites</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>8</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsStatus">
  <rdfs:label>GPSStatus</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>9</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsMeasureMode">
  <rdfs:label>GPSMeasureMode</rdfs:label>
  <rdfs:comment>The GPS measurement mode. '2' means two-dimensional measurement and '3' means three-dimensional measurement is in progress.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>10</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDOP">
  <rdfs:label>GPSDOP</rdfs:label>
  <rdfs:comment>The GPS DOP (data degree of precision). An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>11</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsSpeedRef">
  <rdfs:label>GPSSpeedRef</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>12</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsSpeed">
  <rdfs:label>GPSSpeed</rdfs:label>
  <rdfs:comment>The speed of GPS receiver movement.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>13</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsTrackRef">
  <rdfs:label>GPSTrackRef</rdfs:label>
  <rdfs:comment>The reference for giving the direction of GPS receiver movement. 'T' denotes true direction and 'M' is magnetic direction.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>14</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsTrack">
  <rdfs:label>GPSTrack</rdfs:label>
  <rdfs:comment>The direction of GPS receiver movement. The range of values is from 0.00 to 359.99.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>15</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsImgDirectionRef">
  <rdfs:label>GPSImgDirectionRef</rdfs:label>
  <rdfs:comment>The reference for giving the direction of the image when it is captured. 'T' denotes true direction and 'M' is magnetic direction.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>16</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsImgDirection">
  <rdfs:label>GPSImgDirection</rdfs:label>
  <rdfs:comment>The direction of the image when it was captured. The range of values is from 0.00 to 359.99.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>17</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsMapDatum">
  <rdfs:label>GPSMapDatum</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">測地系。日本なら'TOKYO'もしくは'WGS-84'</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>18</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestLatitudeRef">
  <rdfs:label>GPSDestLatitudeRef</rdfs:label>
  <rdfs:comment>Reference for latitude of destination</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>19</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestLatitude">
  <rdfs:label>GPSDestLatitude</rdfs:label>
  <rdfs:comment>Latitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <rdfs:subPropertyOf rdf:resource="#geo"/>
  <exif:tagNumber>20</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestLongitudeRef">
  <rdfs:label>GPSDestLongitudeRef</rdfs:label>
  <rdfs:comment>Reference for longitude of destination</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>21</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestLongitude">
  <rdfs:label>GPSDestLongitude</rdfs:label>
  <rdfs:comment>Longitude of destination, expressed as three values giving the degrees, minutes, and seconds, respectively.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <rdfs:subPropertyOf rdf:resource="#geo"/>
  <exif:tagNumber>22</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestBearingRef">
  <rdfs:label>GPSDestBearingRef</rdfs:label>
  <rdfs:comment>Indicates the reference used for giving the bearing to the destination point. 'T' denotes true direction and 'M' is magnetic direction.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>23</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestBearing">
  <rdfs:label>GPSDestBearing</rdfs:label>
  <rdfs:comment>The bearing to the destination point. The range of values is from 0.00 to 359.99.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>24</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestDistanceRef">
  <rdfs:label>GPSDestDistanceRef</rdfs:label>
  <rdfs:comment>Indicates the unit used to express the distance to the destination point. 'K', 'M' and 'N' represent kilometers, miles and knots.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>25</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDestDistance">
  <rdfs:label>GPSDestDistance</rdfs:label>
  <rdfs:comment>The distance to the destination point.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>26</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsProcessingMethod">
  <rdfs:label>GPSProcessingMethod</rdfs:label>
  <rdfs: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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>27</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsAreaInformation">
  <rdfs:label>GPSAreaInformation</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>28</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDateStamp">
  <rdfs:label>GPSDateStamp</rdfs:label>
  <rdfs: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</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <rdfs:subPropertyOf rdf:resource="#date"/>
  <exif:tagNumber>29</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="gpsDifferential">
  <rdfs:label>GPSDifferential</rdfs:label>
  <rdfs:comment>Indicates whether differential correction is applied to the GPS receiver.</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#gpsInfo"/>
  <exif:tagNumber>30</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="interoperabilityIndex">
  <rdfs:label>InteroperabilityIndex</rdfs:label>
  <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.</rdfs:comment>
  <rdfs:comment xml:lang="ja">メイン画像のInteroperability IFDで、データの内容がExifR98 v1.0準拠の場合は、'R98'の文字列。サムネィル画像のInteroperability IFDの場合は、'THM'の文字列</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#interopInfo"/>
  <exif:tagNumber>1</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="interoperabilityVersion">
  <rdfs:label>InteroperabilityVersion</rdfs:label>
  <rdfs:comment>Interoperability Version</rdfs:comment>
  <rdfs:comment xml:lang="ja">データの内容がExifR98 v1.0準拠の場合は、'0100'の文字列。</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#interopInfo"/>
  <exif:tagNumber>2</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="relatedImageFileFormat">
  <rdfs:label>RelatedImageFileFormat</rdfs:label>
  <rdfs:comment>Related image file format</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像フォーマットを'Exif JPEG Ver. 2.1'などの文字列で示す。通常はサムネィル画像に使う</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#interopInfo"/>
  <exif:tagNumber>4096</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="relatedImageWidth">
  <rdfs:label>RelatedImageWidth</rdfs:label>
  <rdfs:comment>Related image width</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像幅。通常はサムネイル画像のInteroperability IFDに使う</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#interopInfo"/>
  <rdfs:subPropertyOf rdf:resource="#width"/>
  <exif:tagNumber>4097</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="relatedImageLength">
  <rdfs:label>RelatedImageLength</rdfs:label>
  <rdfs:comment>Related image length</rdfs:comment>
  <rdfs:comment xml:lang="ja">画像高。通常はサムネイル画像のInteroperability IFDに使う</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#interopInfo"/>
  <rdfs:subPropertyOf rdf:resource="#height"/>
  <exif:tagNumber>4098</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="printImageMatching_IFD_Pointer">
  <rdfs:label>PrintImageMatching IFD Pointer</rdfs:label>
  <rdfs:comment>A pointer to the print image matching IFD</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#ifdPointer"/>
  <exif:tagNumber>50341</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="pimContrast">
  <rdfs:label>PrintIM Contrast</rdfs:label>
  <rdfs:comment>Contrast info for print image matching</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pimInfo"/>
  <exif:tagNumber>9</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="pimBrightness">
  <rdfs:label>PrintIM Brightness</rdfs:label>
  <rdfs:comment>Brightness info for print image matching</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pimInfo"/>
  <exif:tagNumber>10</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="pimColorBalance">
  <rdfs:label>PrintIM ColorBalance</rdfs:label>
  <rdfs:comment>ColorBalance info for print image matching</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pimInfo"/>
  <exif:tagNumber>11</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="pimSaturation">
  <rdfs:label>PrintIM Saturation</rdfs:label>
  <rdfs:comment>Saturation info for print image matching</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pimInfo"/>
  <exif:tagNumber>12</exif:tagNumber>
 </rdf:Property>

 <rdf:Property rdf:ID="pimSharpness">
  <rdfs:label>PrintIM Sharpness</rdfs:label>
  <rdfs:comment>Sharpness info for print image matching</rdfs:comment>
  <rdfs:subPropertyOf rdf:resource="#pimInfo"/>
  <exif:tagNumber>13</exif:tagNumber>
 </rdf:Property>





<!-- ==== Examples ==== -->

<ex:Example>
 <dc:description>IFD nodes correspond Exif's IFD directories. Each tag in the directory is described as a property. Some tags are defined as integer in EXIF, but may be better to use (controlled) string value, e.g, use 'top-left' instead of integer value '1' for 'orientation' tag.</dc:description>
 <dc:description xml:lang="ja">IFDノードはExifのIFDディレクトリに、それぞれのタグはプロパティに対応。Exifタグの多くは数値で記録されているが、'orientation'の値を'1'とするよりは'top-left'とするほうが利用しやすいと思われる(これには統制語彙リストが必要か)。</dc:description>
 <ex:trial rdf:resource="http://www.kanzaki.com/test/exif2rdf"/>
 <ex:code><![CDATA[
 <exif:IFD rdf:ID="Primary_Image">
   <exif:make>Canon</exif:make>
   <exif:model>Canon IXY DIGITAL 30</exif:model>
   <exif:orientation>top-left</exif:orientation>
   <exif:xResolution>180/1</exif:xResolution>
   <exif:yResolution>180/1</exif:yResolution>
   <exif:resolutionUnit>inch</exif:resolutionUnit>
   <exif:dateTime>2003-01-18T16:07:30</exif:dateTime>
   <exif:yCbCrPositioning>centered</exif:yCbCrPositioning>
   <exif:exif_IFD_Pointer>
    <exif:IFD>
      <exif:exposureTime>1/400</exif:exposureTime>
      <exif:fNumber>35/10</exif:fNumber>
      <exif:exifVersion>2.20</exif:exifVersion>
      <exif:dateTimeOriginal>2003-01-18T16:07:30</exif:dateTimeOriginal>
      <exif:dateTimeDigitized>2003-01-18T16:07:30</exif:dateTimeDigitized>
      <exif:componentsConfiguration>01 02 03 00</exif:componentsConfiguration>
      <exif:compressedBitsPerPixel>5/1</exif:compressedBitsPerPixel>
      <exif:shutterSpeedValue>76</exif:shutterSpeedValue>
      <exif:apertureValue>116/32</exif:apertureValue>
      <exif:exposureBiasValue>96</exif:exposureBiasValue>
      <exif:maxApertureValue>116/32</exif:maxApertureValue>
      <exif:meteringMode>Pattern</exif:meteringMode>
      <exif:flash>Flash fired, compulsory flash mode, red-eye reduction mode</exif:flash>
      <exif:focalLength>294/32</exif:focalLength>
      <exif:flashpixVersion>1.00</exif:flashpixVersion>
      <exif:colorSpace>sRGB</exif:colorSpace>
    </exif:IFD>
   </exif:exif_IFD_Pointer>
 </exif:IFD>
 ]]></ex:code>
</ex:Example>

</rdf:RDF>