Add notes for 2019-07-26

This commit is contained in:
2019-07-26 18:49:38 +03:00
parent cec7499c76
commit 3498639483
3 changed files with 42 additions and 8 deletions

View File

@ -372,4 +372,19 @@ isbn.validate('978-92-9043-389-7')
issn.validate('1020-3362')
```
## 2019-07-26
- Bioversity sent me an updated CSV file that fixes some of the issues I pointed out yesterday
- There are still 1429 records
- There are still one extra row and one extra column
- There are still eight invalid ISBNs (according to my `validate.py` script)
- I figured out a GREL to trim spaces in multi-value cells without splitting them:
```
value.replace(/\s+\|\|/,"||").replace(/\|\|\s+/,"||")
```
- I whipped up a quick script using Python Pandas to do whitespace cleanup
<!-- vim: set sw=2 ts=2: -->