-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (109 loc) · 4.62 KB
/
Copy pathindex.html
File metadata and controls
118 lines (109 loc) · 4.62 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Starrydata Visualizer</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
max-width: 960px;
margin: 0 auto;
padding: 20px 40px;
color: #24292e;
line-height: 1.6;
}
h1 { border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
h2 { border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; margin-top: 1.5em; }
a { color: #0366d6; text-decoration: none; }
a:hover { text-decoration: underline; }
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin: 20px 0;
}
.grid a {
display: block;
border: 1px solid #e1e4e8;
border-radius: 6px;
overflow: hidden;
transition: box-shadow 0.2s;
}
.grid a:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.grid img {
width: 100%;
height: auto;
display: block;
}
.all-curves-link {
display: inline-block;
margin: 10px 0;
}
.all-curves-link img {
max-width: 440px;
border: 1px solid #e1e4e8;
border-radius: 6px;
}
.contact { margin-top: 2em; }
</style>
</head>
<body>
<h1>Starrydata Visualizer</h1>
<p>
<a href="https://starrydata.nims.go.jp/">Starrydata project</a> utilizes
<a href="https://starrydata.nims.go.jp/starrydata2/">Starrydata2 web system</a>
to collect experimental data from materials science research papers.
The collected data is published as datasets on the
<a href="https://figshare.com/projects/Starrydata_datasets/155129">Starrydata project page on Figshare</a>.
However, visualizing big data requires an analytical environment.
To address this, Starrydata Visualizer offers pre-prepared graphs,
allowing even those without an analytical environment to easily view an overview of the data.
The data is updated daily for use in data cleansing by the Starrydata team's data collectors.
</p>
<h2>Top 9 example curve graphs</h2>
<div class="grid">
<a href="all_curves/Temperature-Seebeck%20coefficient.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/bcc9193e-4d43-4162-ba13-90c814f12733" alt="Temperature vs Seebeck coefficient">
</a>
<a href="all_curves/Temperature-Thermal%20conductivity.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/d0b71120-7536-4f98-9eed-7cde9ca76748" alt="Temperature vs Thermal conductivity">
</a>
<a href="all_curves/Temperature-ZT.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/d89249eb-217a-4ae9-9895-d2e3690996d6" alt="Temperature vs ZT">
</a>
<a href="all_curves/Temperature-Electrical%20resistivity.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/282d339a-9e6e-4fa7-bc2b-f3fd8fe26fb6" alt="Temperature vs Electrical resistivity">
</a>
<a href="all_curves/Temperature-Electrical%20conductivity.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/ba9f7ee5-ab85-4df6-a857-69c18cc480bd" alt="Temperature vs Electrical conductivity">
</a>
<a href="all_curves/Temperature-Power%20factor.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/b57112ee-8342-4594-8a78-2872e153ca67" alt="Temperature vs Power factor">
</a>
<a href="all_curves/Temperature-Lattice%20thermal%20conductivity.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/e4ce1969-d976-403a-ae94-865d4742f859" alt="Temperature vs Lattice thermal conductivity">
</a>
<a href="all_curves/Magnetic%20field%20strength%20(H)-magnetization_per_weight.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/f64cd982-3441-4d1b-a471-16b01cb438df" alt="Magnetic field strength vs magnetization per weight">
</a>
<a href="all_curves/Discharge%20capacity-Voltage.html">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/8ab660d1-11ce-45cc-9558-0a1b9581629e" alt="Discharge capacity vs Voltage">
</a>
</div>
<h2>All curve graphs</h2>
<p>
<a class="all-curves-link" href="all_curves/">
<img src="https://github.com/starrydata/starry-visualization/assets/30012556/4eb79ea2-7dc0-48d3-a29d-32a5f11b8066" alt="All curve graphs">
</a>
</p>
<h2>Contact</h2>
<p class="contact">
For bugs or feature requests, please feel free to create an Issue on
<a href="https://github.com/starrydata/starry-visualization/issues">this GitHub repository</a>.
If you have any other questions, please email me at MATO.Tomoya@nims.go.jp.
</p>
</body>
</html>