Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 this query should be something like this:

("Ali" is located in "Kitchen")

Could someone help me with this query?

share|improve this question

1 Answer

Off the top of my head, you'll need something like SELECT { "Ali" ?p ?o }. Then you'll have to restrict ?p to relationships that concern location. Here is a link to some examples; I hope you will find it useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.