Skip to content
Snippets Groups Projects
Commit 0092e0b0 authored by Philipp Schneider's avatar Philipp Schneider
Browse files

Fixe ontology: use rdfs:label instead of hasAppellation for entity nams

parent 3b1eacd1
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ def create_identified_entity(row):
g.add((new_entity_node, RDF.type, dho_ent_n.IdentifiedEntity))
g.add((new_entity_node, RDF.type, OWL.NamedIndividual))
g.add((new_entity_node, dho_ent_n.hasAppellation, Literal(row['ArmIdf'], datatype=XSD.string)))
g.add((new_entity_node, RDFS.label, Literal(row['ArmIdf'], datatype=XSD.string)))
return new_entity_node
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment