Skip to content

Commit a1d335e

Browse files
committed
LICENSE
1 parent 85a701e commit a1d335e

16 files changed

Lines changed: 710 additions & 649 deletions

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.

web_visualizer/index.html

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,33 @@ <h1 id="profile-title"></h1>
4242
<button id="help_button">Help</button>
4343
<div id="help" class="hide">
4444
<p>
45-
Lactea is an open-source, web-based implementation of a submitted paper to the EuroVis 2025 conference introducing a spectral visualization, multi-resolution technique for a large star catalog. This repository works with the European Space Agency (ESA)'s GAIA catalog, which contains the spectral information of almost 2 billion stars. To use:
45+
Lactea is an open-source, web-based implementation of a submitted paper to the EuroVis 2025 conference introducing a spectral visualization, multi-resolution technique for a large star catalog. This repository works with the European Space Agency (ESA)'s GAIA catalog, which contains the spectral information of almost 2 billion stars.
4646
</p>
4747
<p>To cite the paper:</p>
4848
<blockquote>
49-
@article{alghamdi2025Lactea,
50-
title = {Lactea: Web-Based Spectrum-Preserving Multi-Resolution Visualization of the GAIA Star Catalog},
51-
author = {Alghamdi, Reem and Hadwiger, Markus and Reina, Guido and Jaspe-Villanueva, Alberto},
52-
journal = {Computer Graphics Forum (Proceedings of Eurographics Conference on Visualization 2025)},
53-
year = {2025},
54-
volume = {44},
55-
number = {3},
56-
pages = {to appear}
57-
}
49+
<pre>
50+
@article{alghamdi2025Lactea,
51+
title = {Lactea: Web-Based Spectrum-Preserving Multi-Resolution Visualization of the GAIA Star Catalog},
52+
author = {Alghamdi, Reem and Hadwiger, Markus and Reina, Guido and Jaspe-Villanueva, Alberto},
53+
journal = {Computer Graphics Forum (Proceedings of Eurographics Conference on Visualization 2025)},
54+
year = {2025},
55+
volume = {44},
56+
number = {3},
57+
pages = {to appear}
58+
}
59+
</pre>
5860
</blockquote>
59-
<p><a href="https://github.com/vccvisualization/lactea" class="link">GitHub Repository</a></p>
61+
<p>For more information, please visit the <a href="https://github.com/vccvisualization/lactea" class="link">GitHub Repository</a></p>
62+
<p>Quick Overview of the funcitonalities</p>
6063
<table>
6164
<tr>
6265
<th>Key/Button</th>
6366
<th>Functionaliy</th>
6467
</tr>
68+
<tr>
69+
<td>Space</td>
70+
<td>Change settings to replicate paper figures</td>
71+
</tr>
6572
<tr>
6673
<td>G</td>
6774
<td>Show/hide main GUI</td>
@@ -94,12 +101,9 @@ <h1 id="profile-title"></h1>
94101
<td>P</td>
95102
<td>change projection strategy</td>
96103
</tr>
104+
97105
<tr>
98-
<td>Space</td>
99-
<td>Change settings to replicate paper figures</td>
100-
</tr>
101-
<tr>
102-
<th colspan="2">Lactea</th>
106+
<th colspan="2">Canvas</th>
103107
</tr>
104108
<tr>
105109
<td>Drag</td>

web_visualizer/playground.html

Lines changed: 0 additions & 49 deletions
This file was deleted.

web_visualizer/res/styles/style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,13 @@ body {
116116
max-width: 800px;
117117
margin: 1rem auto;
118118
}
119+
#help blockquote pre {
120+
background-color: rgba(255, 255, 255, 0.1);
121+
padding: 2rem;
122+
margin: 1rem;
123+
text-wrap: wrap;
124+
border-radius: 0.5rem;
125+
}
119126
#help p {
120127
text-align: center;
121128
padding: 0.3 rem;

web_visualizer/res/styles/style.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,13 @@ body {
137137
#help {
138138
max-width: $max-width;
139139
margin: 1rem auto;
140-
140+
blockquote pre {
141+
background-color: rgba(255, 255, 255, 0.1);
142+
padding: 2rem;
143+
margin: 1rem;
144+
text-wrap: wrap;
145+
border-radius: .5rem;
146+
}
141147
p {
142148
text-align: center;
143149
padding: 0.3 rem;

web_visualizer/src/playground.js

Lines changed: 0 additions & 103 deletions
This file was deleted.

web_visualizer/src/tests/asyncTree.js

Lines changed: 0 additions & 123 deletions
This file was deleted.

0 commit comments

Comments
 (0)