-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutkgs.html
More file actions
73 lines (61 loc) · 2.56 KB
/
aboutkgs.html
File metadata and controls
73 lines (61 loc) · 2.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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>
<!-- Page Links -->
<div class="w3-container w3-padding-32 w3-light-grey">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Explore SAWGraph</h3>
<div class="w3-row-padding">
<div class="w3-col s12 m6 l4">
<p><a href="index.html">Home</a></p>
<p><a href="kg.html#project">Knowledge Graph</a></p>
<p><a href="kg.html#data-sources">Data Sources</a></p>
</div>
<div class="w3-col s12 m6 l4">
<p><a href="ontologies.html">Ontologies</a></p>
<p><a href="publications.html">Publications</a></p>
<p><a href="aboutus.html">Team</a></p>
</div>
<div class="w3-col s12 m6 l4">
<p><a href="pfas.html">About PFAS</a></p>
<p><a href="aboutkgs.html">About KGs</a></p>
</div>
</div>
</div>
<!-- Footer -->
</body>
</html>