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

Make every instance of coat of arms representation an owl:NamedIndividual

parent 1eb19ba6
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
This diff is collapsed.
......@@ -72,6 +72,7 @@ for index, row in df_tblArmItems.iterrows():
# Create node for coat of arms reference
coa_reference_node = URIRef(dho_rep_n + 'MS' + str(row['ArmCode']) + '-' + str(row['ArmItemID']))
g.add((coa_reference_node, RDF.type, dho_rep_n.CoatOfArmsRepresentation))
g.add((coa_reference_node, RDF.type, OWL.NamedIndividual))
g.add((coa_reference_node, dho_rep_n.hasItemID, Literal(int(row['ItemNr']))))
g.add((coa_reference_node, dho_rep_n.folioNumber, Literal(str(row['FolNr']))))
......
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