You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use this capability in at least two places - #20 and #22. I think it would be nice if we had a reusable python function that we could use to link institution names to their "best" ROR id (if available) using OpenAlex, e.g. something like
def get_best_institution_ror(institution_name: str) -> str:
"""
Given an institution name, try to find the ROR of its best match. Return the ROR id if
available, else None
:param institution_name: Insitution name (e.g. "Massachusetts Insitute of Technology")
:return: ROR id of best match (e.g. https://ror.org/042nb2s44)
"""
pass
Also, this might be useful for the future: at Crossref we collaborate with ROR on a new, better affiliation matching service, which will most likely replace the current implementation behind /organizations?affiliation. I will monitor this effort and will let the team know when this happens. It will mean it might be a good idea to re-run our script to get (hopefully) better matches.
We use this capability in at least two places - #20 and #22. I think it would be nice if we had a reusable python function that we could use to link institution names to their "best" ROR id (if available) using OpenAlex, e.g. something like
See also the related thinking in #17
Would you be interested in taking this on @sfisher ?
The text was updated successfully, but these errors were encountered: