-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (100 loc) · 4.37 KB
/
Copy pathindex.html
File metadata and controls
112 lines (100 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MEDWEAR: Open Standard for Wearable Health Data</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="favicon.svg" type="image/svg+xml" />
</head>
<body>
<header>
<a href="index.html" class="header-brand">MEDWEAR</a>
<nav>
<a href="index.html" class="active">Home</a>
<a href="about.html">About</a>
<a href="documentation.html">Documentation</a>
<a href="schemas.html">Schemas</a>
<a href="med-api.html">MED-API</a>
<a href="use-cases.html">Use Cases</a>
<a href="contribute.html">Contribute</a>
</nav>
</header>
<div class="hero">
<div class="hero-content">
<h1>Open Standards for<br>Medical Wearables</h1>
<p>Vendor-agnostic, FAIR-compliant schemas for the next generation of wearable health data.</p>
<div class="hero-actions">
<a href="documentation.html" class="btn-primary">Get Started</a>
<a href="about.html" class="btn-secondary">Learn More</a>
</div>
</div>
</div>
<div class="content-container">
<main>
<section>
<h2>What is MEDWEAR?</h2>
<p>
MEDWEAR is a collaborative project funded by Open Research Data of the ETH Board.
We define open standards for raw wearable sensor data that are vendor-agnostic and
FAIR (Findable, Accessible, Interoperable, and Reusable).
</p>
<p>Through community-driven development, we are creating:</p>
<ul>
<li>A data collection platform and REST API for managing wearable health data at scale.</li>
<li>Expanded Open mHealth schemas based on IEEE 1752, covering high-frequency biosignals.</li>
<li>Conversion tools from JSON schemas to ROS 2 message definitions for robotic applications.</li>
<li>Libraries for real-time data stream support and educational materials.</li>
</ul>
</section>
<section>
<h2>Explore MEDWEAR</h2>
<div class="quick-links">
<a href="about.html" class="quick-link-card">
<h3>About</h3>
<p>Project background, collaborating institutions, and the motivation for wearable data standardization.</p>
</a>
<a href="documentation.html" class="quick-link-card">
<h3>Documentation</h3>
<p>Get started with the data schemas or deploy the MEDWEAR data collection platform.</p>
</a>
<a href="schemas.html" class="quick-link-card">
<h3>Schemas</h3>
<p>JSON Schema and ROS 2 message definitions for BCG, ECG, PPG, EEG, EDA, IMU, and more.</p>
</a>
<a href="med-api.html" class="quick-link-card">
<h3>MED-API</h3>
<p>REST API reference for ingesting, querying, and managing wearable health data at scale.</p>
</a>
<a href="use-cases.html" class="quick-link-card">
<h3>Use Cases</h3>
<p>Two pilot studies showing MEDWEAR in clinical and robotics settings — offline and online data flows.</p>
</a>
<a href="contribute.html" class="quick-link-card">
<h3>Contribute</h3>
<p>Join the community and help shape open wearable data standards.</p>
</a>
</div>
</section>
<section>
<h2>Recent Highlights</h2>
<ul>
<li>🤖 <a href="https://sites.google.com/ethz.ch/medrob2026/home" target="_blank" rel="noopener">BioRob 2026
Workshop MED-ROB</a> - Medical Wearables for Robotics. 1st August, 2026 in Edmonton, Canada</li>
<li>🏥 Symposium: "Toward the Next Standard for Medical Wearables in Switzerland. 6th May, 2025 @ ETH Zurich"
</li>
<li>📊 E-Survey with 31 participants from academia, clinics, and industry.</li>
<li>🛠 GitHub repository containing new physiological signal data schemas.</li>
</ul>
</section>
</main>
</div>
<footer>
<div class="footer-logos">
<img src="assets/images/scai_logo.png" alt="SCAI Lab Logo" />
<img src="assets/images/ethz_logo.png" alt="ETH Zurich Logo" class="ethz-logo" />
</div>
<p>© 2026 ETH Zurich – MEDWEAR Project | Contact: diego.paez@scai.ethz.ch · monica.perezserrano@hest.ethz.ch</p>
</footer>
</body>
</html>