<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Logicfish &#187; Library and Information Science</title>
	<atom:link href="http://logicfish.me.uk/category/library-and-information-science/feed/" rel="self" type="application/rss+xml" />
	<link>http://logicfish.me.uk</link>
	<description>Independant reviews, software, internet, how to promote your site</description>
	<lastBuildDate>Tue, 05 Jan 2010 20:44:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
<link>http://logicfish.me.uk</link>
<url>http://logicfish.me.uk/wp-content/plugins/maxblogpress-favicon/icons/favicon-82.ico</url>
<title>Logicfish</title>
</image>
		<item>
		<title>Web 3.0 for beginners</title>
		<link>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/</link>
		<comments>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:27:59 +0000</pubDate>
		<dc:creator>Mark Fisher</dc:creator>
				<category><![CDATA[Cataloguing]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Data Formats]]></category>
		<category><![CDATA[Featured Post]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Libraries]]></category>
		<category><![CDATA[Library and Information Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Technical Services]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[Web Design and Development]]></category>
		<category><![CDATA[Webmaster Resources]]></category>

		<guid isPermaLink="false">http://logicfish.me.uk/?p=126</guid>
		<description><![CDATA[In this series of articles I will explain the basics of Web3.0, often called the semantic web, and how to start using future technologies now on your site.
I am assuming a basic knowledge of web and web2 technologies;  these articles are intended to assist users in updating their projects to be ready for web3.
Basic concepts
URI
When [...]]]></description>
			<content:encoded><![CDATA[<p>In this series of articles I will explain the basics of Web3.0, often called the semantic web, and how to start using future technologies now on your site.</p>
<p>I am assuming a basic knowledge of web and web2 technologies;  these articles are intended to assist users in updating their projects to be ready for web3.</p>
<h3>Basic concepts</h3>
<h4>URI</h4>
<p>When using semantic information architectures,  any artifact may be addressed by a symbol known as a URI or &#8220;unique resource indicator&#8221;.  By artifact we mean any kind of information at all.</p>
<p>For example &#8220;rdf:type&#8221;  is a property that may exist for any meta data;  it is referenced by the following URI &#8220;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#8221;.  In this case, the URI is also a URL meaning that you can go to this address in your browser (unless you can  read xml/rdf or you are a machine, this will not make much sense).  However, there is no requirement for a URI to address anything over the internet. nor for it to return anything meaningful  if it does.</p>
<p>A URI is similar to a URL in that it has the same token structure.  However a URL is assumed to be directly addressable over the internet, whereas a URI is an identifier.  URIs will often start with &#8220;http:&#8221; &#8211; this is merely a convention and does not mean that any web content will exist at that location.</p>
<h4>Meta-Data</h4>
<p>Meta-data means information about information.   Humans do not generally use meta-data themselves, however to classify documents using machines, we need an easy way to identify which information is contained in which document.  We also need to be able to embed information in the document.</p>
<p>For example, say we have document X.  Within X, part of the text will represent the title of the document, part will represent for example the author, and so on.  A human may easily discern which part of the text refers to which type;  however, for a machine there exists no easy way to distinguish parts of the document.   For this reason we use meta-tags, either within the document or in a separate meta-document, to tell the machine that part A refers to the title, part B to the author, C to the date.</p>
<p>The semantic web exisits to define meta-data around data that we already have, and to create concept maps called ontologies, describing the various types of meta-data.</p>
<h4>Ontologies</h4>
<p>An ontology represents a classification system by which we may categorize meta-data.  For example, the Dublin Core ontology contains properties such as &#8220;dc:title&#8221; and &#8220;dc:author&#8221; which refer directly to the title and the author of the document respectively.</p>
<p>Ontologies, and meta-data, are arranged in structures known as graphs.  Within these structures we have two types of entity;  nodes and arcs.  Nodes represent individuals or items within the graph;  arcs represent the relations between them.  A node has an identifier (in RDF we use the URI to identify any unique instance);  an arc has two nodes (in RDF we call these Subject and Object) and a predicate which specifies the type of relation,.  For example, &#8220;rdf:instanceOf&#8221; represents a predicate which links an individual to the definition of the type that the individual represents.</p>
<p>A URI forms a functional identifier for a node;  that is, any two elements with the same URI, refer to the same node.</p>
<h4>Types</h4>
<p>Any individual in Web3 must have a type;  we specify the type using the &#8220;instanceOf&#8221; property (in rdf).  Basic types are simple definitions, for example we may create a type &#8220;car&#8221; which has a supertype &#8220;automobile&#8221;.  However the semantic web allows us to create more complex types using built-in rules; if our software has inferencing capabilities. we may make full use of these.  Here is an example:  we can define a type &#8220;4 wheeled objects&#8221; where the property &#8220;numberOfWheels&#8221; is equal to 4.  If we create an individual, and assign it the property &#8220;numberOfWheels&#8221; with the value 4,  our software will automatically infer that our individual is a member of the type &#8220;4 wheeled objects&#8221; with no further effort on our part.</p>
<h4>Properties</h4>
<p>Properties are assignments of some artifact, to another artifact.  Two types of properties exists;  object properties, where the value of the property represents another individual, and data properties, where the value of the property represents a known data type such as string or integer.  Much like types, properties may be arranged in a heirarchy with the more general properties higher in the graph.</p>
<h4>Individuals</h4>
<p>An individual represents an instance of a type;  this is similar to an &#8220;object&#8221; in oop.  Basically, it represents a single &#8220;thing&#8221; rather than a type of thing.</p>
<h3>Core Ontologies</h3>
<p>There now follows a list of the most common ontologies</p>
<h4>Dublin Core</h4>
<p>Basic meta-data such as author, copyright, and other document related artifacts.</p>
<h4>FOAF &#8211; Friend-of-a-friend</h4>
<p>This ontology deals with relationships between people.  For example, I could use &#8220;foaf:knows&#8221; in my document when linking to the homepages of people that I know.</p>
<h4>SIOC Senantically Interlinked Online Communities</h4>
<p>Similar to FOAF;  allows me to specify metadata relating to social networking.</p>
<h4>SKOS Simple Knowledge Organization System</h4>
<p>Deals with concepts, and allows classification by grouping concepts into schemas.  One may also specify semantic relationships between concepts; for exmaple,  the &#8220;skos:broader&#8221; property links to a conecpt more general that the concept it links from (ie trees-&gt;plants, kilogram-&gt;wieght measurement, fly-&gt;insect).</p>
<p>Hopefully this basic guide will start you off;   in the next part of the series, I will explain the various formats that may be used to express semantic meta data,  and show you how to start using these right away in your web content.</p>
<div id="textwise_suggestions"><h4 id='twBlogs'>Similar Blog & News Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://derivadow.com/2009/03/31/linking-bbccouk-to-the-linked-data-cloud/">Linking bbc.co.uk to the Linked Data cloud</a> :: <em><a href="http://derivadow.com">Derivadow.com</a></em></li><li><a href="http://derivadow.com/2009/03/26/what-does-the-history-of-the-web-tell-us-about-its-future/">What does the history of the web tell us about its future?</a> :: <em><a href="http://derivadow.com">Derivadow.com</a></em></li><li><a href="http://feedproxy.google.com/~r/Technosophia/~3/NiQ73giN8nE/">I2: Strawman</a> :: <em><a href="http://lackoftalent.org/michael/blog">τεχνοσοφια</a></em></li><li><a href="http://www.cafeconleche.org/#June_17_2009_22911">Michael Kay has released version 9.1.0.7 of Saxon, his XSLT 2.0 and XQuery processor for Java and .NET.</a> :: <em><a href="http://www.cafeconleche.org/">Cafe con Leche XML News and Resources</a></em></li><li><a href="http://www.cafeconleche.org/#June_12_2009_23143">Andy Clark's updated his NekoHTML open source HTML parser to version 1.9.12.</a> :: <em><a href="http://www.cafeconleche.org/">Cafe con Leche XML News and Resources</a></em></li><li><a href="http://canoo.com/blog/2009/06/25/jazoon-09-semantic-web/">Jazoon '09: Semantic Web</a> :: <em><a href="http://canoo.com/blog">Rich Internet Applications (RIA)</a></em></li><li><a href="http://feedproxy.google.com/~r/technosophia/~3/NiQ73giN8nE/">I2: Strawman</a> :: <em><a href="http://lackoftalent.org/michael/blog">τεχνοσοφια</a></em></li><li><a href="http://reinout.vanrees.org/weblog/2009/07/01/ep-web-of-data.html">Reinout van Rees: Tapping into the web of data (Cosmin Basca)</a> :: <em><a href="http://planet.python.org/">Planet Python</a></em></li></ul><h4 id='twWiki'>Similar Wikipedia Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://en.wikipedia.org/wiki/Resource%20Description%20Framework">Resource Description Framework</a></li><li><a href="http://en.wikipedia.org/wiki/Semantic%20Web">Semantic Web</a></li><li><a href="http://en.wikipedia.org/wiki/Resource%20%28Web%29">Resource (Web)</a></li><li><a href="http://en.wikipedia.org/wiki/Semantic%20publishing">Semantic publishing</a></li><li><a href="http://en.wikipedia.org/wiki/Ontology%20%28information%20science%29">Ontology (information science)</a></li></ul><h4 id='twProducts'>Similar Products: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><table class="tw_products" border="0">	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51cg6YfvF%2BL._SL160_.jpg" width="120" alt="Semantic Web For Dummies (For Dummies (Computer/Tech))" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0470396792&tag=wq2rx-20&camp=1789&creative=9325">Semantic Web For Dummies (For Dummies (Computer/Tech))</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Semantic Web technology is already changing how we interact with data on the Web. By connecting random information on the Internet in new wa</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51AKYCHFG8L._SL160_.jpg" width="120" alt="A Semantic Web Primer (Cooperative Information Systems)" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0262012103&tag=wq2rx-20&camp=1789&creative=9325">A Semantic Web Primer (Cooperative Information Systems)</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The development of the Semantic Web, with machine-readable content, has the potential to revolutionize the World Wide Web and its use. A Sem</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/41QS4JGT7TL._SL160_.jpg" width="120" alt="Semantic Web Technologies: Trends and Research in Ontology-based Systems" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0470025964&tag=wq2rx-20&camp=1789&creative=9325">Semantic Web Technologies: Trends and Research in Ontology-based Systems</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The Semantic Web combines the descriptive languages RDF (Resource Description Framework) and OWL (Web Ontology Language), with the data-cent</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/511kc4wcgtL._SL160_.jpg" width="120" alt="Visualizing the Semantic Web: XML-based Internet and Information Visualization" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/1852339764&tag=wq2rx-20&camp=1789&creative=9325">Visualizing the Semantic Web: XML-based Internet and Information Visualization</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The Web has evolved from HTML quite dramatically over the last few years with revolutionary techniques for content and structural modeling,</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51jUtuN60bL._SL160_.jpg" width="120" alt="Programming the Semantic Web" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0596153813&tag=wq2rx-20&camp=1789&creative=9325">Programming the Semantic Web</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>With this book, the promise of the Semantic Web -- in which machines can find, share, and combine data on the Web -- is not just a technical</small></span>
		</td>
	</tr></table></div>]]></content:encoded>
			<wfw:commentRss>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
