Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Semantic Web resources for a new web site? [closed]

I want to implement a web site from scratch using Semantic Web as much as possible. My website will be for a scientific institution, I have no model but I recognize there are entities/objects like

  • Person and Person Roles (Researcher, Teacher, Collaborator, etc.)
  • Publication
  • Meeting
  • Projects
  • Research Area

The idea is that (some) information could be linked/queried/exported to databases, other sites or even do some ontology matching in the future. Do you know any ontology or Semantic Web resource which could help me?

like image 802
user183928 Avatar asked Jan 05 '12 18:01

user183928


People also ask

What are the examples of Semantic Web?

Examples include Best Buy, BBC World Cup site, Google, Facebook and Flipboard. Google, Microsoft, Yahoo and Yandex agree on Schema.org, a vocabulary for associating meaning to data on the web. The vocabulary is defined by a community process.

What website is a Semantic Web?

The Semantic Web, sometimes known as Web 3.0 (not to be confused with Web3), is an extension of the World Wide Web through standards set by the World Wide Web Consortium (W3C). The goal of the Semantic Web is to make Internet data machine-readable.

What are the major building blocks of the Semantic Web?

Basic building block for Semantic web are Ontology ,RDF/OWL ,SPARQL. Semantic web vocabulary can be considered as a special form of ontology.

What is new Semantic Web?

The Semantic Web provides a common framework that allows data to be shared and reused across application, enterprise, and community boundaries. It is a collaborative effort led by W3C with participation from a large number of researchers and industrial partners.


1 Answers

I run the University of Southampton Open Data Service. http://data.southampton.ac.uk/

For the love of all that is holy, don't invent a new vocab -- there's plenty of solid work already out there.

This site is designed to be a model for other people to lift ideas from. We've used simple solutions which are easy for users to consume and all the tools are open source. We mostly use simple spreadsheets, then XSLT to produce RDF data. All of this is also open source. All of the tools used to generate each dataset are published with the dataset to make it really easy to either directly copy our approach, or use it as a starting point.

Picking good, simple, sustainable URIs is key. We use a domain to do this and only this: eg. http://id.southampton.ac.uk/building/59

People -- start with FOAF.

Person Roles -- I suggest you look at the "organogram" produced by the UK civil service.. this treats a role as a type of group which contains zero or more people. (multiple people can have the same role, and roles can exist where people are empty)

Publications -- we use bibo and dcterms for this. The trickiest part is neatly linking it back to people & parts of the organisation etc.

Meetings -- we don't currently model this, but you can just use the standard "event" vocab unless there's a reason not to: http://motools.sourceforge.net/event/event.html

Projects -- this is something we're just starting to consider, and my current plan is to use http://ontoware.org/swrc/

Research area; I don't have any useful ideas here, yet.

We are trying to document sensible starting patterns for this kind of task on openorg.ecs.soton.ac.uk -- which will be a constant work in progress. The goal is to produce data with enough commonality of structure that you can create apps which work with more than one organisation, and more easily merge information from other sites.

I've written a blog post demonstrating one tool working with (places) RDF data produced by Southampton, Oxford and Lincoln (although the Lincoln data server is offline right now) http://blogs.ecs.soton.ac.uk/data/2011/11/25/roi/

We have an RDF namespace called "openorg" for the additional vocab we've found we need to achieve our tasks. We try to keep this to a minimum and most things are described using existing vocabs.

As for building the site on top of the data, we are using a PHP Library called "Graphite" (which I'm the lead developer on, and is Free Open Source). This is relatively easy to get started with. http://graphite.ecs.soton.ac.uk/

This is all very new so we'll be updating things as we learn good and bad techniques.

like image 181
Christopher Gutteridge Avatar answered Sep 29 '22 13:09

Christopher Gutteridge