cwrc / RDF-extraction

0 stars 0 forks source link

labels missing for describing annotations? #1

Closed SusanBrown closed 2 years ago

SusanBrown commented 5 years ago

e.g. http://cwrc.ca/cwrcdata/aguigr_SpatialContext-relocatesTo_1_describing_Snippet

alliyya commented 5 years ago

Odd, I'm pretty sure it's there.

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX cwrc: <http://sparql.cwrc.ca/ontologies/cwrc#>
PREFIX data:<http://cwrc.ca/cwrcdata/>
SELECT * WHERE {
  data:aguigr_SpatialContext-relocatesTo_1_describing_Snippet ?pred ?obj .
} 
LIMIT 10

Is giving me results of

row pred obj
1 http://www.w3.org/ns/oa#hasSource http://orlando.cambridge.org/protected/svPeople?formname=r&people_tab=3&person_id=aguigr#EvolvingFaithandLiteraryConnections
2 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://www.w3.org/ns/oa#TextualBody
3 http://www.w3.org/2000/01/rdf-schema#label Aguilar, Grace - Spatial Context snippet
4 http://purl.org/dc/terms/description "September 1828 GA and her family moved from Hackney in North London to Devon."^^xsd:string

Seeing

data:aguigr_SpatialContext-relocatesTo_1_describing_Snippet a oa:TextualBody ;
    rdfs:label "Aguilar, Grace - Spatial Context snippet" ;
    dcterms:description "September 1828 GA and her family moved from Hackney in North London to Devon."^^xsd:string ;
    oa:hasSource <http://orlando.cambridge.org/protected/svPeople?formname=r&people_tab=3&person_id=aguigr#EvolvingFaithandLiteraryConnections> .

In the BIOGRAPHY.ttl data file as well

alliyya commented 5 years ago

Were you able to locate the labels for describing annotations or is this still an issue @SusanBrown ?