Skip to content

Commit

Permalink
Merge 072e284 into 10b6a08
Browse files Browse the repository at this point in the history
  • Loading branch information
kimakan committed Jul 28, 2023
2 parents 10b6a08 + 072e284 commit cad40b8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions daiquiri/core/renderers/datacite.py
Expand Up @@ -139,6 +139,13 @@ def render_person(self, person_type, person, contributor_type=None):
'nameIdentifierScheme': 'ORCID'
}, orcid)

ror = person.get('ror')
if ror:
self.node('nameIdentifier', {
'schemeURI': 'http://ror.org/',
'nameIdentifierScheme': 'ROR'
}, ror)

affiliations = person.get('affiliations')
if affiliations:
for affiliation in affiliations:
Expand Down

0 comments on commit cad40b8

Please sign in to comment.