From: <lor...@us...> - 2014-02-20 12:42:10
|
Revision: 4232 http://sourceforge.net/p/dl-learner/code/4232 Author: lorenz_b Date: 2014-02-20 12:42:04 +0000 (Thu, 20 Feb 2014) Log Message: ----------- Added fixed version of DBpedia. Modified Paths: -------------- trunk/components-core/src/main/java/org/dllearner/algorithms/isle/metrics/AbstractRelevanceMetric.java trunk/components-core/src/main/java/org/dllearner/algorithms/qtl/QTL.java trunk/components-core/src/main/java/org/dllearner/kb/sparql/ConciseBoundedDescriptionGeneratorImpl.java trunk/components-core/src/main/java/org/dllearner/utilities/examples/AutomaticNegativeExampleFinderSPARQL2.java trunk/components-core/src/test/java/org/dllearner/algorithms/isle/DBpediaExperiment.java trunk/components-core/src/test/resources/org/dllearner/algorithms/isle/dbpedia_3.9.owl Modified: trunk/components-core/src/main/java/org/dllearner/algorithms/isle/metrics/AbstractRelevanceMetric.java =================================================================== --- trunk/components-core/src/main/java/org/dllearner/algorithms/isle/metrics/AbstractRelevanceMetric.java 2014-02-18 09:50:49 UTC (rev 4231) +++ trunk/components-core/src/main/java/org/dllearner/algorithms/isle/metrics/AbstractRelevanceMetric.java 2014-02-20 12:42:04 UTC (rev 4232) @@ -27,14 +27,18 @@ double min = Double.MAX_VALUE; double max = Double.MIN_VALUE; + Entity minE=null; + Entity maxE=null; for (Entity e : hmEntity2Score.keySet()) { double value = hmEntity2Score.get(e); if (value < min) { - min = value; + min = value;minE = e; } else if (value > max) { - max = value; + max = value;maxE = e; } } +// System.err.println("Max: " + max + "-" + maxE); +// System.err.println("Min: " + min + "-" + minE); // System.out.println( "min="+ dMin +" max="+ dMax ); for (Entity e : hmEntity2Score.keySet()) { double value = hmEntity2Score.get(e); Modified: trunk/components-core/src/main/java/org/dllearner/algorithms/qtl/QTL.java =================================================================== --- trunk/components-core/src/main/java/org/dllearner/algorithms/qtl/QTL.java 2014-02-18 09:50:49 UTC (rev 4231) +++ trunk/components-core/src/main/java/org/dllearner/algorithms/qtl/QTL.java 2014-02-20 12:42:04 UTC (rev 4232) @@ -237,8 +237,14 @@ lggInstances = getResources(lgg); nbr.setLGGInstances(lggInstances); - String question = nbr.getQuestion(lgg, negExampleTrees, getKnownResources()); + String question; + if(negExamples.isEmpty()){ + question = nbr.getQuestion(lgg, negExampleTrees, getKnownResources()); + } else { + question = nbr.getQuestion(lgg, negExampleTrees, getKnownResources()); + } + return question; } Modified: trunk/components-core/src/main/java/org/dllearner/kb/sparql/ConciseBoundedDescriptionGeneratorImpl.java =================================================================== --- trunk/components-core/src/main/java/org/dllearner/kb/sparql/ConciseBoundedDescriptionGeneratorImpl.java 2014-02-18 09:50:49 UTC (rev 4231) +++ trunk/components-core/src/main/java/org/dllearner/kb/sparql/ConciseBoundedDescriptionGeneratorImpl.java 2014-02-20 12:42:04 UTC (rev 4232) @@ -197,7 +197,7 @@ private String createNamespacesFilter(String targetVar){ String filter = ""; - if(namespaces != null){ + if(namespaces != null && !namespaces.isEmpty()){ filter += "FILTER("; for(Iterator<String> iter = namespaces.iterator(); iter.hasNext();){ String ns = iter.next(); @@ -213,10 +213,10 @@ public static void main(String[] args) { Logger.getRootLogger().setLevel(Level.DEBUG); - ConciseBoundedDescriptionGenerator cbdGen = new ConciseBoundedDescriptionGeneratorImpl(SparqlEndpoint.getEndpointDBpedia()); + ConciseBoundedDescriptionGenerator cbdGen = new ConciseBoundedDescriptionGeneratorImpl(SparqlEndpoint.getEndpointDBpediaLiveAKSW()); cbdGen = new CachingConciseBoundedDescriptionGenerator(cbdGen); // cbdGen.setRestrictToNamespaces(Arrays.asList(new String[]{"http://dbpedia.org/ontology/", RDF.getURI(), RDFS.getURI()})); - Model cbd = cbdGen.getConciseBoundedDescription("http://dbpedia.org/resource/Leipzig", 3); + Model cbd = cbdGen.getConciseBoundedDescription("http://dbpedia.org/resource/Leipzig", 1); System.out.println(cbd.size()); } Modified: trunk/components-core/src/main/java/org/dllearner/utilities/examples/AutomaticNegativeExampleFinderSPARQL2.java =================================================================== --- trunk/components-core/src/main/java/org/dllearner/utilities/examples/AutomaticNegativeExampleFinderSPARQL2.java 2014-02-18 09:50:49 UTC (rev 4231) +++ trunk/components-core/src/main/java/org/dllearner/utilities/examples/AutomaticNegativeExampleFinderSPARQL2.java 2014-02-20 12:42:04 UTC (rev 4232) @@ -23,6 +23,8 @@ import static org.dllearner.utilities.examples.AutomaticNegativeExampleFinderSPARQL2.Strategy.SIBLING; import static org.dllearner.utilities.examples.AutomaticNegativeExampleFinderSPARQL2.Strategy.SUPERCLASS; +import java.sql.SQLException; +import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.HashMap; @@ -31,8 +33,15 @@ import java.util.Set; import java.util.SortedSet; import java.util.TreeSet; +import java.util.concurrent.TimeUnit; -import org.dllearner.core.owl.ClassHierarchy; +import org.aksw.jena_sparql_api.cache.core.QueryExecutionFactoryCacheEx; +import org.aksw.jena_sparql_api.cache.extra.CacheCoreEx; +import org.aksw.jena_sparql_api.cache.extra.CacheCoreH2; +import org.aksw.jena_sparql_api.cache.extra.CacheEx; +import org.aksw.jena_sparql_api.cache.extra.CacheExImpl; +import org.aksw.jena_sparql_api.core.QueryExecutionFactory; +import org.aksw.jena_sparql_api.http.QueryExecutionFactoryHttp; import org.dllearner.core.owl.Description; import org.dllearner.core.owl.Individual; import org.dllearner.core.owl.NamedClass; @@ -50,6 +59,9 @@ import com.google.common.collect.Multiset; import com.google.common.collect.Multisets; import com.google.common.collect.Sets; +import com.hp.hpl.jena.query.QueryExecution; +import com.hp.hpl.jena.query.QuerySolution; +import com.hp.hpl.jena.query.ResultSet; /** * * Utility class for automatically retrieving negative examples from a @@ -67,21 +79,35 @@ SUPERCLASS, SIBLING, RANDOM; } - private SparqlEndpoint se; // for re-using existing queries private SPARQLReasoner sr; private String namespace; + private String cacheDirectory = "cache"; + private QueryExecutionFactory qef; public AutomaticNegativeExampleFinderSPARQL2(SparqlEndpoint se, SPARQLReasoner reasoner) { this(se, reasoner, null); } public AutomaticNegativeExampleFinderSPARQL2(SparqlEndpoint se, SPARQLReasoner reasoner, String namespace) { - this.se = se; this.sr = reasoner; this.namespace = namespace; + + qef = new QueryExecutionFactoryHttp(se.getURL().toString(), se.getDefaultGraphURIs()); + if(cacheDirectory != null){ + try { + long timeToLive = TimeUnit.DAYS.toMillis(30); + CacheCoreEx cacheBackend = CacheCoreH2.create(cacheDirectory, timeToLive, true); + CacheEx cacheFrontend = new CacheExImpl(cacheBackend); + qef = new QueryExecutionFactoryCacheEx(qef, cacheFrontend); + } catch (ClassNotFoundException e) { + e.printStackTrace(); + } catch (SQLException e) { + e.printStackTrace(); + } + } } public AutomaticNegativeExampleFinderSPARQL2(SparqlEndpoint se) { @@ -119,7 +145,7 @@ Multiset<NamedClass> types = HashMultiset.create(); types.add(classToDescribe); - return computeNegativeExamples(types, strategiesWithWeight, maxNrOfReturnedInstances); + return computeNegativeExamples(classToDescribe, types, strategiesWithWeight, maxNrOfReturnedInstances); } public SortedSet<Individual> getNegativeExamples(Set<Individual> positiveExamples, int limit) { @@ -147,10 +173,10 @@ //keep the most specific types keepMostSpecificClasses(types); - return computeNegativeExamples(types, strategiesWithWeight, maxNrOfReturnedInstances); + return computeNegativeExamples(null, types, strategiesWithWeight, maxNrOfReturnedInstances); } - private SortedSet<Individual> computeNegativeExamples(Multiset<NamedClass> positiveExamplesTypes, Map<Strategy, Double> strategiesWithWeight, int maxNrOfReturnedInstances) { + private SortedSet<Individual> computeNegativeExamples(NamedClass classToDescribe, Multiset<NamedClass> positiveExamplesTypes, Map<Strategy, Double> strategiesWithWeight, int maxNrOfReturnedInstances) { SortedSet<Individual> negativeExamples = new TreeSet<Individual>(); for (Entry<Strategy, Double> entry : strategiesWithWeight.entrySet()) { @@ -212,7 +238,29 @@ logger.info("Negative examples(" + superClassNegativeExamples.size() + "): " + superClassNegativeExamples); negativeExamples.addAll(superClassNegativeExamples); } else if(strategy == RANDOM){//get some random examples - String query = "SELECT ?s WHERE {?s a ?type. FILTER NOT EXIST{?s a <> }} ORDER BY RAND() LIMIT " + maxNrOfReturnedInstances; + logger.info("Applying random strategy..."); + SortedSet<Individual> randomNegativeExamples = new TreeSet<Individual>(); + String query = "SELECT DISTINCT ?s WHERE {?s a ?type."; + if(classToDescribe != null){ + query += "FILTER NOT EXISTS{?s a <" + classToDescribe + "> }"; + } else { + for (NamedClass nc : positiveExamplesTypes.elementSet()) { + + } + throw new UnsupportedOperationException("Currently it's not possible to get random examples for unknown class to describe."); + } + + query += "} ORDER BY RAND() LIMIT " + maxNrOfReturnedInstances; + QueryExecution qe = qef.createQueryExecution(query); + ResultSet rs = qe.execSelect(); + QuerySolution qs; + while(rs.hasNext()){ + qs = rs.next(); + randomNegativeExamples.add(new Individual(qs.getResource("s").getURI())); + } + randomNegativeExamples.removeAll(negativeExamples); + negativeExamples.addAll(new ArrayList<>(randomNegativeExamples).subList(0, Math.min(randomNegativeExamples.size(), maxNrOfReturnedInstances - negativeExamples.size()))); + logger.info("Negative examples(" + randomNegativeExamples.size() + "): " + randomNegativeExamples); } } return negativeExamples; Modified: trunk/components-core/src/test/java/org/dllearner/algorithms/isle/DBpediaExperiment.java =================================================================== --- trunk/components-core/src/test/java/org/dllearner/algorithms/isle/DBpediaExperiment.java 2014-02-18 09:50:49 UTC (rev 4231) +++ trunk/components-core/src/test/java/org/dllearner/algorithms/isle/DBpediaExperiment.java 2014-02-20 12:42:04 UTC (rev 4232) @@ -5,6 +5,7 @@ import static org.dllearner.utilities.examples.AutomaticNegativeExampleFinderSPARQL2.Strategy.SIBLING; import static org.dllearner.utilities.examples.AutomaticNegativeExampleFinderSPARQL2.Strategy.SUPERCLASS; +import static org.dllearner.utilities.examples.AutomaticNegativeExampleFinderSPARQL2.Strategy.RANDOM; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; @@ -84,6 +85,7 @@ import org.dllearner.refinementoperators.RhoDRDown; import org.dllearner.utilities.PrefixCCMap; import org.dllearner.utilities.examples.AutomaticNegativeExampleFinderSPARQL2; +import org.dllearner.utilities.examples.AutomaticNegativeExampleFinderSPARQL2.Strategy; import org.dllearner.utilities.owl.OWLAPIConverter; import org.ini4j.IniPreferences; import org.ini4j.InvalidFileFormatException; @@ -92,6 +94,7 @@ import org.semanticweb.owlapi.model.IRI; import org.semanticweb.owlapi.model.OWLAxiom; import org.semanticweb.owlapi.model.OWLClass; +import org.semanticweb.owlapi.model.OWLClassAssertionAxiom; import org.semanticweb.owlapi.model.OWLDataFactory; import org.semanticweb.owlapi.model.OWLDataPropertyRangeAxiom; import org.semanticweb.owlapi.model.OWLOntology; @@ -99,8 +102,10 @@ import org.semanticweb.owlapi.model.OWLOntologyManager; import org.semanticweb.owlapi.util.OWLEntityRemover; +import uk.ac.manchester.cs.owl.owlapi.OWLDataFactoryImpl; + +import com.clarkparsia.owlapi.explanation.PelletExplanation; import com.google.common.base.Charsets; -import com.google.common.collect.Lists; import com.google.common.collect.Sets; import com.google.common.hash.HashCode; import com.google.common.hash.HashFunction; @@ -149,17 +154,19 @@ private AutomaticNegativeExampleFinderSPARQL2 negativeExampleFinder; final int minNrOfPositiveExamples = 3; - final int maxNrOfPositiveExamples = 100; - final int maxNrOfNegativeExamples = 200; + final int maxNrOfPositiveExamples = 10; + final int maxNrOfNegativeExamples = 20; + List<Strategy> negExampleStrategies = Arrays.asList(SIBLING, SUPERCLASS); boolean posOnly = false; int maxCBDDepth = 1; //learning algorithm settings private int maxNrOfResults = 100; - private int maxExecutionTimeInSeconds = 60; + private int maxExecutionTimeInSeconds = 10; private double noiseInPercentage = 50; private boolean useNegation = false; private boolean useAllConstructor = false; + private int maxClassExpressionDepth = 4; String experimentsFolder = "experiments/isle/"; File resultsFolder = new File(experimentsFolder + "result/"); @@ -170,8 +177,9 @@ private List<RelevanceMetric> relevanceMetrics; - private PreparedStatement ps; - + private PreparedStatement addPS; + private PreparedStatement removePS; + public DBpediaExperiment() { try { @@ -193,13 +201,13 @@ relevanceMetrics = new ArrayList<>(); relevanceMetrics.add(new PMIRelevanceMetric(syntacticIndex)); - relevanceMetrics.add(new ChiSquareRelevanceMetric(syntacticIndex)); - relevanceMetrics.add(new DiceRelevanceMetric(syntacticIndex)); - relevanceMetrics.add(new JaccardRelevanceMetric(syntacticIndex)); - relevanceMetrics.add(new LLRRelevanceMetric(syntacticIndex)); - relevanceMetrics.add(new SCIRelevanceMetric(syntacticIndex)); - relevanceMetrics.add(new SignificantPMIRelevanceMetric(syntacticIndex, 0.5)); - relevanceMetrics.add(new TTestRelevanceMetric(syntacticIndex)); +// relevanceMetrics.add(new ChiSquareRelevanceMetric(syntacticIndex)); +// relevanceMetrics.add(new DiceRelevanceMetric(syntacticIndex)); +// relevanceMetrics.add(new JaccardRelevanceMetric(syntacticIndex)); +// relevanceMetrics.add(new LLRRelevanceMetric(syntacticIndex)); +// relevanceMetrics.add(new SCIRelevanceMetric(syntacticIndex)); +// relevanceMetrics.add(new SignificantPMIRelevanceMetric(syntacticIndex, 0.5)); +// relevanceMetrics.add(new TTestRelevanceMetric(syntacticIndex)); resultsFolder.mkdirs(); @@ -249,7 +257,10 @@ sql += ",?"; } sql += ")"; - ps = conn.prepareStatement(sql); + addPS = conn.prepareStatement(sql); + + sql = "DELETE FROM ISLE_Evaluation WHERE class=?"; + removePS = conn.prepareStatement(sql); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e) { @@ -291,7 +302,7 @@ @Override public void run() { try { - DBpediaExperiment.this.run(cls); + DBpediaExperiment.this.run(cls, true); } catch (Exception e) { logger.error("Error when learning class " + cls, e); } @@ -306,7 +317,16 @@ } } - public void run(NamedClass cls){ + public void run(NamedClass cls, boolean overwrite){ + //first of all, remove existing entries from database + if(overwrite){ + try { + removeFromDB(cls); + } catch (SQLException e) { + e.printStackTrace(); + } + } + logger.info("Learning description of class " + cls); //get some positive examples SortedSet<Individual> positiveExamples = getPositiveExamples(cls); @@ -322,6 +342,13 @@ //generate a sample of the knowledge base based on the examples OWLOntology knowledgebaseSample = loadKnowledgebaseSample(cls, Sets.union(positiveExamples, negativeExamples)); + + + PelletExplanation expGen = new PelletExplanation(knowledgebaseSample); + OWLDataFactory df = new OWLDataFactoryImpl(); + OWLClassAssertionAxiom ax = df.getOWLClassAssertionAxiom(df.getOWLClass(IRI.create("http://dbpedia.org/ontology/Person")), df.getOWLNamedIndividual(IRI.create("http://dbpedia.org/resource/Ontario_Australian_Football_League"))); + Set<OWLAxiom> explanation = expGen.getEntailmentExplanation(ax); + System.out.println(explanation); // try { // Thread.sleep(2000); // } catch (InterruptedException e) { @@ -372,6 +399,7 @@ ((ELLearningAlgorithm)la).setClassToDescribe(cls); ((ELLearningAlgorithm)la).setTreeSearchTimeSeconds(maxExecutionTimeInSeconds); ((ELLearningAlgorithm)la).setMaxNrOfResults(maxNrOfResults); + ((ELLearningAlgorithm)la).setMaxClassExpressionDepth(maxClassExpressionDepth); // la = new ELLearningAlgorithmDisjunctive(lp, reasoner); } else { //build CELOE la @@ -449,6 +477,8 @@ } } + + /** * Computes a better start class instead of owl:Thing. * @param operator @@ -550,7 +580,7 @@ private SortedSet<Individual> getNegativeExamples(NamedClass classToDescribe, Set<Individual> positiveExamples){ logger.info("Generating positive examples..."); - SortedSet<Individual> individuals = negativeExampleFinder.getNegativeExamples(classToDescribe, positiveExamples, Arrays.asList(SIBLING, SUPERCLASS), maxNrOfNegativeExamples); + SortedSet<Individual> individuals = negativeExampleFinder.getNegativeExamples(classToDescribe, positiveExamples, negExampleStrategies, maxNrOfNegativeExamples); logger.info("Done. Got " + individuals.size() + ": " + individuals); return individuals; } @@ -765,45 +795,41 @@ .hash(); String id = hc.toString(); double fMeasure = ((PosNegLPStandard)lp).getAccuracyOrTooWeakExact(ed.getDescription(), noiseInPercentage/100d); - ps.setString(1, id); - ps.setString(2, cls.getName()); - ps.setInt(3, position++); - ps.setString(4, expression); - ps.setDouble(5, fMeasure); - ps.setInt(6, ed.getDescriptionLength()); + addPS.setString(1, id); + addPS.setString(2, cls.getName()); + addPS.setInt(3, position++); + addPS.setString(4, expression); + addPS.setDouble(5, fMeasure); + addPS.setInt(6, ed.getDescriptionLength()); int col = 7; for (RelevanceMetric metric : relevanceMetrics) { double relevanceScore = getRelevanceScore(ed.getDescription(), entityRelevances.get(metric)); - ps.setDouble(col++, relevanceScore); + addPS.setDouble(col++, relevanceScore); } - ps.setString(col, render(new EquivalentClassesAxiom(cls, ed.getDescription()))); + addPS.setString(col, render(new EquivalentClassesAxiom(cls, ed.getDescription()))); - ps.addBatch(); + addPS.addBatch(); } - ps.executeBatch(); + addPS.executeBatch(); } + private synchronized void removeFromDB(NamedClass cls) throws SQLException{ + removePS.setString(1, cls.getName()); + removePS.execute(); + } + public static void main(String[] args) throws Exception { -// ToStringRenderer.getInstance().setRenderer(new DLSyntaxObjectRenderer()); -// String cls = "http://dbpedia.org/ontology/Astronaut"; -// OWLDataFactory df = new OWLDataFactoryImpl(); -// OWLAxiom pattern = df.getOWLSubClassOfAxiom( -// df.getOWLClass(IRI.create("http://dllearner.org/pattern/A")), -// df.getOWLObjectIntersectionOf( -// df.getOWLClass(IRI.create("http://dllearner.org/pattern/B")), -// df.getOWLObjectSomeValuesFrom( -// df.getOWLObjectProperty(IRI.create("http://dllearner.org/pattern/p")), -// df.getOWLClass(IRI.create("http://dllearner.org/pattern/C"))))); -// PatternBasedAxiomLearningAlgorithm la = new PatternBasedAxiomLearningAlgorithm(new SparqlEndpointKS(SparqlEndpoint.getEndpointDBpedia()), "cache", FragmentExtractionStrategy.INDIVIDUALS); -// la.setClass(new NamedClass(cls)); -// la.setPattern(DLLearnerAxiomConvertVisitor.getDLLearnerAxiom(pattern)); -// la.start(); - + DBpediaExperiment experiment = new DBpediaExperiment(); long start = System.currentTimeMillis(); -// new DBpediaExperiment().run(); - new DBpediaExperiment().run(new NamedClass("http://dbpedia.org/ontology/Astronaut")); + if(args.length == 1){ + List<String> lines = Files.readLines(new File(args[0]), Charsets.UTF_8); + for (String line : lines) { + experiment.run(new NamedClass(line.trim()), true); + } + } else { + experiment.run(); + } long end = System.currentTimeMillis(); logger.info("Operation took " + (end - start) + "ms"); - } } Modified: trunk/components-core/src/test/resources/org/dllearner/algorithms/isle/dbpedia_3.9.owl =================================================================== --- trunk/components-core/src/test/resources/org/dllearner/algorithms/isle/dbpedia_3.9.owl 2014-02-18 09:50:49 UTC (rev 4231) +++ trunk/components-core/src/test/resources/org/dllearner/algorithms/isle/dbpedia_3.9.owl 2014-02-20 12:42:04 UTC (rev 4232) @@ -1,20914 +1,33403 @@ -<rdf:RDF - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:owl="http://www.w3.org/2002/07/owl#" - xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns="http://dbpedia.org/ontology/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" > - <rdf:Description rdf:about="http://dbpedia.org/ontology/oclc"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/WrittenWork"/> - <rdfs:comment xml:lang="en">Online Computer Library Center number</rdfs:comment> - <rdfs:label xml:lang="en">OCLC</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/foundingDate"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/> - <rdfs:label xml:lang="de">Gründungsdatum</rdfs:label> - <rdfs:label xml:lang="pl">data założenia</rdfs:label> - <rdfs:label xml:lang="ja">創立日</rdfs:label> - <rdfs:label xml:lang="en">founding date</rdfs:label> - <rdfs:label xml:lang="el">ημερομηνία ίδρυσης</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/secondPopularVote"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Person"/> - <rdfs:label xml:lang="en">secondPopularVote</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/costumeDesigner"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Person"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Film"/> - <rdfs:comment xml:lang="en">the person who is responsible for the film costume design</rdfs:comment> - <rdfs:label xml:lang="it">costumista</rdfs:label> - <rdfs:label xml:lang="en">costume designer</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/nisCode"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:comment xml:lang="en">Indexing code used by the Belgium National Statistical Institute to identify populated places.</rdfs:comment> - <rdfs:label xml:lang="en">NIS code</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/kanjiName"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">kanji name</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/MotorcycleRider"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Athlete"/> - <rdfs:label xml:lang="el">μοτοσυκλετιστής</rdfs:label> - <rdfs:label xml:lang="en">motorcycle rider</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/englishName"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Settlement"/> - <rdfs:label xml:lang="en">English name</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/approximateCalories"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Food"/> - <rdfs:comment xml:lang="el">Kατά προσέγγιση θερμίδες ανά μερίδα.</rdfs:comment> - <rdfs:comment xml:lang="en">Approximate calories per serving.</rdfs:comment> - <rdfs:label xml:lang="el">κατά προσέγγιση θερμίδες (J)</rdfs:label> - <rdfs:label xml:lang="en">approximate calories (J)</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/industry"> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Company"/> - <rdfs:label xml:lang="fr">industrie</rdfs:label> - <rdfs:label xml:lang="en">industry</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Curler"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Athlete"/> - <rdfs:label xml:lang="en">curler</rdfs:label> - <rdfs:label xml:lang="nl">curlingspeler</rdfs:label> - <rdfs:label xml:lang="el">μπικουτί</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/conservationStatus"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Species"/> - <rdfs:label xml:lang="ja">保全状況</rdfs:label> - <rdfs:label xml:lang="en">conservation status</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/endDate"> - <owl:equivalentProperty rdf:resource="http://schema.org/endDate"/> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Event"/> - <rdfs:comment xml:lang="en">The end date of the event.</rdfs:comment> - <rdfs:label xml:lang="es">fecha de fin</rdfs:label> - <rdfs:label xml:lang="fr">date de fin</rdfs:label> - <rdfs:label xml:lang="nl">einddatum</rdfs:label> - <rdfs:label xml:lang="en">end date</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/designCompany"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Company"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/MeanOfTransportation"/> - <rdfs:label xml:lang="en">designer company</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Priest"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Cleric"/> - <rdfs:label xml:lang="de">priester</rdfs:label> - <rdfs:label xml:lang="nl">priester</rdfs:label> - <rdfs:label xml:lang="ja">司祭</rdfs:label> - <rdfs:label xml:lang="it">prete</rdfs:label> - <rdfs:label xml:lang="en">priest</rdfs:label> - <rdfs:label xml:lang="fr">prêtre</rdfs:label> - <rdfs:label xml:lang="el">παπάς</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/highestMountain"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Mountain"/> - <rdfs:label xml:lang="en">highest mountain</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/careerPoints"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/FormulaOneRacer"/> - <rdfs:label xml:lang="en">career points</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/leader"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Person"/> - <rdfs:label xml:lang="pt">lider</rdfs:label> - <rdfs:label xml:lang="el">ηγέτης</rdfs:label> - <rdfs:label xml:lang="nl">leider</rdfs:label> - <rdfs:label xml:lang="en">leader</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/season"> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/SoccerClub"/> - <rdfs:label xml:lang="el">σαιζόν</rdfs:label> - <rdfs:label xml:lang="en">season</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/budgetYear"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Place"/> - <rdfs:label xml:lang="en">budget year</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Locality"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">Locality</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Dog"> - <owl:disjointWith rdf:resource="http://dbpedia.org/ontology/Fish"/> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Mammal"/> - <rdfs:label xml:lang="nl">hond</rdfs:label> - <rdfs:label xml:lang="de">Hund</rdfs:label> - <rdfs:label xml:lang="fr">chien</rdfs:label> - <rdfs:label xml:lang="en">dog</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/governmentType"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/GovernmentType"/> - <rdfs:comment xml:lang="en">broadly, the type of structure of its government</rdfs:comment> - <rdfs:label xml:lang="pt">tipo de governo</rdfs:label> - <rdfs:label xml:lang="nl">staatsvorm</rdfs:label> - <rdfs:label xml:lang="en">government type</rdfs:label> - <rdfs:label xml:lang="de">Staatsform</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/startYearOfSales"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gYear"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Sales"/> - <rdfs:label xml:lang="en">start year of sales</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/nndbId"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Person"/> - <rdfs:label xml:lang="en">NNDB id</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/RaceTrack"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/SportFacility"/> - <rdfs:label xml:lang="fr">circuit de course</rdfs:label> - <rdfs:label xml:lang="el">πίστα αγώνων</rdfs:label> - <rdfs:label xml:lang="en">race track</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/mouthState"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/River"/> - <rdfs:label xml:lang="en">mouth state</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/officialLanguage"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Language"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">official language</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/visitorStatisticsAsOf"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gYear"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/ArchitecturalStructure"/> - <rdfs:comment xml:lang="en">Year visitor information was gathered.</rdfs:comment> - <rdfs:label xml:lang="en">visitor statistics as of</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/diseasesdb"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Disease"/> - <rdfs:label xml:lang="ja">DiseasesDB</rdfs:label> - <rdfs:label xml:lang="nl">DiseasesDB</rdfs:label> - <rdfs:label xml:lang="en">DiseasesDB</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/serviceNumber"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/MilitaryPerson"/> - <rdfs:comment xml:lang="en">The service number held by the individual during military service.</rdfs:comment> - <rdfs:label xml:lang="en">service number</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/notifyDate"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/SiteOfSpecialScientificInterest"/> - <rdfs:label xml:lang="en">notify date</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/cmykCoordinateMagenta"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Colour"/> - <rdfs:label xml:lang="en">magenta coordinate in the CMYK space</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/namedAfter"> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/SpaceShuttle"/> - <rdfs:label xml:lang="en">named after</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/musicType"> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/MusicalWork"/> - <rdfs:comment xml:lang="nl">Type is te algemeen. We moeten soorten muziek van soorten gebouwen kunnen onderscheiden</rdfs:comment> - <rdfs:comment xml:lang="en">Type is too general. We should be able to distinguish types of music from types of architecture</rdfs:comment> - <rdfs:label xml:lang="nl">soort muziekwerk</rdfs:label> - <rdfs:label xml:lang="en">musicType</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Judge"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Person"/> - <rdfs:label xml:lang="de">richter</rdfs:label> - <rdfs:label xml:lang="nl">rechter</rdfs:label> - <rdfs:label xml:lang="ja">裁判官</rdfs:label> - <rdfs:label xml:lang="it">giudice</rdfs:label> - <rdfs:label xml:lang="en">judge</rdfs:label> - <rdfs:label xml:lang="fr">juge</rdfs:label> - <rdfs:label xml:lang="el">δικαστής</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/alpsSubgroup"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/MountainRange"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Mountain"/> - <rdfs:comment xml:lang="en">the Alps subgroup to which the mountain belongs, according to the SOIUSA classification</rdfs:comment> - <rdfs:label xml:lang="it">sottogruppo alpino</rdfs:label> - <rdfs:label xml:lang="el">υποομάδα των άλπεων</rdfs:label> - <rdfs:label xml:lang="en">Alps subgroup</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/sharingOutPopulation"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">sharing out population</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/goldenCalfAward"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Award"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Actor"/> - <rdfs:label xml:lang="en">Golden Calf Award</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/WorldHeritageSite"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Place"/> - <rdfs:comment xml:lang="en">A UNESCO World Heritage Site is a site (such as a forest, mountain, lake, desert, monument, building, complex, or city) that is on the list that is maintained by the international World Heritage Programme administered by the UNESCO World Heritage Committee, composed of 21 state parties which are elected by their General Assembly for a four-year term. A World Heritage Site is a place of either cultural or physical significance.</rdfs:comment> - <rdfs:label xml:lang="ko">세계유산</rdfs:label> - <rdfs:label xml:lang="ja">世界遺産</rdfs:label> - <rdfs:label xml:lang="en">World Heritage Site</rdfs:label> - <rdfs:label xml:lang="fr">site du patrimoine mondial</rdfs:label> - <rdfs:label xml:lang="el">Μνημείο Παγκόσμιας Πολιτιστικής Κληρονομιάς (Πληροφορίες ΠΠΚ)</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/explorer"> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Galaxy"/> - <rdfs:label xml:lang="tr">kaşif</rdfs:label> - <rdfs:label xml:lang="en">explorer</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/licenceNumberLabel"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">licence number label</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/NationalFootballLeagueSeason"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/FootballLeagueSeason"/> - <rdfs:label xml:lang="en">national football league season</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/nationalTopographicSystemMapNumber"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Place"/> - <rdfs:label xml:lang="en">National Topographic System map number</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/WomensTennisAssociationTournament"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/SportsEvent"/> - <rdfs:label xml:lang="fr">Tournoi de la Women's Tennis Association</rdfs:label> - <rdfs:label xml:lang="en">Women's Tennis Association tournament</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/isPeerReviewed"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/AcademicJournal"/> - <rdfs:comment xml:lang="en">In academia peer review is often used to determine an academic papers suitability for publication.</rdfs:comment> - <rdfs:label xml:lang="en">is peer reviewed</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/redSkiPisteNumber"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Place"/> - <rdfs:label xml:lang="en">red ski piste number</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Station"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Infrastructure"/> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <rdfs:label xml:lang="pt">estação</rdfs:label> - <rdfs:comment xml:lang="en">Public transport station (eg. railway station, metro station, bus station).</rdfs:comment> - <rdfs:label xml:lang="nl">station</rdfs:label> - <rdfs:label xml:lang="en">station</rdfs:label> - <rdfs:label xml:lang="fr">station</rdfs:label> - <rdfs:label xml:lang="el">Σταθμός</rdfs:label> - <rdfs:label xml:lang="ja">駅</rdfs:label> - <rdfs:label xml:lang="ru">станция</rdfs:label> - <rdfs:comment xml:lang="ru">Остановка общественного транспорта (например: железнодорожная станция, станция метро, автостанция).</rdfs:comment> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/runwayDesignation"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Airport"/> - <rdfs:label xml:lang="en">designation of runway</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/SpaceMission/lunarEvaTime"> - <rdfs:range rdf:resource="http://dbpedia.org/datatype/hour"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/SpaceMission"/> - <rdfs:label xml:lang="en">lunar EVA time (ω)</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/year"> - <rdfs:label xml:lang="es">año</rdfs:label> - <rdfs:label xml:lang="nl">jaar</rdfs:label> - <rdfs:label xml:lang="fr">année</rdfs:label> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Sales"/> - <rdfs:label xml:lang="el">έτος</rdfs:label> - <rdfs:label xml:lang="en">year</rdfs:label> - <rdfs:label xml:lang="it">anno</rdfs:label> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gYear"/> - <rdfs:label xml:lang="de">Jahr</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/center"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/NorwaySettlement"/> - <rdfs:label xml:lang="en">norwegian center</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/dateCompleted"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Canal"/> - <rdfs:label xml:lang="el">ολοκλήρωση</rdfs:label> - <rdfs:label xml:lang="en">date completed</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/sardinianName"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">city sardinian name</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Tunnel"> - <rdfs:label xml:lang="ja">トンネル</rdfs:label> - <rdfs:comment xml:lang="el">Ένα τούνελ μπορεί να είναι για πεζούς ή για αυτοκινητόδρομους,για σιδηρόδρομους,ή για κανάλια στο νερό.Μερικά τούνελ είναι υδραγωγεία για να παρέχουν νερό προς κατανάλωση ή για υδροηλεκτικούς σταθμούς ή είναι υπόνομοι.</rdfs:comment> - <rdfs:comment xml:lang="fr">Un tunnel est une galerie souterraine livrant passage à une voie de communication (chemin de fer, canal, route, chemin piétonnier). (http://fr.wikipedia.org/wiki/Tunnel).</rdfs:comment> - <rdfs:comment xml:lang="en">A tunnel may be for foot or vehicular road traffic, for rail traffic, or for a canal. Some tunnels are aqueducts to supply water for consumption or for hydroelectric stations or are sewers (http://en.wikipedia.org/wiki/Tunnel).</rdfs:comment> - <rdfs:label xml:lang="nl">tunnel</rdfs:label> - <rdfs:label xml:lang="en">tunnel</rdfs:label> - <rdfs:label xml:lang="fr">tunnel</rdfs:label> - <rdfs:label xml:lang="de">Tunnel</rdfs:label> - <rdfs:comment xml:lang="de">Ein Tunnel (auch Tunell) ist eine künstliche Passage, die Berge, Gewässer oder andere Hindernisse (in der Regel als Verkehrsweg) unterquert (http://de.wikipedia.org/wiki/Tunnel).</rdfs:comment> - <rdfs:label xml:lang="el">τούνελ</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/RouteOfTransportation"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/championInDoubleMale"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Athlete"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/SportsEvent"/> - <rdfs:comment xml:lang="en">winner of a competition in the male double session (as in tennis)</rdfs:comment> - <rdfs:label xml:lang="es">Campeón en doble hombres</rdfs:label> - <rdfs:label xml:lang="fr">champion en double hommes</rdfs:label> - <rdfs:label xml:lang="en">champion in double male</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/port1UndockingDate"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Spacecraft"/> - <rdfs:label xml:lang="en">port1 undocking date</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/mayorArticle"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Place"/> - <rdfs:label xml:lang="en">mayor article</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/MouseGene"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Gene"/> - <rdfs:label xml:lang="ja">マウス遺伝子</rdfs:label> - <rdfs:label xml:lang="el">γονίδιο ποντικιού</rdfs:label> - <rdfs:label xml:lang="en">MouseGene</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/previousPopulationTotal"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">previous population total</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/crownDependency"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/City"/> - <rdfs:label xml:lang="en">crown dependency</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/procedure"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Case"/> - <rdfs:comment xml:lang="nl">De naam die verwijst naar de formele definitie van een verzameling stappen die in de juiste volgorde leiden tot de afronding van de zaak</rdfs:comment> - <rdfs:comment xml:lang="en">The name designating a formal collection of steps to be taken to complete the case</rdfs:comment> - <rdfs:label xml:lang="nl">procedure</rdfs:label> - <rdfs:label xml:lang="en">procedure</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/canton"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Settlement"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Settlement"/> - <rdfs:label xml:lang="fr">canton</rdfs:label> - <rdfs:label xml:lang="nl">kanton</rdfs:label> - <rdfs:label xml:lang="en">canton</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/pluviometry"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="en">pluviometry</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/doctoralStudent"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Person"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Scientist"/> - <rdfs:label xml:lang="nl">doctoraalstudent</rdfs:label> - <rdfs:label xml:lang="el">διδακτορικοί_φοιτητές</rdfs:label> - <rdfs:label xml:lang="en">doctoral student</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/GivenName"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Name"/> - <rdfs:label xml:lang="de">Vorname</rdfs:label> - <rdfs:label xml:lang="pl">imię</rdfs:label> - <rdfs:label xml:lang="nl">voornaam</rdfs:label> - <rdfs:label xml:lang="ja">名</rdfs:label> - <rdfs:label xml:lang="en">given name</rdfs:label> - <rdfs:label xml:lang="fr">prénom</rdfs:label> - <rdfs:label xml:lang="el">όνομα</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/ascentDate"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gYear"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Mountain"/> - <rdfs:label xml:lang="el">ημερομηνία ανάβασης</rdfs:label> - <rdfs:label xml:lang="en">access date</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/spokenIn"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Language"/> - <rdfs:label xml:lang="nl">gesproken in</rdfs:label> - <rdfs:label xml:lang="en">spoken in</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/shape"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Community"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Intercommunality"/> - <rdfs:label xml:lang="en">intercommunality shape</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/OldTerritory"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Territory"/> - <rdfs:label xml:lang="en">old territory</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/winsAtLPGA"> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/GolfPlayer"/> - <rdfs:label xml:lang="en">wins at LPGA</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/mouthPlace"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/River"/> - <rdfs:label xml:lang="en">mouth place</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/CanadianFootballPlayer"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/GridironFootballPlayer"/> - <rdfs:label xml:lang="pt">jogador de futebol canadense</rdfs:label> - <rdfs:label xml:lang="it">giocatore di football canadese</rdfs:label> - <rdfs:label xml:lang="en">canadian football player</rdfs:label> - <rdfs:label xml:lang="fr">joueur de football canadien</rdfs:label> - <rdfs:label xml:lang="el">καναδός παίκτης ποδοσφαίρου</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/requirement"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:label xml:lang="en">requirement</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/reservations"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Restaurant"/> - <rdfs:comment xml:lang="en">Are reservations required for the establishment or event?</rdfs:comment> - <rdfs:label xml:lang="en">reservations</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/campusType"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/School"/> - <rdfs:label xml:lang="en">campus type</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/PrimeMinister"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/Politician"/> - <rdfs:label xml:lang="de">Premierminister</rdfs:label> - <rdfs:label xml:lang="nl">eerste minister</rdfs:label> - <rdfs:label xml:lang="en">prime minister</rdfs:label> - <rdfs:label xml:lang="fr">premier ministre</rdfs:label> - <rdfs:label xml:lang="el">πρωθυπουργός</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/lifeExpectancy"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/PopulatedPlace"/> - <rdfs:label xml:lang="pt">expectativa de vida</rdfs:label> - <rdfs:label xml:lang="en">life expectancy</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/Race"> - <rdfs:subClassOf rdf:resource="http://dbpedia.org/ontology/SportsEvent"/> - <rdfs:label xml:lang="de">Rennen</rdfs:label> - <rdfs:label xml:lang="ja">レース</rdfs:label> - <rdfs:label xml:lang="en">race</rdfs:label> - <rdfs:label xml:lang="fr">course</rdfs:label> - <rdfs:label xml:lang="el">αγώνας</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/GeopoliticalOrganisation/areaMetro"> - <rdfs:range rdf:resource="http://dbpedia.org/datatype/squareKilometre"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/GeopoliticalOrganisation"/> - <rdfs:label xml:lang="el">περιοχή μετρό (km2)</rdfs:label> - <rdfs:label xml:lang="en">area metro (km2)</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/authorityMandate"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Place"/> - <rdfs:label xml:lang="en">authority mandate</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/patron"> - <rdfs:range rdf:resource="http://dbpedia.org/ontology/Person"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/MilitaryUnit"/> - <rdfs:label xml:lang="pt">patrono</rdfs:label> - <rdfs:label xml:lang="en">patron</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/pccSecretary"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/> - <rdfs:label xml:lang="en">pcc secretary</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/serviceEndDate"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/MilitaryPerson"/> - <rdfs:label xml:lang="en">service end date</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/> - </rdf:Description> - <rdf:Description rdf:about="http://dbpedia.org/ontology/beatifiedDate"> - <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/> - <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Saint"/> - <rdfs:label xml:lang="nl">zalig verklaard datum</rdfs:label> - <rdfs:label xml:lang="en">beatified date</rdfs:label> - <rdf:type rdf:resource="http://www.w3.org... [truncated message content] |