MULON (MULtilingual Ontology mergiNg) is an approach for creating a multilingual ontology by merging two ontologies in different natural languages.
All implementations are based on Scala 2.11.11 and Apache Spark 2.3.1.
git clone https://github.com/SmartDataAnalytics/MULON.git
cd MULON
mvn clean package
MULON reads two input ontologies in Turtle in two different languages and uses SANSA readers to build a dataset of RDD[graph.Triple] for each ontology.
val O1 = ".../firstOntology-de.ttl"
val O2 = ".../secondOntology-en.ttl"
A brief description of MULON can be found here. Furthermore, a description for each configurable parameter and function can be found here.
The subsequent steps depend on your IDE. Generally, just import this repository as a Maven project and start using MULON.