DBpedia is a community effort to extract structured information from Wikipedia and to make this information available on the Web.
1
vote
1answer
20 views
ParserConfig error in Sesame 2.7 when trying to upload RDF files from DBpedia
I am trying to upload into my Sesame repository a set of RDF file coming from DBpedia. The problem is: for almost every RDF file, Sesame give the following error:
'whatever_file_is': 'some_value' was ...
0
votes
1answer
40 views
Jena Result set to String
I'm using jena to query dbpedia and I return a ResultSet, how can I make the ResultSet returned to a java String? I don't want it in JSON format.
0
votes
1answer
24 views
Error with retrieving data from dbpedia
Hey guys I've got a problem with my sparql query can anyone help me.
String queryString =
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>"+
"PREFIX rdf: ...
0
votes
0answers
12 views
Which is the best way to obtain data similar to Google Knowldge Graph
I need data which is similar to GKG primarily for Named Entity Recognition. Basically I want to use the context(extra information) behind an entity for entity recognition. What is the suggested way of ...
0
votes
1answer
28 views
retrieve list of mathematics categories from dbpedia?
Is there a way using SPARQL to retrieve all topics of in dpbedia?
http://dbpedia.org/snorql/
That is to say is there a way to extract all the subfields of the topics listed here:
...
0
votes
0answers
15 views
Using dbpedia spotlight with a local mediawiki (not instance of wikipedia)
I'm trying to use dbpedia spotlight to spot special terms (which is not included in dbpedia) by using a local mediawiki dump as an input instead of the default index and spotter.dict.
Any ideas will ...
1
vote
2answers
21 views
sparql empty result for dbpedia-owl:influenced property
I am trying to retrieve the value of the dbpedia-owl:influenced in this page e.g: Andy_Warhol
The query I write is:
PREFIX rsc : http://dbpedia.org/resource
PREFIX dbpedia-owl ...
2
votes
2answers
42 views
Which .nt file from the DBpedia dataset contains the triples about DBpedia classes?
I am working on a DBpedia dataset and using Apache Jena to execute SPARQL over a local Jena TDB dataset. I have downloaded only some of the files from DBpedia Downloads so that I could keep the size ...
0
votes
1answer
27 views
What is Sparql Query to get Company and its subidiary through dbpedia triple store
I am new to RDF
I am trying to get companies and number of its subsidaries through dbpedia
I started with writing below queries in sparql at http://dbpedia.org/sparql or DBpedia SPARQL Explorer
...
0
votes
1answer
27 views
Query dbpedia with SPARQL for films
I want to get data (movie title, director name, actor name and the wikipedia link) of all movies present on dbpedia.
I tried this query on http://dbpedia.org/snorql/.
SELECT ?film_title ?star_name ...
-1
votes
0answers
6 views
using Dbpedia through JAVA
I wanted to use dbpedia to extract all person , organization, countries , city names. i wanted to use them to build my knowledge base.
I am trying to do this in JAVA, please if someone can help me ...
0
votes
1answer
18 views
Director Filmography - all queries are returning empty
All, I'm trying to get a director's filmography from dbpedia:
Both the queries below (and other attempts not shown) return empty sets. Query below doesn't work:
PREFIX d: ...
2
votes
1answer
28 views
SPARQL query does not give all the results that are on dbpedia
I'm executing this query in http://dbpedia.org/snorql/:
Query:
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: ...
0
votes
0answers
42 views
extracting abstract and external wiki links from a dbpedia page using sparql
I have a query that finds the uri of websites which has information about sachin tendulkar. there are 2 columns in my result first is for uri and second is for little information. I want to add third ...
0
votes
0answers
36 views
Generate SPARQL query for DBpedia giving distinct result
I am using SPARQL for querying the DBpedia database. My first query was the following:
select ?s1 ( bif:search_excerpt ( bif:vector ( 'TENDULKAR', 'SACHIN' ) , ?o1 ) ) where
{
{
{
select ...
-1
votes
2answers
43 views
bif:contain error occurs when try to query dbpedia through my java program
the code is for querying dbpedia from java program and then displaying the result in html page
package jenaamem;
import com.hp.hpl.jena.query.Query;
import com.hp.hpl.jena.query.QueryExecution;
...
0
votes
1answer
78 views
Exception retrieving results in jena resultSet
I'm having some problems when querying DBpedia throught Jena. The exception is thrown when iterating over the resultSet in the nextSolution method. Here is the code:
ResultSet results = ...
0
votes
1answer
47 views
Read a remote equivalentClass of ontology in Jena
When I run "getEquivalentClass()" and my equivalentClass is remote (EX: http://dbpedia.org/data3/Film.rdf) raise error:
Cannot convert node http://dbpedia.org/data3/Film.rdf to OntClass: it does not ...
2
votes
2answers
77 views
How to get Dbpedia resource details using Jena?
After I query dbpedia over its Sparql endpoint, I get results as Jena ResourceImpl objects. Then how I can get details of this resource? For example if this resource is a person; how can I get his/her ...
0
votes
0answers
50 views
Getting linked data URLs for entities
Is there any proper APIs where linked data URLs can be obtained so that using these URLs, more information can be obtained. Even the basic principles outlines this e.g here. One good API that I came ...
0
votes
0answers
23 views
DBpedia resource name standard
Does DBpedia name have any standard or convention. By that, I mean e.g. United Kingdom have a resource name United_Kingdom. But I'm seeing that the fact of having an understore and have the two parts ...
1
vote
1answer
118 views
From jena QuerySolution to Model tdb rdf
I use dbpedia to obtain some specific results, and I want to store them in a local tdb. but i can't find a way to add the results to my local tdb.
package festifolk.tdb;
import ...
0
votes
1answer
32 views
Error in SPARQL Query
I'm getting an error with my SPARQL query but can't find it out:
Query
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: ...
0
votes
1answer
53 views
DBpedia, get country of a site having a latitude and longitude
I want to get the Country which contains a latitude and longitude. Currently, I have the query below which works,
SELECT DISTINCT ?lat,?long,?place WHERE {
:Taj_Mahal dbpprop:latitude ?lat .
...
0
votes
1answer
33 views
DBpedia, getting the direct or indirect types of Place
I want to get only the direct or indirect subclass of http://dbpedia.org/ontology/Place
SELECT DISTINCT ?type,?label WHERE {
:Mauritius rdf:type ?type .
?type rdfs:label ?label .
...
1
vote
0answers
42 views
dbpedia sparql search similar to dbpedia lookup facility
Dbpedia offers a look up facility like http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?QueryString=panda that returns a result set. Can the same result set be obtained by using sparql to query ...
1
vote
1answer
63 views
DBpedia Jena Query returning null
I'm just trying to run a small query on DBpedia, the query itself works, see it here, but I don't why its returning when doing so with Jena, I'm getting null.
String service = ...
1
vote
1answer
51 views
How to get the relationship between United Kingdom and England from DBpedia?
I'm trying to write a SPARQL query to obtain the relationship between the United Kingdom and England with no success: no result is returned, as you can see here:
SELECT ?property
WHERE {
...
0
votes
1answer
51 views
DBpedia Query: SnorQL VS SparQL VS QueryBuilder?
What are http://dbpedia.org/snorql/ and http://dbpedia.org/sparql/ and http://querybuilder.dbpedia.org/ ?
Both SnorQL VS SparQL seems to run the following code similarly :
SELECT ?resource ?value
...
0
votes
2answers
57 views
DBpedia : Get list of Chinese universities and their adresses to populate google map?
I'm trying to get list of Chinese universities and their adresses. The minimum being the City/Town name. I will use these addresses to populate a googlemap, fiddle here.
I saw interesting code such ...
1
vote
1answer
94 views
Query cities and their country from dbpedia
I'm trying to construct an ontology in OWL for countries and cities(If such an implementation already exist, please point it to me)
To get the data, I'm trying to use sparql with the following code:
...
0
votes
1answer
90 views
SPARQL - get list of places in one country
I'm new to SPARQL and would like some help in my learning.
I want to get latitude and longitude of several places (neighborhoods, cities, states, regions, rivers, monuments, ..) of my country: Brazil.
...
0
votes
0answers
35 views
Auto generated tags for the contents in .NET [closed]
I have many articles about important and known persons. Is there any solution to generate tags for each article? Where should I begin?
1
vote
1answer
89 views
Extract content from DBPedia's big dump file in .NET
I want to extract labels, abstracts, categories and relevant dates to each article from DBPedia dump file.
I'm using dotnetrdf and I want to save the extracted data to MS SQL database (I don't want ...
2
votes
1answer
26 views
Different result in DBPedia using WebClient and browser
I want to extract some information which exists in DBPedia. So, I've written an application using .NET's System.Net.WebClient which gets urls and returns the content of url in N-Triples format (plain ...
0
votes
0answers
16 views
Host DBpedia locally for categories
I've noticed you can download whole data dumps of dbpedia data but I'm not sure how to get to it from my php app. At the moment I need to access category info which I am currently doing remotely via ...
2
votes
1answer
46 views
How to make a sparql query with unicode letters?
I am querying the french dbpedia (http://fr.dbpedia.org/) with SPARQL.
I am using Python and SPARQLWrapper if it makes any difference.
This 1st query is working Ok.
PREFIX ...
0
votes
0answers
59 views
Avoiding duplicates in SPARQL with SELECT
I am trying to get a list of films published in 2013 querying DBpedia. For that I started with this query:
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: ...
3
votes
1answer
62 views
How to find cities with more than X population in a certain country
I'm trying to find cities in Denmark with more than 100 000 in population.
I can find all the cities in Denmark with this code:
SELECT ?s ?o
WHERE {
?s a ...
2
votes
1answer
62 views
SparQL - list cities
I'm trying to list all the cities in Denmark from Wikipedia/dbpedia by using SPARQL.
I've tried a lot of things and I can't get it to work. This is what I have come up with:
SELECT *
WHERE
{
...
0
votes
0answers
48 views
Connecting Linkedmdb and dbpedia via 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 ...
1
vote
1answer
51 views
How to get the complete list of pages titles from wikipedia ?
I want to get this list to later work on it for linquistic researches.
The API:Allpages is limited to 500 queries. I need them all (4millions).
Maybe attack it using dbpedia.
Any trick to do it ?
0
votes
1answer
42 views
Why Does Grouping Change the Semantics of a Query?
I do not quite understand the meaning of group patterns. From what I read in the specification, it should not make any difference whether I put graph patterns that are already in a group into a nested ...
1
vote
0answers
128 views
About DBPedia Access
I am very new to DBPedia and I don't know how to and from where to start. I did some research on this and from that what I understand is we can access the data using SPARQL query language (Apache ...
1
vote
1answer
82 views
How can I filter disambiguated names in dbpedia
I am trying to use the following SPARQL query to find the Rhône department in France.
SELECT * WHERE {
?x rdfs:label "Rhone"@en.
?x rdf:type dbpedia-owl:Place.
?x dbpedia-owl:abstract ...
-1
votes
2answers
133 views
Get all page titles on Wikipedia that contain a specific word
I am writing an "auto-wikifier" tool using HTML and JavaScript. For each word in the text to be wikified, I need to obtain a list of pages that contain that word (so that the matching phrases in the ...
0
votes
1answer
25 views
How to get permission to edit the ontology?
I'm trying to map some infoboxes from Wikipedia to the DBpedia ontology.
According to http://mappings.dbpedia.org/index.php/How_to_edit_the_DBpedia_Ontology
But I don't have permission to edit the ...
3
votes
4answers
194 views
How to run a sparQL query?
I discovered the SparQL syntax at the Mozilla Festival 12.
The demonstrator was using a proprietary web-based interface and I was wondering if there is open services or maybe (cross-platform) GUI ...
1
vote
1answer
96 views
Query city/state/country abstracts in English
I am trying to query city, state and country abstracts in English from DBpedia with mixed results. It seems to work well with City and Country but not with State.
SELECT * WHERE {
?x rdfs:label ...
0
votes
2answers
249 views
Query DBpedia to get meta-data for Books
I have a bunch of ISBN's. I want to query DBpedia and get the meta-data of the books.
I am unable to understand the SPARQL.
Can someone tell me how can I get the meta-data of a book from DBpedia in ...

