-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (79 loc) · 3.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>Terminologien im Rahmen von NFDI4Objects</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="stylesheet" href="normalize.css">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<link rel="stylesheet" href="n4o.css">
<link rel="icon" href="favicon-nfdi4obj-logo-1.png" sizes="32x32" />
<link rel="icon" href="favicon-nfdi4obj-logo-1.png" sizes="192x192" />
</head>
<body style="padding: 1em"
x-data="{ vocs: [] }"
x-init="fetch('https://bartoc.org/api/voc?partOf=http%3A%2F%2Fbartoc.org%2Fen%2Fnode%2F18961').then(r => r.json()).then(data => (vocs = data))">
<p>
<small><a href="https://nfdi4objects.github.io/">NFDI4Objects@GitHub</a></small>
</p>
<p>
<h1>Terminologien im Rahmen von NFDI4Objects</h1>
<p>
Diese Seite enthält eine experimentelle Liste von Terminologien
(Normdateien, Thesauri, Klassifikationen, Gazeteers, Ontologien...),
die im Rahmen der Forschungsdateninfrastruktur
<a href="https://www.nfdi4objects.net/">NFDI4Objects</a> (N4O)
relevant sein könnten. Die Liste wird
<a href="https://bartoc.org/en/node/18961">in BARTOC</a> verwaltet.
Falls vorhanden, wird der URI-Namensraum für Einträgen der
jeweiligen Terminologie angezeigt.
</p>
<table>
<thead>
<tr>
<th>Vokabular</th>
<th>URI-Namensraum</th>
<th>Pattern</th>
</tr>
</thead>
<tbody>
<template x-for="voc in vocs">
<tr>
<td>
<a :href="voc.uri" x-text="voc.prefLabel.de || voc.prefLabel.en"></a>
<template x-if="voc.notation?.length">
<span x-text="`(${voc.notation[0]})``"/>
</template>
<template x-if="voc.url">
<a :href="voc.url">🏠</a>
</template>
</td>
<td>
<template x-if="voc.namespace">
<span x-text="voc.namespace"/>
</template>
</td>
<td>
<template x-if="voc.notationPattern">
<span x-text="voc.notationPattern"/>
</template>
</td>
</tr>
</template>
</tbody>
</table>
<p>
Die Liste
<a href="https://bartoc.org/api/voc?partOf=http%3A%2F%2Fbartoc.org%2Fen%2Fnode%2F18961">kann hier im JSKOS-Format</a> heruntergeladen werden.
Ein Snapshot der Daten in RDF ist unter <a href="https://graph.nfdi4objects.net/terminology/">https://graph.nfdi4objects.net/terminology/</a> verfügbar.
Eine schönere Browsing-Oberfläche
mittels <a href="https://github.com/gbv/jskos-proxy">jskos-proxy</a>
ist angedacht.
</p>
<p>
Weitere Informationen zum Einsatz von Vokabularen im Rahmen von NFDI4Objects siehe in der Präsentation
<a href="https://doi.org/10.5281/zenodo.10906912">Terminologien in NFDI4Objects</a> vom 20. März 2024
sowie im <a href="https://nfdi4objects.github.io/n4o-graph/vocabularies.html">Handbuch des Knowledge Graphen von NFDI4Objects</a>.
</p>
</body>
</html>