Diese Präsentation wurde erfolgreich gemeldet.
Die SlideShare-Präsentation wird heruntergeladen. ×

Resource description framework

Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Nächste SlideShare
RDF 해설서
RDF 해설서
Wird geladen in …3
×

Hier ansehen

1 von 33 Anzeige

Weitere Verwandte Inhalte

Diashows für Sie (20)

Ähnlich wie Resource description framework (20)

Anzeige

Resource description framework

  1. 1. Resource Description Framework (RDF)<br />Sudan University of Science and Technology<br />Prepared By:<br />HozifaAdam<br />E-mail: hozifa.adam@gmail.com<br />
  2. 2. Topics:<br />Concepts.<br />RDF Model.<br /><ul><li>RDF Syntax.
  3. 3. RDF Schema.</li></ul>Resource Description Framework<br />6/20/2011<br />2<br />
  4. 4. RDF Introduction(1):<br />Metadata:<br /> - Data about data or Information about information.<br /> -Machine-understandable(Machine readable : data ).<br /> - Resource Discovery.<br /> - Sites-maps.<br /> - About relationship – about descriptions of resources.<br />Resource Description Framework<br />6/20/2011<br />3<br />
  5. 5. RDF Introduction(2):<br /><ul><li>Metadata:</li></ul> - Used by clients (web browsers) to improve discovery and access of distributed information.<br /> - Usually imbedded into HTML to tell the browser what information is contained in the page.<br /> - In the context of RDF, metadata is "data describing web resources". <br />Resource Description Framework<br />6/20/2011<br />4<br />
  6. 6. RDF Introduction(3):<br /><ul><li>Metadata Scenario:</li></ul> - The library ( Book’s title , Author’s name … library catalog ).<br /> - The video shop ( movie name , movie director name … )<br /> - The phone book <br />Resource Description Framework<br />6/20/2011<br />5<br />
  7. 7. RDF Introduction(4):<br />RDF ( Resource Description Framework )<br /> - Designed By Tim-Berners-Lee, the inventor of the Web.<br /> - RDF is foundation for processing metadata.<br /> - RDF is about metadata for Web resources, by resources we mean any object that can be found on the Web. <br />Resource Description Framework<br />6/20/2011<br />6<br />
  8. 8. RDF Introduction(5):<br /> - RDF is a means for developing tools and applications using a common syntax for describing Web resources.<br /> - RDF provides a data model that supports fast integration of data sources by bridging semantic differences.<br /> - RDF is XML-based serialization syntax.<br /> - RDF resembles ER-diagram.<br />Resource Description Framework<br />6/20/2011<br />7<br />
  9. 9. Resource Description Framework<br />6/20/2011<br />8<br />RDF Definition:<br /><ul><li>The Resource Description Framework (RDF) is a W3C standard for describing resources on the Web.</li></ul>RDF is a framework for describing Web resources, <br /> - e.g., title, author, modification date, content, and copyright information of a Web page.<br />
  10. 10. What (else) is RDF?:<br />RDF provides a model for data, and a syntax so that independent parties can exchange and use it.<br />RDF is designed to be read and understood by computers.<br />RDF is not designed for being displayed to people.<br />RDF (can be) written in XML.<br />RDF is a part of the W3C's Semantic Web Activity.<br />6/20/2011<br />Resource Description Framework<br />9<br />
  11. 11. RDF Usage Examples:<br />Describing properties for shopping items, such as price and availability.<br />Describing time schedules for web events <br />Describing content and rating for web pictures.<br />Describing content for search engines.<br />Resource Description Framework<br />6/20/2011<br />10<br />
  12. 12. RDF is Designed to be Read by Computers:<br />RDF was designed to provide a common way to describe information so it can be read and understood by computer applications.<br />RDF descriptions are not designed to be displayed on the web.<br />6/20/2011<br />Resource Description Framework<br />11<br />
  13. 13. RDF can be Written in XML:<br />RDF documents can be written in XML. XML language : RDF/XML.<br />information exchange between:<br /> - different types of computers <br /> - using different types of operating systems and <br /> - and application languages.<br />6/20/2011<br />Resource Description Framework<br />12<br />
  14. 14. RDF and The Semantic Web:<br />The RDF language is a part of the W3C's Semantic Web Activity. W3C's "Semantic Web Vision" is a future where:<br /> - Web information has exact meaning<br /> - Web information can be understood and processed by computers<br /> - Computers can integrate information from the web<br />6/20/2011<br />Resource Description Framework<br />13<br />
  15. 15. RDF Features:<br />Resource Description Framework, as its name implies, is a framework for<br /> describing and interchanging metadata. It is built on the following rules.<br /> A Resource is anything that can have a URI; this includes all the Web's pages, as well as individual elements of an XML document.<br />Resource Description Framework<br />6/20/2011<br />14<br />
  16. 16. RDF Features:<br />A Property is a Resource that has a name and can be used as a property, for example Author or Title. <br />A Statement consists of the combination of a Resource, a Property, and a value. These parts are known as the 'subject', 'predicate' and 'object' of a Statement.<br />Resource Description Framework<br />6/20/2011<br />15<br />
  17. 17. RDF Data Model<br /> RDF Statements:<br />RDF is built of Statements<br />known as the <br /> - subject.<br /> - predicate.<br /> - object .<br />6/20/2011<br />Resource Description Framework<br />16<br />
  18. 18. RDF Statements:<br />Resource Description Framework<br />6/20/2011<br />17<br />Predicate<br />Subject<br />Object<br />
  19. 19. The key elements of an RDF:<br />Subject: In grammar, this is the noun or noun phrase that is the doer of the action.<br /> In the sentence “The company sells batteries,” the subject is “ the company”.<br /> In logic, this is the term about which something is asserted. In RDF, this is the<br /> resource that is being described by the ensuing predicate and object.<br />Resource Description Framework<br />6/20/2011<br />18<br />
  20. 20. Predicate: In grammar, this is the part of a sentence that modifies the subject and includes the verb phrase. Returning to our sentence “The company sells batteries,” the predicate is the phrase “sells batteries.” In other words, the predicate tells us something about the subject. <br />Resource Description Framework<br />6/20/2011<br />19<br />
  21. 21. In logic, a predicate is a function from individuals (a particular type of subject) to truth-values with an arity based on the number of arguments it has. In RDF, a predicate is a relation between the subject and the object.<br />Resource Description Framework<br />6/20/2011<br />20<br />
  22. 22. Object: In grammar this is a noun that is acted upon by the verb. Returning<br /> to our sentence “The company sells batteries,” the object is the noun “batteries.” In logic, an object is acted upon by the predicate. In RDF, an object is either a resource referred to by the predicate or a literal value.<br />Resource Description Framework<br />6/20/2011<br />21<br />
  23. 23. Examples:<br />Let's look at some example statements to get a better understanding:<br /> - Statement: "The author of http://www.w3schools.com/RDF is Jan EgilRefsnes".<br /> - Statement: "The homepage of http://www.w3schools.com/RDF is http://www.w3schools.com".<br />Resource Description Framework<br />6/20/2011<br />22<br />
  24. 24. Examples – cont.<br />Statement: "The author of http://www.w3schools.com/RDF is Jan EgilRefsnes".<br /> - The subject of the statement above is: http://www.w3schools.com/RDF<br /> - The predicate is: author<br /> - The object is: Jan EgilRefsnes<br />Resource Description Framework<br />6/20/2011<br />23<br />
  25. 25. Examples – cont.<br />Statement: "The homepage of http://www.w3schools.com/RDF is http://www.w3schools.com".<br /> - The subject of the statement above is: http://www.w3schools.com/RDF <br /> - The predicate is: homepage <br /> - The object is: http://www.w3schools.com <br />Resource Description Framework<br />6/20/2011<br />24<br />
  26. 26. Examples – cont.<br />25<br />Predicate<br />Subject<br />Object<br />author<br />Jan Egil Refsnes<br />http://www.<br />w3schools.com/RDF<br />Resource Description Framework<br />6/20/2011<br />
  27. 27. RDF Resource, Property, and Property Value:<br />RDF identifies things using Web identifiers (URLs), and<br />describes resources with properties and property values.<br /> A Resource is anything that can have a URL, <br /> - such as "http://www.w3schools.com/RDF" <br />Resource Description Framework<br />6/20/2011<br />26<br />
  28. 28. RDF Resource, Property, and Property Value:<br />A Property is a Resource that has a name, <br /> - such as "author" or "homepage" <br /><ul><li>A Property value is the value of a Property, </li></ul> - such as "Jan EgilRefsnes" or "http://www.w3schools.com" (note that a property value can be another resource) <br />Resource Description Framework<br />6/20/2011<br />27<br />
  29. 29. RDF Statements:<br />28<br />Predicate<br />Subject<br />Object<br />author<br />Jan Egil Refsnes<br />http://www.<br />w3schools.com/RDF<br />Property<br />Resource<br />Property Value<br />Resource Description Framework<br />6/20/2011<br />
  30. 30. The RDF triple:<br />Triples (instead of pairs).<br />The RDF model is often called a “triple” because it has three parts.<br />Resource Description Framework<br />6/20/2011<br />29<br />
  31. 31. 30<br />The RDF triple:<br /> = URL<br /> = Literal<br /> = Property or Association<br />Object<br />Predicate<br />Subject<br />Predicate<br />Literal<br />Resource Description Framework<br />6/20/2011<br />
  32. 32. So, RDF ..<br /><ul><li>This is the concept … how to implement it?
  33. 33. We will continuous in next presentation (RDF Syntax) and (RDF schema).</li></ul>Resource Description Framework<br />6/20/2011<br />31<br />
  34. 34. Thank You <br />For Attention<br />Resource Description Framework<br />6/20/2011<br />32<br />
  35. 35. References:<br />Dr. Alexandra I. Cristea:<br />http://www.dcs.warwick.ac.uk/~acristea/<br />By David Wilczynski, USC, dwilczyn@usc.edu<br /> Based on: http://www.w3.org/TR/rdf-primer/<br />The Semantic Web :A Guide to the Future of XML, Web Services, and Knowledge Management:<br /> - Michael C. Daconta<br /> - Leo J. Obrst<br /> - Kevin T. Smith<br />Resource Description Framework<br />6/20/2011<br />33<br />

