Add notes for 2022-05-26

This commit is contained in:
2022-05-26 15:01:15 +03:00
parent cc24e999df
commit ce7c03cbfd
28 changed files with 58 additions and 34 deletions

View File

@ -213,4 +213,13 @@ Would fix 2 occurences of: Josephine Agogbua: 0000-0001-6317-1227
Would fix 34 occurences of: Martha Lilia Del Río Duque: 0000-0002-0879-0292
```
## 2022-05-26
- I extracted the names and ORCID identifiers from Maria's spreadsheet and produced several CSV files with different name formats:
- First Last (GREL: `cells['First Name'].value + ' ' + cells['Surname'].value`)
- Last, First (GREL: `cells['Surname'].value + ", " + cells['First Name'].value`)
- Last, F. (GREL: `cells['Surname'].value + ", " + cells['First Name'].value.substring(0, 1) + "."`)
- Then I constructed a CSV for each of these variations to use with `add-orcid-identifiers-csv.py`
- In total I matched a bunch of authors and added 872 new metadata fields!
<!-- vim: set sw=2 ts=2: -->