mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Update notes for 2017-05-28
This commit is contained in:
@ -262,3 +262,31 @@ COPY 111
|
||||
- File an issue on GitHub to explore/track migration to proper country/region codes (ISO 2/3 and UN M.49): [#326](https://github.com/ilri/DSpace/issues/326)
|
||||
- Ask Peter how the Landportal.info people should acknowledge us as the source of data on their website
|
||||
- Communicate with MARLO people about progress on exposing ORCIDs via the REST API, as it is set to be discussed in the [June, 2017 DCAT meeting](https://wiki.duraspace.org/display/cmtygp/DCAT+Meeting+June+2017)
|
||||
- Find all of Amos Omore's author name variations so I can link them to his authority entry that has an ORCID:
|
||||
|
||||
```
|
||||
dspace=# select distinct text_value, authority, confidence from metadatavalue where metadata_field_id=3 and text_value like 'Omore, A%';
|
||||
```
|
||||
|
||||
- Set the authority for all variations to one containing an ORCID:
|
||||
|
||||
```
|
||||
dspace=# update metadatavalue set authority='4428ee88-90ef-4107-b837-3c0ec988520b', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Omore, A%';
|
||||
UPDATE 187
|
||||
```
|
||||
|
||||
- Next I need to do Edgar Twine:
|
||||
|
||||
```
|
||||
dspace=# select distinct text_value, authority, confidence from metadatavalue where metadata_field_id=3 and text_value like 'Twine, E%';
|
||||
```
|
||||
|
||||
- But it doesn't look like any of his existing entries are linked to an authority which has an ORCID, so I edited the metadata via "Edit this Item" and looked up his ORCID and linked it there
|
||||
- Now I should be able to set his name variations to the new authority:
|
||||
|
||||
|
||||
```
|
||||
dspace=# update metadatavalue set authority='f70d0a01-d562-45b8-bca3-9cf7f249bc8b', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Twine, E%';
|
||||
```
|
||||
|
||||
- Run the corrections on CGSpace and then update discovery / authority
|
||||
|
Reference in New Issue
Block a user