Search in colophons for painters (role in any encoding location) #1696
-
from #1542 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If you search for painter in the facet search, you will get many painters. At the moment we have a dedicated search for colophons, titles, etc. https://betamasaheft.eu/titles here you find persons named in there, but you have to know if they are painters. Person's names which are marked up (a large minority!) in colophons can be seen here. This list is restricted to colophons, no matter how many person are named in there. You can get a list of all persons marked up in colophons and their occupation with this query This is the query, if you want to use it elsewhere, remember the prefixes, in BM they are added for you. SELECT ?colophon ?name ?occupation
WHERE {
?colophon a bm:colophon ;
dc:relation ?person .
?person a bm:pers ;
foaf:name ?name ;
snap:occupation ?occupation .
} But the RDF does not seem to know about any painter related to colophons The following Xquery on the data for $p in $config:collection-rootMS//t:colophon//t:persName
let $persId := $p/@ref
let $persRecord := $config:collection-rootPr/id($persId)
let $occ := string-join($persRecord//t:occupation/text(), ' ' )
group by $O := $occ
let $occupers := for $occpers in $p
let $root := string($occpers/ancestor::t:TEI/@xml:id)
return (string($occpers/@ref) || ' in ' || $root)
return
(normalize-space(replace($O, ',', '')) || ', ' || string-join(distinct-values($occupers), ' ')) returns these results, there are no "painters" but you have a scribe and artist
|
Beta Was this translation helpful? Give feedback.
If you search for painter in the facet search, you will get many painters.
each person record will list the occurrences of that person in our data, e.g. https://betamasaheft.eu/persons/PRS12451Hezqeel/main
At the moment we have a dedicated search for colophons, titles, etc. https://betamasaheft.eu/titles here you find persons named in there, but you have to know if they are painters.
Person's names which are marked up (a large minority!) in colophons can be seen here.
There are a few, one cannot know how many of these are painters.
This list is restricted to colophons, no matter how many person are named in there.
You can get a list of all persons marked up in colophons and their occupati…