Questions tagged [linkedmdb]

The Linked Movie Database (LinkedMDB) is a database of movie-related information exposed in RDF which can be queried using SPARQL.

LinkedMDB, the Linked Movie Database, is a database of movie-related information exposed in RDF which can be queried using SPARQL. Resources in LinkedMDB are interlinked with resources defined in other datasets, such as YAGO, DBpedia, flickr™ and the RDF Book Mashup. LinkedMDB won first prize at the LOD Triplification Challenge.

What questions should have this tag?

Questions about using the LinkedMDB dataset, either remotely or locally, should use this tag, as well as questions about accessing LinkedMDB and using the LinkedMDB vocabulary, should use this tag.

For more information

For more information:

29 questions
1
vote
1 answer

Connecting Linkedmdb and DBpedia via federated SPARQL queries

I ran the following query and got the data for movies and their corresponding DBpedia URI from linkedmdb. SELECT ?film ?label ?dbpediaLink WHERE { ?film rdf:type movie:film . ?film rdfs:label ?label . ?film owl:sameAs ?dbpediaLink …
Bonson
  • 1,418
  • 4
  • 18
  • 38
0
votes
1 answer

Federated queries on dbpedia and linkedmdb

I am writing a federated query to get the books based on films in dbpedia and in turn using the film name from dbpedia to retrieve the corresponding imdblink link for the same. I am getting an empty set when I add the service of linkedmdb. Here is…
VKB
  • 65
  • 1
  • 7
0
votes
2 answers

Parse error while using filter in linkedmdb SPARQL

I am trying to query 2 specific movies and their imdb pages with linkedmdb and it throws a parse error. I get a list of all movies when I remove the below line. How do I get links of a specific set. FILTER (str(?title) IN ("The Magician","Royal…
VKB
  • 65
  • 1
  • 7
0
votes
0 answers

Access LinkedMDB offline

I need to carry out an experiment that takes into consideration all movies of LinkedMDB including their predicates. LinkedMDB SPARQL endpoint is not very efficient, it gets overloaded easily and refuse connection after sending about 40 consecutive…
M20
  • 1,032
  • 2
  • 15
  • 34
0
votes
1 answer

Movie Poster for Linked Data

How to display the movie poster using linked data by utilizing OMDBApi or themoviedb.org (they have JSON). Anyone have any ideas?
0
votes
1 answer

SPARQL Query for linked data

I want to fetch Movies details from LinkedMDB along with corresponding same as links for DBPedia Datasets.I am writing following query: SELECT ?film ?label ?dbpediaLink WHERE { ?film rdf:type movie:film . ?film rdfs:label ?label . ?film…
0
votes
1 answer

How should I do, for getting the desired result from linkedmdb?

Will someone explain me this phenomenon? I am querying the endpoint http://www.linkedmdb.org/snorql with the SPARQL query: Get the list actors who have starred in a British Movie Q1: SELECT * WHERE { ?Film…
0
votes
1 answer

Save graph from URI

My question is how to save all the triples in my graph variable from URI. When I execute my code: IGraph g = new Graph(); g.LoadFromUri(new Uri("http://data.linkedmdb.org/page/film/14931")); I get only 2 triples in that graph, my question is how…
DynamicsNinja
  • 177
  • 1
  • 3
  • 17
0
votes
0 answers

LinkedMDB returns very few movies per country

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…
user1848018
  • 1,086
  • 1
  • 14
  • 33
0
votes
1 answer

LinkedMDB SPARQL results with fewer results than expected?

Slide 14 of Ontology Alignment Discovery using Linked Open Data says that there are 50,603 actors in the LinkedMDB dataset. Using the following query, I get 2500. Who is wrong here?, Is there something missing in the query? Why do the slides…
Suvimo
  • 240
  • 1
  • 6
  • 18
0
votes
1 answer

Is Linked MDB up-to-date?

When I try to look for The Machine and many other films in LinkedMDB, I'm not able to find them. I can get the film's IMDB URL and query for the foaf:page property with the SPARQL endpoint, using a query like this, but it returns no results. prefix…
Alessandro Suglia
  • 1,907
  • 1
  • 16
  • 23
0
votes
2 answers

read rdf file online using JENA

i have written this code for reading and rdf file online. but it doesn't work final String uri = "http://data.linkedmdb.org/page/film/1437"; final Model model = ModelFactory.createDefaultModel(); model.read(uri); model.write(System.out); Any help…
0
votes
1 answer

Get URI from resource in ResultSet

I am trying to get the URI from the a resource in Java, but it is always null. Right now, I am trying this: for ( ; rs.hasNext() ; ) { QuerySolution qs = rs.next(); System.out.println( qs.getLiteral("label")); System.out.println(…
miniHessel
  • 778
  • 4
  • 15
  • 39
-1
votes
1 answer

IMDB SPARQL Endpoint - Movies LIKE operator

I'm currently working with different SPARQL endpoints and looking to query the IMDB endpoint for movies by title. I have already come up with the following query for DBPedia. SELECT DISTINCT film_title WHERE { ?film_title rdf:type…
Fintan Kearney
  • 743
  • 7
  • 15
1
2