-
Notifications
You must be signed in to change notification settings - Fork 23
Description
Hi,
I am trying to create an RDF Export from a current Wikidata dump (20181105).
First I tried to use the toolkit client (v0.8.0) and I always got 31 triples, no matter what parameters I tried to use.
Now I am using the version 0.9.0 of the toolkit in eclipse, but I am getting some warnings and errors.
One Warning I am encountering for several language codes is:
Unknown Wikimedia language code "inh". Using this code in RDF now, but this might be wrong.
And for various properties I get the errors:
Count not export SomeValueSnak for property P1971: OWL range not known.
or
Could not fetch datatype of http://www.wikidata.org/entity/P883. Assuming type http://wikiba.se/ontology#String
Furthermore I am trying to filter the data by english and german using setLanguageFilter, but it has no effect. I added the following to the RdfSerializationExample but I get the same amount of triples with or without it:
Set<String> languageSet = new HashSet<String>();
languageSet.add("en");
languageSet.add("de");
dumpProcessingController.setLanguageFilter(languageSet);