photo-use-case.rdf
2.88 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
<?xml version="1.0"?>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:event="http://www.example.org/ontologies/event#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:locat="http://www.example.org/ontologies/location#" xmlns:lsc="http://www.example.org/ontologies/landscape#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:vra="http://e-culture.multimedian.nl/ns/vracore3.rdfs#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<rdf:Description rdf:about="http://www.w3.org/2005/Incubator/mmsem/XGR-image-annotation/Personal.jpg">
<!-- Description and general information about the photo itself, e.g. description, creator, date, using Dublin Core and FOAF -->
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:description>Photo of Katerina Tzouvara during Vacations in Thailand </dc:description>
<dc:creator>
<foaf:Person>
<foaf:familyname>Stabenaou</foaf:familyname>
<foaf:firstname>Arne</foaf:firstname>
</foaf:Person>
</dc:creator>
<dc:date>2002-12-4</dc:date>
<!-- Technical information, e.g. format, resolution, using DC, VRA, MIME-->
<dc:format>JPEG</dc:format>
<vra:measurements.resolution>300 x 225px</vra:measurements.resolution>
<!-- Description of the content of the image,answering the questions when, where, why, what and who -->
<!-- Information about the location and the objects depicted using a location and a landscape ontology-->
<locat:located_in_Continent>
<locat:Continent>
<foaf:name>Asia</foaf:name>
</locat:Continent>
</locat:located_in_Continent>
<locat:located_in_Country>
<locat:Country>
<foaf:name>Thailand</foaf:name>
</locat:Country>
</locat:located_in_Country>
<locat:located_in_City>
<locat:City>
<foaf:name>Phi Phi</foaf:name>
<locat:belongs_to_Country>
<locat:Country>
<foaf:name>Thailand</foaf:name>
</locat:Country>
</locat:belongs_to_Country>
</locat:City>
</locat:located_in_City>
<foaf:depicts>
<lsc:Mountain>
<foaf:name/>
</lsc:Mountain>
</foaf:depicts>
<foaf:depicts>
<lsc:Beach>
<foaf:name/>
</lsc:Beach>
</foaf:depicts>
<foaf:depicts>
<lsc:Boat>
<foaf:name>Pirogue</foaf:name>
</lsc:Boat>
</foaf:depicts>
<foaf:depicts>
<lsc:Palm_Tree>
<foaf:name>Phoenix Dactyliphera</foaf:name>
</lsc:Palm_Tree>
</foaf:depicts>
<foaf:depicts rdf:resource="http://www.example.org/ontologies/landscape#Sand"/>
<!-- Information about the kind of the event depicted on the image -->
<foaf:depicts rdf:resource="http://www.example.org/ontologies/event#Vacations"/>
<!-- Information about the person depicted on the image -->
<foaf:depicts>
<foaf:Person>
<foaf:familyname>Tzouvara</foaf:familyname>
<foaf:firstname>Katerina</foaf:firstname>
</foaf:Person>
</foaf:depicts>
</rdf:Description>
</rdf:RDF>