Update notes for 2019-09-27

This commit is contained in:
2019-09-27 01:20:09 +03:00
parent 71ed97ce53
commit a8f833a6c6
5 changed files with 36 additions and 11 deletions

View File

@ -358,5 +358,12 @@ sys 2m27.496s
- After reading the code I see that XSLT is reading the community titles from the DIM representation (stored in the `$dim` variable) created from METS
- I modified the patterns in my sed script so that those lines are not replaced and then the community list works again
- This is actually not a problem at all because this metadata is only used in the HTML meta tags in XMLUI community lists and has nothing to do with item metadata
- Get a list of institutions from CCAFS's Clarisa API and try to parse it with `jq` and pass it through `csvcut` to add line numbers:
```
$ cat ~/Downloads/institutions.json| jq '.[] | {name: .name}' | grep name | awk -F: '{print $2}' | sed 's/"//g' | csvcut -l > /tmp/investors.csv
```
- I could potentially use this with reconcile-csv and OpenRefine as a source to validate our institutional authors against...
<!-- vim: set sw=2 ts=2: -->

View File

@ -316,5 +316,8 @@ $ dspace import -a me@cgiar.org -m 2019-09-20-bioversity2.map -s /home/aorth/Bio
- Release [version 0.3.0 of the csv-metadata-quality](https://github.com/ilri/csv-metadata-quality/releases/tag/v0.3.0) tool
- This version includes the experimental validation of languages using the Python `langid` library
- I also included updated pytest tests and test files that specifically test this functionality
- Give more feedback to Bosede about the [IITA Sept 6 (20196th.xls) records on DSpace Test](https://dspacetest.cgiar.org/handle/10568/105116)
- I told her to delete one item that appears to be a duplicate, or to fix its citation to be correct if she thinks it is not a duplicate
- I deleted another item that I had previously identified as a duplicate that she had fixed by incorrectly deleting the original (ugh)
<!-- vim: set sw=2 ts=2: -->