Les Ontologies

Ontologies   Méthodologie de conception: http://protege.stanford.edu/publications/ontology_development/ontology101.pdf Conception des ontologies : http://protege.stanford.edu/publications/ontology_development/OntologyEngineering.zip (fichier .ppt à préciser) développement d’ontologie (Site BNF) : http://www.bnf.fr/documents/no-DevOnto.pdf http://protege.stanford.edu/publications/ontology_development/ontology101-noy-mcguinness.html OWL 2 Overview : http://www.w3.org/TR/owl2-overview/ (lien avec OWL 1)                   http://www.w3.org/TR/owl2-new-features/                  http://www.w3.org/TR/2012/REC-owl2-quick-reference-20121211/ SWRL W3C :     http://www.w3.org/Submission/SWRL/ Tutorial : http://www.semantic-web-book.org/w/images/5/5e/KI09-OWL-Rules-2.pdf Tutorial : http://protege.stanford.edu/conference/2009/slides/SWRL2009ProtegeConference.pdf Tutorial : Protégé […]

Some Linked Open Datasets

CIA Factbook SPARQL Endpoint: http://wifo5-04.informatik.uni-mannheim.de/factbook/sparql  AJAX SPARQL explorer : http://wifo5-03.informatik.uni-mannheim.de/factbook/snorql/ HTML View:  http://wifo5-04.informatik.uni-mannheim.de/factbook/ BBC Programmes and Music SPARQL Endpoint  http://lod.openlinksw.com/ Webform : http://lod.openlinksw.com/sparql/ Webform : http://lod.openlinksw.com/isparql/ Faceted Browsing and Exploation : http://lod.openlinksw.com/fct/     Dbpedia Site: http://dbpedia.org/About SPARQL Endpoints : The SNORQL query explorer at http://dbpedia.org/snorql The OpenLink Interactive SPARQL Query Builder (iSPARQL) at http://dbpedia.org/isparql; The Leipzig query builder at http://querybuilder.dbpedia.org; http://dbpedia.org/sparql  There is a public Faceted […]

Open Graph Protocol: Facebook

Du bon usage de l OpenGraph Facebook from Rouge Interactif The Open Graph Protocol http://www.journaldunet.com/ebusiness/le-net/open-graph/les-origines-de-l-open-graph.shtml http://wiki.knoesis.org/index.php/SSW_Datasets http://readwrite.com/2010/04/23/facebook_open_graph_the_definitive_guide_for_publishers_users_and_competitors#awesm=~osZxZ3gXIlIZgM Open Graph Protocol : A web page as a rich object in a social graph http://ogp.me/ 

SPARQL W3C: Documentations

Documentations SPARQL SPARQL Overview : http://www.w3.org/TR/2013/REC-sparql11-overview-20130321/ SPARQL current Status : http://www.w3.org/standards/techs/sparql#w3c_all  SPARQL 1.1 Query Language http://www.w3.org/TR/2013/REC-sparql11-query-20130321 SPARQL Update : http://www.w3.org/TR/2013/REC-sparql11-update-20130321 SPARQL 1.1 Entailment regimes: http://www.w3.org/TR/2013/REC-sparql11-entailment-20130321/ SPARQL 1.1 Federated Query : http://www.w3.org/TR/2013/REC-sparql11-federated-query-20130321/ SPARQL 1.1 Graph Store HTTP Protocol : http://www.w3.org/TR/2013/REC-sparql11-http-rdf-update-20130321/ SPARQL 1.1 Service description : http://www.w3.org/TR/2013/REC-sparql11-service-description-20130321/

Ontologies et Web Social

http://rdfs.org/sioc/ns# – SIOC Core Ontology Namespace http://rdfs.org/sioc/access# – SIOC Access Ontology Module Namespace http://rdfs.org/sioc/types# – SIOC Types Ontology Module Namespace http://rdfs.org/sioc/services# – SIOC Services Ontology Module Namespace http://xmlns.com/foaf/0.1/  – FOAF Namespace W3C PIM Contact : http://www.w3.org/2000/10/swap/pim/contact W3C PIM Ical : http://www.w3.org/2000/10/swap/pim/ical.rdf W3C PIM Email :  http://www.w3.org/2000/10/swap/pim/email.rdf Géolocalisation :  http://www.w3.org/2003/01/geo/wgs84_pos Géonames : http://www.geonames.org/ontology/ontology_v3.1.rdf PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX […]

Conception d’Ontologies, Protege & OWL 2

Conception d’ontologies : bonnes pratiques http://www.mkbergman.com/911/a-reference-guide-to-ontology-best-practices/  http://wiki.opensemanticframework.org/index.php/Ontology_Best_Practices#cite_note-20 Développement d’une ontologie 101 : guide pour la création de votre première ontologie (Traduction française – sauf les schémas et les figures)  :  http://www.bnf.fr/documents/no-DevOnto.pdf OWL 2 Overview : http://www.w3.org/TR/owl2-overview/ (lien avec OWL 1)                   http://www.w3.org/TR/owl2-new-features/                 […]

  • Sparql

    var SparqlClient = require('sparql-client'); var util = require('util'); var endpoint = 'http://dbpedia.org/sparql'; // Get the leaderName(s) of the given citys // if you do not bind any city, it returns 10 random leaderNames var query = "SELECT * FROM WHERE { ?city ?leaderName } LIMIT 10"; var client = new SparqlClient(endpoint); console.log("Query to " + endpoint); console.log("Query: " + query); client.query(query) //.bind('city', 'db:Chicago') //.bind('city', 'db:Tokyo') //.bind('city', 'db:Casablanca') .bind('city', '') .execute(function(error, results) { process.stdout.write(util.inspect(arguments, null, 20, true)+"\n");1 });
  • Méta

  • Catégories