Skip to content

Commit

Permalink
prefer names in default csv/tsv columns
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Jan 2, 2025
1 parent 4dd2c09 commit abb54e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions trove/vocab/osfmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -912,11 +912,11 @@ def osfmap_shorthand() -> IriShorthand:
(RDF.type,),
(OSFMAP.storageRegion, SKOS.prefLabel),
(OSFMAP.storageByteCount,),
(DCTERMS.creator,),
(DCTERMS.rights,),
(DCTERMS.publisher,),
(OSFMAP.affiliation,),
(OSFMAP.funder,),
(DCTERMS.creator, FOAF.name),
(DCTERMS.rights, FOAF.name),
(DCTERMS.publisher, FOAF.name),
(OSFMAP.affiliation, FOAF.name),
(OSFMAP.funder, FOAF.name),
(DCTERMS.conformsTo, DCTERMS.title),
(OSFMAP.usage, OSFMAP.viewCount),
(OSFMAP.usage, OSFMAP.downloadCount),
Expand Down

0 comments on commit abb54e3

Please sign in to comment.