0
votes
1answer
29 views

Querying subclasses through Fuseki

I use the following simple SPARQL query to obtain a list of classes of an ontology and their subclasses through Fuseki: SELECT DISTINCT ?subject ?object WHERE { ?subject rdfs:subClassOf ?object } ...
0
votes
0answers
33 views

Writing the sparql to get all carnivorous

I'm trying to get all the carnivorous from this ontology. The BBC page here enter link description here is build on this ontology. I'm no expert in sparql and rdf, can someone help me to write this ...
1
vote
1answer
41 views

SPARQL simple query

I have made an ontology for Email. I want to make a query to test but believe me I forgot to how to write a simple one!! can anyone help me? considering these : Email has ...
0
votes
0answers
61 views

Sparql query label annotation for data properties

In my ontology there is an individual "Lion" belong to a class "Carnivorous" which is belong to "Animal" class ( Animal>>Carnivorous:Lion) this individual or instance "Lion" has multiple data ...
0
votes
0answers
33 views

Searching for a tool that build Sparql query automatically by selecting a particular individual

I have built my ontology using protege 4.1 , and i query the ontology through jena api, i need a visual tool that can help me to build the correct sparql query that select an individual or data ...
2
votes
2answers
172 views

A SPARQL Query to get my pizza's name

I am just a beginner in SPARQL and can write some basic queries. I have a pizza ontology in which there is one pizza whose properties are as follows: rdf:subClassOf NamedPizza hasTopping only ...
0
votes
1answer
104 views

traverse an ontology using dotnetrdf

I have created an ontology using protege. Now I want to write a code to traverse ontology using dotNetRDF. By mean of traverse is displaying all classes, sub-classes etc. I am using following code ...
0
votes
1answer
149 views

Spatial Query with Geosparql

I have a problem on geosparql query. I used protege 3.4.8 version and Download geosparql ontology and import geosparql_vocabulary 1.0.1 into protege. I create some classes under Feature class. I ...
0
votes
0answers
36 views

sparql request on IMSLP music pieces

I'm french, and I want to retrieve all scores on the wiki of classical music "imslp" (http://imslp.org) I searched and I found this: ...
0
votes
0answers
187 views

Creating base URI for an ontology

I need to query an ontology which I designed in protege 3.4.8 in my Netbeans project. How do I create the base URI for my ontology so that I can perform this task. Or is there any other way I can do ...
2
votes
1answer
89 views

How to query data from different unknown structured rdf graphs?

Since a few years the amount of Linked Data has grown fast. There are different graphs published using RDF. Every graph does have it's own prefixes and vocabulary structures. So, how is it possible ...
1
vote
1answer
187 views

OWL ontology and data - How do they interact?

