-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisualizations.html
More file actions
53 lines (44 loc) · 1.84 KB
/
Copy pathvisualizations.html
File metadata and controls
53 lines (44 loc) · 1.84 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Visualizations | Thanasis Troboukis</title>
<!-- Use the SAME stylesheet as your main page -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Data Visualizations</h1>
<p>Selected interactives and graphics</p>
<a class="viz-button" href="index.html">Back to CV</a>
</header>
<main class="viz-list">
<section class="viz-item viz-item--full">
<h2 class="viz-title">Air Quality</h2>
<iframe
class="viz-embed"
src="./d3_air_quality/index.html"
title="Air — Double Graph"
loading="lazy"
></iframe>
<p class="viz-desc">
<p>
This interactive visualization was developed with <strong>JavaScript</strong> and <strong>D3.js</strong>, using a
<strong>force-based simulation</strong> inspired by computational physics. Each circle represents one hour of air-quality
measurements, while <strong>centering</strong> and <strong>collision forces</strong> pack thousands of points into compact,
non-overlapping clusters.
</p>
<p>
The graphic loads structured environmental data and maps particulate concentrations to a
<strong>scientifically grounded color scale</strong>, reflecting air-quality threshold logic (normal–moderate–elevated).
When the user switches between <strong>PM 2.5</strong> and <strong>PM 10</strong>, the visualization updates by
reconfiguring the simulation forces and re-settling the swarm, enabling fast comparison across pollutants.
</p>
<p>
Overall, the project combines <strong>web engineering</strong>, <strong>data visualization</strong>, and
<strong>physics-inspired algorithms</strong> to translate thousands of hourly measurements into an accessible interactive
narrative about urban air quality.
</p>
<br>
</p>