-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutkgs.html
More file actions
52 lines (41 loc) · 1.81 KB
/
aboutkgs.html
File metadata and controls
52 lines (41 loc) · 1.81 KB
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
<!DOCTYPE html>
<html>
<head>
<title>SAWGraph - About Knowledge Graphs</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<script src="menu.js"></script>
</div>
</div>
<!-- Page content -->
<div class="w3-content w3-padding" style="max-width:1564px">
<!-- About KGs -->
<div class="w3-container" id="about-kgs">
<div class="w3-container w3-padding-32">
<h1 class="w3-border-bottom w3-border-light-grey w3-padding-16">What's a Knowledge Graph?</h1>
<ul>
<li>Establishes connections (links) across datasets
</li>
<li> Kind of a distributed database that can grow over time</li>
</ul>
<img src="images/graph_example.png" style="width:100%;max-width:1000px" class="w3-margin-top">
<h4 class="w3-border-bottom w3-border-light-grey w3-padding-16">Read more about Geospatial Knowledge Graphs</h3>
<p> Some papers on other geospatial knowledge graphs that were developed with the help of some of the team members:<br>
<ul>
<li><a href="publications/HahmannKedrowski-COSIT2024-UFOKNCascades.pdf"><i>T. Hahmann and D. Kedrowski (2024): An ontology and geospatial knowledge graph for reasoning about cascading failures</i></a><br></li>
<li><a href="https://onlinelibrary.wiley.com/doi/10.1002/aaai.12043"><i>K. Janowicz et al. (2022): Know, Know Where, KnowWhereGraph: A densely connected, cross-domain knowledge graph and geo-enrichment service stack for applications in environmental intelligence</i></a></li>
</ul>
</p>
</div>
</div>
<!-- End page content -->
</div>
<!-- Footer -->
</body>
</html>