Fix notes for 2016-02-16

This commit is contained in:
2016-05-18 17:51:47 +03:00
parent cbb7d63ef5
commit 7363c63a9c
4 changed files with 0 additions and 4 deletions

View File

@ -220,7 +220,6 @@ value.unescape("url")
- To merge `dc.identifier.url` and `dc.identifier.url[]`, rename the second column so it doesn't have the brackets, like `dc.identifier.url2`
- Then you create a facet for blank values on each column, show the rows that have values for one and not the other, then transform each independently to have the contents of the other, with "||" in between
- Work on Python script for parsing and downloading PDF records from `dc.identifier.url`
- To turn `dc.identifier.url` into filenames, create a new column based o
- To get filenames from `dc.identifier.url`, create a new column based on this transform: `forEach(value.split('||'), v, v.split('/')[-1]).join('||')`
- This also works for records that have multiple URLs (separated by "||")