I am trying to get a list of movies per country (mainly China, Japan, Korea). I wanted to try out the LinkedMDB so i ran the following simple SPARQL
select distinct ?countryName where {
?film a movie:film ; movie:country ?country .
?country rdfs:label ?countryName .
}
The results could be found here results It is
"Saudi Arabia (Country)"
"Mozambique (Country)"
"Madagascar (Country)"
"Afghanistan (Country)"
"Pakistan (Country)"
"Sri Lanka (Country)"
"Bhutan (Country)"
"India (Country)"
1- Am I missing something or the dataset coverage per country is poor?
2- What other SPARQL end point sources I could add (besides dbpedia)?
P.S. DBPedia covergae was fairly poor as well (Only 76 movies, Chinese Films in Mandarin)