Anonymous

NeoVoc: Difference between revisions

From eneoli wikibase
506 bytes added ,  5 months ago
no edit summary
No edit summary
Line 1: Line 1:
= NeoVoc, a glossary of Neology =
= NeoVoc, a glossary of Neology =


* Access a page containing information about the language you are working on '''[[NeoVoc/language|here]]'''.
* '''Access a page containing information about the tasks related to NeoVoc, regarding the language you are working on [[NeoVoc/language|here]].'''
 
== Workflow description ==
 
In a first phase, we will be creating entities describing concepts, with "labels" (multilingual equivalents for the concept). Later, we will create lexicographical entries for all of these labels.


== SPARQL queries ==
== SPARQL queries ==
Line 26: Line 22:
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr". }
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,fr". }
}  
}  
</sparql>
=== Coverage of NeoVoc concepts with mutlilingual equivalents ===
<sparql tryit="1">
#title:Number of equivalents present in the NeoVoc data
#defaultView:BarChart
PREFIX enwb: <https://eneoli.wikibase.cloud/entity/>
PREFIX endp: <https://eneoli.wikibase.cloud/prop/direct/>
PREFIX enp: <https://eneoli.wikibase.cloud/prop/>
PREFIX enps: <https://eneoli.wikibase.cloud/prop/statement/>
PREFIX enpq: <https://eneoli.wikibase.cloud/prop/qualifier/>
select ?language (count(?concept) as ?labels)
where {
  ?concept endp:P5 enwb:Q12. # instances of "NeoVoc Concept"
  ?concept rdfs:label ?label.
  bind (lang(?label) as ?language)
} group by ?language ?labels order by desc(?labels)
</sparql>
</sparql>