Overview

This ontoterminology models philosophers, the works they wrote, the schools they belonged to, and their positioning in space and time — birthplace, places they stayed, century of activity. Works are linked to one another through a mentions relation, so you can ask which of Plato's dialogues mention Hippias of Elis and who else appears alongside him.

It builds on a version developed for the KELKIP project.

Scope

Period coveredRecorded per philosopher as a century of activity rather than as a single range.
RegionAncient Greece and China
Modelled asOntoterminology
LanguagesEnglish, Ancient Greek, Modern Greek, Mandarin Chinese
Built withTedi ontoTerminology Editor. See TEDI documentation
SourcesPhilosophical corpus with Perseus references; extends work from the KELKIP project

Access the data

Query it through the SPARQL endpoint using this named graph:

https://triplestore.talos-ai4ssh.uoc.gr:8890/datasets/Ancient-Greek-Chinese-Philosophers-v1

Ways in

The .otb file opens in TEDI; the .rdf file opens in Protégé, and can be visualised with WebVOWL.

Example queries

Which Ancient Greek philosophers were born or stayed in Athens?

Returns each philosopher with their school and century. The school is optional, so philosophers with no recorded affiliation still appear rather than being dropped from the results.

PREFIX rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ont:  <http://www.ontologia.fr/OTB/Philosophers#>
PREFIX otv:  <http://www.ontologia.fr/OTB/otv#>

SELECT ?name ?school ?century
FROM <https://triplestore.talos-ai4ssh.uoc.gr:8890/datasets/Ancient-Greek-Chinese-Philosophers-v1>
WHERE {
  { ?x otv:instanceOf       ont:Ancient-Greek-Philosopher ;
       ont:birthPlace       ont:athens ;
       rdfs:label           ?name ;
       ont:centuryOfLiving  ?t.
    ?t rdfs:label ?century }
  UNION
  { ?x otv:instanceOf       ont:Ancient-Greek-Philosopher ;
       ont:stayedIn         ont:athens ;
       rdfs:label           ?name ;
       ont:centuryOfLiving  ?t.
    ?t rdfs:label ?century }

  OPTIONAL {
    ?x ont:memberOfPhilosophicalSchool ?y.
    ?y rdfs:label ?school.
    FILTER (lang(?school) = "en")
  }
  FILTER (lang(?name) = "en")
}
ORDER BY ASC(?name)

The UNION is what makes the question answerable. Athens drew philosophers who were not born there, so asking only about birthPlace would miss most of the people who actually worked in the city. Modelling birthPlace and stayedIn as separate properties, then combining them at query time, keeps the distinction in the data while still allowing the broader question.

Size & structure

Concepts16
Terms33
Proper names2,131
Objects937
Logical axioms16,169
Classes30
Individuals3,230
Object properties33
Data properties6

Citation & licence

Cite as

Giannadakis, R., Papadopoulou, M., & Roche, C. (2024).
Ontoterminology of Ancient Greek and Chinese Philosophers - version 1.0 (Version 1.0) [Dataset].
Zenodo. https://doi.org/10.5281/zenodo.13372136

DOI: 10.5281/zenodo.13372136

Licence

CC BY-NC-ND 4.0

Funding

European Commission, TALOS AI4SSH, grant agreement 101087269.

Credits

Rafail GiannadakisData curator
ORCID 0009-0009-6708-4396
Maria PapadopoulouSupervisor
ORCID 0000-0001-6451-8712
Christophe RocheSupervisor
ORCID 0000-0002-0756-0559

Department of Philology, University of Crete