-
Notifications
You must be signed in to change notification settings - Fork 7
/
datasets.html
54 lines (45 loc) · 2.91 KB
/
datasets.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>BRIDGES Dataset</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- w3IncludeHTML() -->
<script src="https://www.w3schools.com/lib/w3data.js"></script>
<!-- all pages need those. -->
<link rel="stylesheet" type="text/css" href="./assets/css/bridges.css">
<link rel="stylesheet" type="text/css" href="./assets/css/nav.css">
<link rel="stylesheet" type="text/css" href="./assets/css/glyphicon.css">
<link rel="stylesheet" type="text/css" href="./assets/css/footer.css">
</head>
<body>
<div w3-include-html="./navbar.html">
<script>
w3IncludeHTML();
</script>
</div>
<h2>BRIDGES Datasets(UNC Charlotte)</h2>
<p> Most BRIDGES datasets are held in a Mongo database with
BRIDGES API calls to access them, including on-demand streaming
data; some of the older datasets that were held in files are
included below in their original form. Currently ongoing effort
to access
<a href="http://think.cs.vt.edu/corgis/"> Corgis
Datasets</a>, via BRIDGES. </p>
<ul style="list-style-type:circle">
<li> A small curated IMDB Actor/Movie Dataset. See <a href="http://bridgesuncc.github.io/tutorials/Data_IMDB.html">tutorial</a>.</li>
<li> A Actor/Movie Dataset dating from early 20th century from Wikidata. See <a href="http://bridgesuncc.github.io/tutorials/Data_WikiDataActor.html">tutorial</a>.</li>
<li> USGS Earthquake Twitter Feed Data. See <a href="http://bridgesuncc.github.io/tutorials/Data_EQ_USGS.html">tutorial</a>.</li>
<li> Video Game Review Data. See <a href="http://bridgesuncc.github.io/tutorials/Data_IGN_Games.html">tutorial</a>.</li>
<li> Shakespeare Books, Plays, Poems. See <a href="http://bridgesuncc.github.io/tutorials/Data_Shakespeare.html">tutorial</a>.</li>
<li> Books from the Gutenberg project. See <a href="http://bridgesuncc.github.io/tutorials/Data_Gutenberg.html">tutorial</a>.</li>
<li> Genius Song lyrics. See <a href="http://bridgesuncc.github.io/tutorials/Data_Song_Lyrics.html">tutorial</a>.</li>
<li> Maps from Open Street Map at different levels of details covering all North America. See <a href="http://bridgesuncc.github.io/tutorials/Data_OSM.html">tutorial</a>.</li>
<li> Cancer Incident dataset from the CDC. See <a href="http://bridgesuncc.github.io/tutorials/Data_CancerIncidence.html">tutorial</a>.</li>
<li> Elevation of any point on Earth from NOAA. See <a href="http://bridgesuncc.github.io/tutorials/Data_Elevation.html">tutorial</a>.</li>
<li> US Cities Data. See <a href="http://bridgesuncc.github.io/tutorials/Data_USCities.html">tutorial</a>.</li>
<li> Reddit Posts. See <a href="http://bridgesuncc.github.io/tutorials/Data_Reddit.html">tutorial</a>.</li>
</ul>
<div w3-include-html="./footer.html"></div>
</body>
</html>