-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
105 lines (105 loc) · 4.15 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>Forschungsdatenbanken 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">
<link rel="stylesheet" href="n4o.css">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<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="{ dbs: [] }"
x-init="fetch('n4o-databases.json').then(r => r.json()).then(data => (dbs = data))">
<p>
<small><a href="https://nfdi4objects.github.io/">NFDI4Objects@GitHub</a></small>
</p>
<h1>Forschungsdatenbanken im Rahmen von NFDI4Objects</h1>
<p>
Diese Seite enthält eine experimentelle Liste von Datenbanken mit Forschungsdaten,
die im Rahmen der Forschungsdateninfrastruktur
<a href="https://www.nfdi4objects.net/">NFDI4Objects</a> (N4O)
zusammengeführt werden sollen.
</p>
<table>
<thead>
<tr>
<th>Datenbank</th>
<th>Herausgeber</th>
<th>Identifier</th>
<th>Schnittstellen und Formate</th>
</tr>
</thead>
<tbody>
<template x-for="db in dbs">
<tr>
<td>
<template x-if="db.url">
<a :href="db.url" x-text="db.name"></a>
</template>
<template x-if="!db.url">
<span x-text="db.name"/>
</template>
</td>
<td>
<template x-for="p in db.publisher">
<a :href="'http://www.wikidata.org/entity/'+p.wikidata" x-text="p.name"></a>
</template>
</td>
<td>
<ul class="plain">
<template x-for="id in [db.wikidata ? 'http://www.wikidata.org/entity/'+db.wikidata : null,
db.re3data ? 'https://www.re3data.org/repository/'+db.re3data : null].filter(Boolean)">
<li><a :href="id" x-text="id"></a><li>
</template>
</ul>
</td>
<td x-data="{ good: db.api.some(api => api.protocol.length && api.format.length) } ">
<template x-if="!db.api.length">
<span>🙁</span>
</template>
<template x-if="db.api.length">
<span x-text="good ? '🙂' : '😐'" style="float:left; padding-right: 0.5em;"/>
</template>
<ul class="plain">
<template x-if="db.api.length && !good">
<span>vorhanden aber unklar</span>
</template>
<template x-for="api in db.api">
<template x-for="p in api.protocol">
<li><a :href="api.url" x-text="p.name"/></li>
</template>
</template>
<template x-for="api in db.api">
<template x-for="format in api.format">
<li><a :href="'http://www.wikidata.org/entity/'+format.wikidata" x-text="format.name"/><li>
</template>
</template>
</ul>
</td>
</tr>
</template>
</tbody>
</table>
<p>
Die Angaben auf dieser Seite stammen aus
<a href="https://github.com/nfdi4objects/n4o-databases#readme">einem git-Repository</a>
und werden dort aus <a href="https://www.wikidata.org/">Wikidata</a> und
<a href="n4o-databases.csv">einer CSV-Datei</a> zusammengeführt.
Voraussetzung ist ein Eintrag der Datenbank in Wikidata.
Zusätzlich sollte die Datenbank bei <a href="https://www.re3data.org/">re3data.org</a>
eingetragen werden (Übernahme von Daten von dort ist geplant).
</p>
<p>
Die zusammengeführten Daten stehen in JSON
(<a href="n4o-databases.json">databases</a> und <a href="n4o-collections.json">collections</a>)
sowie als property graph
(<a href="n4o-databases.pg">PG format</a>)
als Open Data zur freien Verfügung
(<a href="https://creativecommons.org/publicdomain/zero/1.0/deed.de">CC0</a>)
und sind Teil des <a href="https://graph.nfdi4objects.net/">N4O Knowledge Graph</a>.
</p>
</body>
</html>