why does dbpedia is using multiple vocab for same attributes. I have to get data of all possible movies. for each movie I have observered that it has dbpedia-owl and dbpprop vocab for producers, director and so on.. while retrieving the attribute with following query:

I'll have page id of each movie and then I'll retrieve stars and producers. For some think dbpedia-owl works and for some dbpprop works.

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

PREFIX foaf: <http://xmlns.com/foaf/0.1/>

SELECT ?star_name 
WHERE { 
<http://dbpedia.org/resource/Goal_III:_Taking_on_the_World> dbpedia-owl:starring ?star.
?star foaf:name ?star_name 
}

I am puzzled about it. I have to write a code in python to run this query for each movie. hence every time I'll have to check that it result is null then run for other vocab

link|improve this question

40% accept rate
3  
You've asked 6 previous questions that have answers, but you haven't accepted any of them. You need to accept some answers. Please see meta.stackoverflow.com/questions/5234/… – Inuyasha Dec 18 '11 at 18:45
feedback

1 Answer

DBPedia's data is extracted using a mapping based language from the info boxes you see on the corresponding wikipedia pages. Different mappings are used for different info boxes so two different types of resource may be mapped completely differently which is perfectly logical if you think about it.

Now the problem you are talking about is that two resources of the same type having the same data mapped differently. I suspect (though can't confirm because you didn't give examples of two movies which map properties differently) that the problem here is the data in Wikipedia. It may be that there is more than one way to express the information you are interested in within an info box and that the mapping for the info box maps differently for the different ways. This isn't ideal but Wikipedia does not have lovely clean data so you shouldn't expect DBPedia to have clean data either.

You may consider asking a question on the DBPedia mailing list at dbpedia-discussion@lists.sf.net about this to try and find out why this happens as they will be better placed to help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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