This might be a naive question. I am modelling an OWL ontology(for some university data) with relevant Classes and object properties etc. I have the university data lying in a simple text file (say ...
1
vote
1answer
179 views

NoSuchMethod exception when running simple SPARQL query in JENA

Hi i've just started using Jena and wanted to run a few SPARQL queries. I got the following exception when I tried to run a basic select query: Caused by: java.lang.NoSuchMethodError: ...
0
votes
2answers
110 views

Sparql substract instance

I have an anthology, I created an interface for evaluation or there is a submit button. This button allows you to calculate the difference between the old value and the value 20. I try to select an ...
4
votes
1answer
183 views

SPARQL: Query to get all Instances of two classes that share the same connections to a third class

Im trying to understand the capabilities of SPARQL an im wondering if this kind of query is possible: Diagram of my Ontology structure (sorry, Im not allowed to post pictures yet) I want to get all ...
0
votes
2answers
150 views

Obtain only names after “#” from SPARQL query

I have this java code that, using apache jena api, queries the pizza ontology String queryStr = "prefix pizza: <" + PIZZA_NS + "> " + "prefix rdfs: <" + RDFS.getURI() + ...
0
votes
1answer
116 views

Can I use DBpedia to reference the first / given / Christian name of a person on Wikipedia?

I don't believe Wikipedia's infoboxes take into account the various parts of a person's name such as separating the surname from the given (aka first or Christian) name, etc. But I also believe ...
3
votes
1answer
467 views

Semantic web ontology tools and support for ASP.net projects [closed]

DotnetRDF, is the best contribution for Semantic Web support in DotNet, however it doesn't support Ontology as Jena and other Non-DotNet projects do. Some people are talking about a new stable ...
1
vote
2answers
148 views

How write this SPARQL request?

I've the following Ontology built in Protege 4. In this Ontology : The main class Frame has an datatypeProperty hasDuration with domain 'Frame' and range UnsignedShort. the ClassShortFrame and ...
3
votes
1answer
803 views

SPARQL query to retrieve all objects and properties

Using the Wine ontology, I want to create SPARQL query so I can retrieve all wines and their properties like the table below - consider that I don't know the properties' names a priori. vin ...
5
votes
1answer
646 views

Jena: How to infer data / performance issues

I'd like to use Jena's inference capabilities, but I'm having some performance problems when I am using InfModel. Here's a simplified overview of my ontology: Properties: hasX ...
1
vote
1answer
59 views

Query to display Propernoun using SPARQL over dbpedia

How to display all propernoun like Manchester_United_F_C., Arsenel_FC, United_States using SPARQL over DBpedia ?
2
votes
1answer
843 views

SPARQL: How to get an insance of an ontology, if depth of the class hierarchy is unknown?

I have a question about SPARQL. I have an ontology of animals: Animals (is a superclass with object property <hasColor>) ------ Mammals (subclass of Animals) ------------- Dog (subclass of ...
1
vote
1answer
133 views

Python Sparql Quering A Local File

I have the following code which I use to print whole of my ontology. However, how can i perform some sparql with it, query and then print the resulting graph? g = Graph() g.parse('PLAYERS3.owl') for ...
1
vote
1answer
947 views

Jena: how to query data from model?

Is it possible to query data from a Model without writing sqarql-queries? Adding properties to resources or resources to models can be done easily, but I haven't found out yet, if there is a more ...
3
votes
2answers
290 views

Python Sparql Quering Local File

I have the following Python code. It basically returns some elemtns of RDF from an online resource using SPARQL. I want to query and return something from one of my local files. I tried to edit it ...
2
votes
1answer
213 views

Execute a SPARQL query in SWI-Prolog, on a OWL ontology

I'd like to know how to execute a SPARQL query in SWI-Prolog, after I've loaded an ontology from a OWL/RDF file. I've found that it's possible to execute a query through sparql_query/3, but it ...
1
vote
1answer
473 views

Ontology and the Web

I've been having trouble accessing an ontology that we built here via the web. I've been trying to understand sparql and as far as I can tell there's no real PHP support for ontologies yet. I was ...
2
votes
2answers
152 views

How to search information from Ontology?

I have developed an Ontology for University by using Protege and currently I used SPARQL for accessing data from this university ontology as I have installed Protege in my local machine but once I ...
0
votes
1answer
325 views

how to use sparql query in JSP for rdf over MySql database

Context: I have deployed Sesame workbench server in "Glass fish server" (netbeans) and uploaded my ontology in "MySql RDF store". Now I can see some tables created in my MySql database (connected to ...
5
votes
3answers
286 views

Measuring distances among classes in RDF/OWL graphs

Maybe someone could give me a hint. Is it possible to measure the distance between 2 concepts/classes that belong to the same ontology? For example, let's suppose I have an ontology with the ...
2
votes
1answer
118 views

Find location of person with SPARQL in Java

I get an ontology from: http://webmind.dico.unimi.it/care/locont-2.0.owl. It contains location, person, activity, etc. I want to find the location of person by SPARQL querying in Java. The result of ...
2
votes
2answers
193 views

Cannot extract RDF triple by locally defined predicate

Probably I just can't grasp some basic idea behind ontologies but here's my question. I'm trying to extract triples from an RDF storage (using 4store, but also tried XML ArmyKnife) with a SPARQL query ...
5
votes
1answer
386 views

How get DBpedia data in a specific language?

i tried this request http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?QueryClass=film&QueryString=transformers&MaxHits=1 but if i want to retrieve info in italian language? it there ...
1
vote
1answer
348 views

The SWRL rule doesn't apply on my ontology

I'm writing a diploma thesis about how does weather affect on people's health (meteoropathy). The ontology is shown in the picture in this link: ...
4
votes
1answer
612 views

how to extract synonyms from MeSH ontology?

In this level of my work, I need to extract a class synonyms from MeSH ontology. I am searching for the right syntax for the SPARQL query: how synonyms are they stored in MeSH? and how can I extract ...
3
votes
1answer
666 views

Sparql Query With Inferencing

i have some rdf & rdfs files and i want to use jena sparql implementation to query it and my code look like : //model of my rdf file Model model = ...
1
vote
2answers
256 views

OWL and SPARQL mini application

The subject says it all. I need a mini project or application ideas that are related to OWL (some ontology represented in RDF written in OWL/XML) and queried by SPARQL. I need to do this project in my ...
1
vote
1answer
875 views

Exception while using createOntologyModel

package tutorial; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import ...
0
votes
1answer
132 views

SPARQL Queries on Sub atomic particle ontology

I am attempting to write SPARQL queries on the ontology periodic.owl available from http://robertdavidstevens.wordpress.com/category/ontologies/ Please provide some sample queries on it that can I ...
1
vote
1answer
352 views

Annotating sensor data but no rdf:type

I'm annotating sensor observations using JENA, RDF and the W3C SSNXG's sensor ontology. I've created an individual of the SSNXG's SensingDevice using a local namespace for the individual. When I use ...
2
votes
2answers
293 views

how we can create a query based on SPARQL to see the value of some data type property?

I create this query: PREFIX VB: <http://VBnet#> SELECT ?x ?y WHERE { ?x VB:HasName ?y } HasName is one datatype property. When I run this query in Protege, system show me just the ...
0
votes
2answers
1k views

jena ontology api

i'm new to jena and protege.i did some stuff with these. i have some problems:: 1) Do i need to use sparql query to get the ontology classes,subclasses,property and values? or can do it with owl-api? ...
2
votes
2answers
540 views

Hibernate for ontologies?

does anybody know of a tool capable of doing for OWL ontologies what Hibernate does for relational databases, that is, from my point of view, abstract away the need to manually code SQL queries to ...
2
votes
5answers
904 views

Simplest SPARQL implementation for educational purposes?

I'd like to learn more about RDF/SPARQL implementation internals, but most of the frameworks are (necessarily) somewhat complicated by real-world performance and implementation consideratins. I am ...
1
vote
2answers
4k views

SPARQL query - Class and subclass give a class name and namespace

How can i get all the class properties and its sub classes with properties from an RDF datasource using SPARQL query given a class name and namespace?