Re: [Dbpedia-discussion] Get Resource name and Category

2013-03-01 Thread Mohamed Morsey
Hi Hamza, On 03/02/2013 07:32 AM, Hamza Asad wrote: Dear all, I want to get list of all names of resources which is used for searching in DBPedia e.g Shahid_Afridi, Barrack_Obama, etc etc. How can i get that WHOLE list?? Also i want to get their categories e.g Kevin_Peterson belon

[Dbpedia-discussion] Get Resource name and Category

2013-03-01 Thread Hamza Asad
Dear all, I want to get list of all names of resources which is used for searching in DBPedia e.g Shahid_Afridi, Barrack_Obama, etc etc. How can i get that WHOLE list?? Also i want to get their categories e.g Kevin_Peterson belong to Athlete/Sports/cricketer categories. How and using wh

Re: [Dbpedia-discussion] Query parsing error

2013-03-01 Thread Martynas Jusevičius
Hey Amir, how did you come up with this syntax? OPTION is not part if standard SPARQL. Martynas On Mar 1, 2013 9:44 AM, "Amir Hossein Jadidinejad" wrote: > Hi, > check the following function: > public boolean isConceptType(String uri, String ctype) { > uri = "<" + uri + ">"; >

Re: [Dbpedia-discussion] Information Extraction using DBpedia

2013-03-01 Thread Jona Christopher Sahnwaldt
On Fri, Mar 1, 2013 at 9:53 AM, Amir Hossein Jadidinejad wrote: > It's great. But I have a problem. > Some instances such as: "http://dbpedia.org/page/Southern_Ocean"; is not > recognized as "Place"? That's because http://en.wikipedia.org/wiki/Southern_Ocean doesn't have an Infobox, just a set of

[Dbpedia-discussion] Bls: @devs: Please add Indonesian namespace

2013-03-01 Thread riko adi prasetya
Hi Pablo, Jona, Dimitris, and Hamza Thank you for responding my request. I hope I can try mapping for Indonesian nest week. Cheers, Riko Dari: Dimitris Kontokostas Kepada: Hamza Asad Cc: dbpedia-discussion Dikirim: Jumat, 1 Maret 2013 13:54 Judul: Re: [D

[Dbpedia-discussion] DBpedia-Live is down

2013-03-01 Thread Mohamed Morsey
Dear DBpedia users, The DBpedia-Live endpoint [1] will be down for a while due to maintenance issues. Sorry for any inconvenience. [1] http://live.dbpedia.org/sparql/ -- Kind Regards Mohamed Morsey Department of Computer Science University of Leipzig --

[Dbpedia-discussion] DBpedia-Live is down

2013-03-01 Thread Mohamed Morsey
Dear DBpedia users, The DBpedia-Live endpoint [1] will be down for a while due to maintenance issues. Sorry for any inconvenience. [1] http://live.dbpedia.org/sparql/ -- Kind Regards Mohamed Morsey Department of Computer Science University of Leipzig --

Re: [Dbpedia-discussion] Information Extraction using DBpedia

2013-03-01 Thread Pablo N. Mendes
Duck and cover! I sense a deep discussion about to start on whether an ocean is a place, a body of water, both of those things or neither of those things. :) What about avoiding the ontological discussion and just searching for things that have geolocation? Cheers Pablo On Fri, Mar 1, 2013 at 9:

Re: [Dbpedia-discussion] Information Extraction using DBpedia

2013-03-01 Thread Amir Hossein Jadidinejad
It's great. But I have a problem. Some instances such as: "http://dbpedia.org/page/Southern_Ocean"; is not recognized as "Place"? Is it posiible to change the following query to manage all locations? ASK {   {     ?thing a ?p .     ?p rdfs:subClassOf dbpedia-owl:Place OPTION (transitive).   } U

Re: [Dbpedia-discussion] Query parsing error

2013-03-01 Thread Andrea Di Menna
Ciao Amir, As far as I understood the transitive option is a Virtuoso extension, that means it is not defined in SPARQL 1.1 (used by Jena). That means Jena will fail with a parser exception when trying to parse your query. You might want to read [1] which could have a solution for you. Regards And

[Dbpedia-discussion] Query parsing error

2013-03-01 Thread Amir Hossein Jadidinejad
Hi, check the following function:     public boolean isConceptType(String uri, String ctype) {     uri = "<" + uri + ">";     boolean results = false;     String queryString = "PREFIX rdfs: \n" +     "PREFIX dbpedia-owl: