Hi, I'm trying to get the german labels of "http://dbpedia.org/resource"s, like http://dbpedia.org/resource/Apple_Inc.
Attempt 1: I tried the following SPARQL query, but it doesn't return any results after a very long execution time and displays a white page. (Tried this with the SPARQL web interface as well as Jena for http://[live.]dbpedia.org/sparql) SELECT ?s ?label WHERE { ?s rdfs:label ?label . FILTER (lang(?label) = 'de') } LIMIT 10 OFFSET X Attempt 2: Download the DBpedia 3.6 Titles file for German. But this file only contains 13.4K labels, compared to the 8M of the english one. Attempt 3: Download the DBpedia 3.7 Titles file for German. But the problem with this file is, that it uses URI's which are written in German and therefore not mappable to the ones used in my case, or does it? Attempt 4: Using the german dbpedia (the SPARQL endpoint) failed due to missing rdf:type statements. I want only labels from dbp:Organization/Person/Location. Attempt 5: Querying each resource like select ?label where { <http://dbpedia.org/resource/Apple_Inc.> rdfs:label ?label }. Since I do have about 500k URI's I need the labels for, I would rather skip this attempt. Any ideas on how to get the labels would be greatly appreciated! Cheers, Daniel ------------------------------------------------------------------------------ Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "Love Thy Logs" t-shirt when you download Logger. Secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsisghtdev2dev _______________________________________________ Dbpedia-discussion mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dbpedia-discussion