Hinweis der Redaktion

  • RDF documents can be written in XML. The XML language used by RDF is called RDF/XML. By using XML, RDF information can easily be exchanged between different types of computers using different types of operating systems and application languages.
  • The combination of a Resource, a Property, and a Property value forms a Statement (known as the subject, predicate and object of a Statement).Let&apos;s look at some example statements to get a better understanding:Statement: &quot;The author of http://www.w3schools.com/RDF is Jan EgilRefsnes&quot;.The subject of the statement above is: http://www.w3schools.com/RDF The predicate is: author The object is: Jan EgilRefsnesStatement: &quot;The homepage of http://www.w3schools.com/RDF is http://www.w3schools.com&quot;.The subject of the statement above is: http://www.w3schools.com/RDF The predicate is: homepage The object is: http://www.w3schools.com
  • The combination of a Resource, a Property, and a Property value forms a Statement (known as the subject, predicate and object of a Statement).URI = Uniform Resource IdentifierRDF identifies things using Web identifiers (URIs), and describes resources with properties and property values.Explanation of Resource, Property, and Property value:A Resource is anything that can have a URI, such as &quot;http://www.w3schools.com/RDF&quot; A Property is a Resource that has a name, such as &quot;author&quot; or &quot;homepage&quot; A Property value is the value of a Property, such as &quot;Jan EgilRefsnes&quot; or &quot;http://www.w3schools.com&quot; (note that a property value can be another resource)

×