-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.hbs
130 lines (124 loc) · 5.58 KB
/
index.hbs
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet"/>
<title>
Circular Economy Ontology Network (CEON)
</title>
</head>
<body>
<main>
<div id="overview">
<h1>Circular Economy Ontology Network (CEON)</h1>
<p>
The Circular Economy Ontology Network (CEON) provides a shared vocabulary for representing information about circular economies in the form of a network of ontology modules.
</p>
<p>
The figure below shows an overview of the topics covered. The lines between the boxes represent some common-sense relations between the topics, which are represented as formal relations within the actual modules, such as <code>owl:import</code> or specific object properties connecting concepts inside the modules. The light blue box (location) is not part of CEON, but instead reuses a standard geographical ontology such as the OGC GeoSPARQL standards.
</p>
<p>
The set of core modules that are in this release of CEON forms a set of generic reusable ontology building blocks and include Circular Value Network, Actor, Process, and Resource (Material and Product).
</ul>
</p>
<div class="img-div">
<img src="images/overview_v0.3.png">
</div>
</div>
<div id="index">
<h1>Core Modules</h1>
<table>
<tr>
<th>
Ontology
</th>
<th>
Version
</th>
<th>
Docs
</th>
</tr>
{{#each data.core}}
<tr>
<td>
<a href="ontology/{{name}}/{{versions.0}}/index.html">{{name}}</a>
(<a href="ontology/{{name}}/{{versions.0}}/{{name}}.ttl">ttl</a>,
<a href="ontology/{{name}}/{{versions.0}}/{{name}}.rdf">rdf</a>,
<a href="ontology/{{name}}/{{versions.0}}/{{name}}.jsonld">json-ld</a>)
</td>
<td>
{{versions.0}}
</td>
<td>
<a href="ontology/{{name}}/{{versions.0}}/index.html">html</a>,
<a href="ontology/{{name}}/{{versions.0}}/{{name}}.pdf">pdf</a>
</td>
</tr>
{{/each}}
</table>
<h1>Other Modules</h1>
<table>
<tr>
<th>
Ontology
</th>
<th>
Version
</th>
<th>
Docs
</th>
</tr>
{{#each data.other}}
<tr>
<td>
<a href="ontology/{{name}}/{{versions.0}}/index.html">{{name}}</a>
(<a href="ontology/{{name}}/{{versions.0}}/{{name}}.ttl">ttl</a>,
<a href="ontology/{{name}}/{{versions.0}}/{{name}}.rdf">rdf</a>,
<a href="ontology/{{name}}/{{versions.0}}/{{name}}.jsonld">json-ld</a>)
</td>
<td>
{{versions.0}}
</td>
<td>
<a href="ontology/{{name}}/{{versions.0}}/index.html">html</a>,
<a href="ontology/{{name}}/{{versions.0}}/{{name}}.pdf">pdf</a>
</td>
</tr>
{{/each}}
</table>
<h1>Use Cases</h1>
<table>
<tr>
<th>
Ontology
</th>
<th>
Version
</th>
<th>
Docs
</th>
</tr>
{{#each data.demo}}
<tr>
<td>
<a href="demo/{{name}}/{{versions.0}}/index.html">{{name}}</a>
(<a href="demo/{{name}}/{{versions.0}}/{{name}}.ttl">ttl</a>,
<a href="demo/{{name}}/{{versions.0}}/{{name}}.rdf">rdf</a>,
<a href="demo/{{name}}/{{versions.0}}/{{name}}.jsonld">json-ld</a>)
</td>
<td>
{{versions.0}}
</td>
<td>
<a href="demo/{{name}}/{{versions.0}}/index.html">html</a>,
<a href="demo/{{name}}/{{versions.0}}/{{name}}.pdf">pdf</a>
</td>
</tr>
{{/each}}
</table>
</div>
</main>
</body>
</html>