Spaces:
Running
Running
Add org card index.html
Browse files- index.html +136 -18
index.html
CHANGED
|
@@ -1,19 +1,137 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 6 |
+
<title>Automatum Data GmbH</title>
|
| 7 |
+
<style>
|
| 8 |
+
* { box-sizing: border-box; margin: 0; padding: 0; }
|
| 9 |
+
body {
|
| 10 |
+
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
|
| 11 |
+
color: #1a1a2e;
|
| 12 |
+
background: transparent;
|
| 13 |
+
line-height: 1.6;
|
| 14 |
+
}
|
| 15 |
+
.org-card {
|
| 16 |
+
max-width: 900px;
|
| 17 |
+
margin: 0 auto;
|
| 18 |
+
padding: 24px;
|
| 19 |
+
}
|
| 20 |
+
.org-desc {
|
| 21 |
+
font-size: 1.02em;
|
| 22 |
+
color: #334155;
|
| 23 |
+
margin-bottom: 28px;
|
| 24 |
+
}
|
| 25 |
+
.org-desc strong { color: #0f172a; }
|
| 26 |
+
.org-desc a {
|
| 27 |
+
color: #2563eb;
|
| 28 |
+
text-decoration: none;
|
| 29 |
+
}
|
| 30 |
+
.org-desc a:hover { text-decoration: underline; }
|
| 31 |
+
|
| 32 |
+
h2 {
|
| 33 |
+
font-size: 1.2em;
|
| 34 |
+
margin-bottom: 14px;
|
| 35 |
+
color: #0f172a;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.dataset-grid {
|
| 39 |
+
display: grid;
|
| 40 |
+
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
| 41 |
+
gap: 14px;
|
| 42 |
+
margin-bottom: 28px;
|
| 43 |
+
}
|
| 44 |
+
.dataset-card {
|
| 45 |
+
border: 1px solid #e2e8f0;
|
| 46 |
+
border-radius: 10px;
|
| 47 |
+
padding: 16px 18px;
|
| 48 |
+
background: #f8fafc;
|
| 49 |
+
transition: box-shadow 0.2s, border-color 0.2s;
|
| 50 |
+
text-decoration: none;
|
| 51 |
+
color: inherit;
|
| 52 |
+
display: block;
|
| 53 |
+
}
|
| 54 |
+
.dataset-card:hover {
|
| 55 |
+
box-shadow: 0 4px 14px rgba(0,0,0,0.07);
|
| 56 |
+
border-color: #93c5fd;
|
| 57 |
+
}
|
| 58 |
+
.dataset-card h3 {
|
| 59 |
+
margin: 0 0 4px 0;
|
| 60 |
+
font-size: 1em;
|
| 61 |
+
color: #1e3a5f;
|
| 62 |
+
}
|
| 63 |
+
.dataset-card .stats {
|
| 64 |
+
font-size: 0.85em;
|
| 65 |
+
color: #64748b;
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
.install-section {
|
| 69 |
+
margin-bottom: 20px;
|
| 70 |
+
}
|
| 71 |
+
.install-section code {
|
| 72 |
+
background: #f1f5f9;
|
| 73 |
+
padding: 3px 8px;
|
| 74 |
+
border-radius: 5px;
|
| 75 |
+
font-size: 0.92em;
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
.footer-note {
|
| 79 |
+
font-size: 0.88em;
|
| 80 |
+
color: #94a3b8;
|
| 81 |
+
margin-top: 12px;
|
| 82 |
+
}
|
| 83 |
+
.footer-note a { color: #2563eb; text-decoration: none; }
|
| 84 |
+
.footer-note a:hover { text-decoration: underline; }
|
| 85 |
+
</style>
|
| 86 |
+
</head>
|
| 87 |
+
<body>
|
| 88 |
+
<div class="org-card">
|
| 89 |
+
|
| 90 |
+
<p class="org-desc">
|
| 91 |
+
<strong>Automatum Data</strong> provides high-precision drone-based traffic datasets
|
| 92 |
+
for autonomous driving research. Our data contains detailed trajectories, velocities,
|
| 93 |
+
accelerations, and lane assignments of traffic participants — extracted from
|
| 94 |
+
bird’s-eye-view drone recordings.
|
| 95 |
+
<br><br>
|
| 96 |
+
These publicly available datasets are intended for <strong>research purposes</strong>.
|
| 97 |
+
Our full data pool contains over <strong>1,000 hours</strong> of processed drone video.
|
| 98 |
+
For commercial use or access to extended datasets, visit
|
| 99 |
+
<a href="https://automatum-data.com/de" target="_blank">automatum-data.com</a>.
|
| 100 |
+
</p>
|
| 101 |
+
|
| 102 |
+
<h2>📦 Available Datasets</h2>
|
| 103 |
+
|
| 104 |
+
<div class="dataset-grid">
|
| 105 |
+
<a class="dataset-card" href="https://huggingface.co/datasets/AutomatumData/automatum-data-crossing">
|
| 106 |
+
<h3>🔀 T-Crossing Dataset</h3>
|
| 107 |
+
<div class="stats">2 recordings · 683 vehicles</div>
|
| 108 |
+
</a>
|
| 109 |
+
<a class="dataset-card" href="https://huggingface.co/datasets/AutomatumData/automatum-data-roundabout">
|
| 110 |
+
<h3>🔁 Roundabout Dataset</h3>
|
| 111 |
+
<div class="stats">2 recordings · 212 vehicles</div>
|
| 112 |
+
</a>
|
| 113 |
+
<a class="dataset-card" href="https://huggingface.co/datasets/AutomatumData/automatum-data-highway-with-ramps">
|
| 114 |
+
<h3>🛣️ Highway with Ramps</h3>
|
| 115 |
+
<div class="stats">4 recordings · 7,178 vehicles</div>
|
| 116 |
+
</a>
|
| 117 |
+
<a class="dataset-card" href="https://huggingface.co/datasets/AutomatumData/automatum-data-full-highway">
|
| 118 |
+
<h3>🚗 Full Highway Dataset</h3>
|
| 119 |
+
<div class="stats">114 recordings · ~200k vehicles</div>
|
| 120 |
+
</a>
|
| 121 |
+
</div>
|
| 122 |
+
|
| 123 |
+
<div class="install-section">
|
| 124 |
+
<h2>🔧 Python Library</h2>
|
| 125 |
+
<p class="org-desc">
|
| 126 |
+
Install our open-source library to work with the data:
|
| 127 |
+
<code>pip install openautomatumdronedata</code>
|
| 128 |
+
</p>
|
| 129 |
+
</div>
|
| 130 |
+
|
| 131 |
+
<p class="footer-note">
|
| 132 |
+
Learn more at <a href="https://automatum-data.com/de" target="_blank">automatum-data.com</a>
|
| 133 |
+
</p>
|
| 134 |
+
|
| 135 |
+
</div>
|
| 136 |
+
</body>
|
| 137 |
</html>
|