Spaces:
Running
Running
Commit
·
b4e090b
1
Parent(s):
5e3b473
Add website
Browse files- index.html +216 -0
- static/css/index.css +191 -0
- static/images/Blue sky image.png +3 -0
index.html
ADDED
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<section class="section"><!DOCTYPE html>
|
4 |
+
<html>
|
5 |
+
<head>
|
6 |
+
<meta charset="utf-8">
|
7 |
+
<meta name="description"
|
8 |
+
content="TerraMind Blue-Sky Challenge – a bi-monthly award for bold geospatial AI ideas.">
|
9 |
+
<meta name="keywords" content="TerraMind, geospatial AI, challenge, foundation models">
|
10 |
+
<meta name="author" content="IBM & ESA">
|
11 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
12 |
+
<title>TerraMind Blue-Sky Challenge</title>
|
13 |
+
|
14 |
+
<!-- Fonts & CSS -->
|
15 |
+
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
|
16 |
+
rel="stylesheet">
|
17 |
+
<!-- <link rel="stylesheet" href="./static/css/bulma.min.css">-->
|
18 |
+
<!-- <link rel="stylesheet" href="./static/css/fontawesome.all.min.css">-->
|
19 |
+
<link rel="stylesheet" href="./static/css/index.css">
|
20 |
+
|
21 |
+
<!-- Light-gray background for every 2nd block -->
|
22 |
+
<style>
|
23 |
+
section.alt-bg:nth-of-type(odd){background:#f5f5f5;}
|
24 |
+
</style>
|
25 |
+
</head>
|
26 |
+
<body>
|
27 |
+
|
28 |
+
<section class="hero is-medium is-parallax full-bleed hero-bg"
|
29 |
+
style="background:url('./static/images/Blue sky image.png') center/cover no-repeat;">
|
30 |
+
<div class="hero-body">
|
31 |
+
<div class="container is-max-desktop has-text-centered">
|
32 |
+
<h1 class="title is-1 white">TerraMind Blue-Sky Challenge</h1>
|
33 |
+
<!-- 🌍✨-->
|
34 |
+
<br>
|
35 |
+
<p class="subtitle is-5 has-text-weight-semibold white">organized by IBM and ESA</p>
|
36 |
+
<!-- submit button -->
|
37 |
+
<a href="#submit" class="button is-link is-medium is-rounded mt-4">
|
38 |
+
Submit Your Idea
|
39 |
+
</a>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
</section>
|
43 |
+
|
44 |
+
<!-- ───────── INTRO ───────── -->
|
45 |
+
|
46 |
+
<section class="section alt-bg full-bleed intro-block">
|
47 |
+
<div class="container is-max-desktop">
|
48 |
+
<p class="intro">
|
49 |
+
A <strong>bi-monthly award</strong> spotlighting the boldest, most imaginative ways to push
|
50 |
+
TerraMind beyond “just another fine-tune”. Whether you’re prototyping a new multi-modal
|
51 |
+
workflow, exploring Thinking-in-Modalities, or inventing a never-seen geospatial
|
52 |
+
application, we want you to share it with everyone.
|
53 |
+
</p>
|
54 |
+
</div>
|
55 |
+
</section>
|
56 |
+
|
57 |
+
<!-- ───────── BENEFITS ───────── -->
|
58 |
+
<section class="section alt-bg full-bleed">
|
59 |
+
<div class="container is-max-desktop">
|
60 |
+
<h2 class="title is-3">🎯 What’s in it for you?</h2>
|
61 |
+
<ul class="content">
|
62 |
+
<li><strong>€1 000 cash</strong> for each round winner (June, August, October, December).</li>
|
63 |
+
<li><strong>Grand Final Prize</strong> — community prestige and more, decided in January from the four round winners.</li>
|
64 |
+
<br>
|
65 |
+
<li>Potential publication in a joint wrap-up paper and broad visibility across IBM, ESA, and the EO community.</li>
|
66 |
+
</ul>
|
67 |
+
</div>
|
68 |
+
</section>
|
69 |
+
|
70 |
+
<!-- ───────── TIMELINE ───────── -->
|
71 |
+
<section class="section alt-bg full-bleed">
|
72 |
+
<div class="container is-max-desktop">
|
73 |
+
<h2 class="title is-3 mt-6">🗓️ 2025 Timeline</h2>
|
74 |
+
<table class="table is-striped is-fullwidth">
|
75 |
+
<thead>
|
76 |
+
<tr>
|
77 |
+
<th>Round</th>
|
78 |
+
<th>Submission deadline</th>
|
79 |
+
<th>Pitch & Winner Announcement</th>
|
80 |
+
</tr>
|
81 |
+
</thead>
|
82 |
+
<tbody>
|
83 |
+
<tr><td>1</td><td><strong>30 Jun 2025</strong></td><td>Early July</td></tr>
|
84 |
+
<tr><td>2</td><td><strong>31 Aug 2025</strong></td><td>Early September</td></tr>
|
85 |
+
<tr><td>3</td><td><strong>31 Oct 2025</strong></td><td>Early November</td></tr>
|
86 |
+
<tr><td>4</td><td><strong>31 Dec 2025</strong></td><td>Early January 2026</td></tr>
|
87 |
+
<tr><td colspan="2"><strong>Grand Final</strong></td><td>Mid-January 2026</td></tr>
|
88 |
+
</tbody>
|
89 |
+
</table>
|
90 |
+
|
91 |
+
<p>Deadlines are set to 23:59 Anywhere-on-Earth (AoE).</p>
|
92 |
+
<br>
|
93 |
+
<p>You can <strong>submit or update</strong> an entry at any time; it rolls into the next open round until it wins or the challenge ends.</p>
|
94 |
+
</div>
|
95 |
+
</section>
|
96 |
+
|
97 |
+
<!-- ───────── WHAT WE’RE LOOKING FOR ───────── -->
|
98 |
+
<section class="section alt-bg full-bleed">
|
99 |
+
<div class="container is-max-desktop">
|
100 |
+
<h2 class="title is-3">🚀 What we’re looking for</h2>
|
101 |
+
<ol class="content">
|
102 |
+
<li><strong>Originality & Impact</strong> – genuinely new or game-changing for the geospatial community.</li>
|
103 |
+
<li><strong>Technical Quality</strong> – sound methodology, thoughtful experiments, clear visuals.</li>
|
104 |
+
<li><strong>Extension of TerraMind</strong> – creative use of multi-modal inputs, generative outputs, TiM chains, etc.</li>
|
105 |
+
<li><strong>Artistic Expression & Narrative</strong> – convincing story and immersive visuals.</li>
|
106 |
+
<li><strong>Open Science & Reproducibility</strong> – share code, models, and data splits (or a clear plan for restricted data).</li>
|
107 |
+
</ol>
|
108 |
+
</div>
|
109 |
+
</section>
|
110 |
+
|
111 |
+
<!-- ───────── HOW TO SUBMIT ───────── -->
|
112 |
+
<section class="section alt-bg full-bleed" id="submit">
|
113 |
+
<div class="container is-max-desktop">
|
114 |
+
<h2 class="title is-3">📬 How to submit</h2>
|
115 |
+
<ol class="content">
|
116 |
+
<li>
|
117 |
+
Start a <strong>new discussion</strong> in the
|
118 |
+
<a href="https://huggingface.co/spaces/ibm-esa-geospatial/community/discussions" target="_blank">Community</a>
|
119 |
+
tab and describe your solution.
|
120 |
+
</li>
|
121 |
+
<li>Keep it under <strong>1 000 words</strong> – include images, tables, and a clear <strong>contact email</strong>.</li>
|
122 |
+
<li>Link your repository, longer blog, or paper.</li>
|
123 |
+
<li>That’s it – we’ll reach out if you’re selected for the pitch.</li>
|
124 |
+
</ol>
|
125 |
+
|
126 |
+
<p>You can find an example submission
|
127 |
+
<a href="https://huggingface.co/spaces/ibm-esa-geospatial/community/discussions" target="_blank">here (TODO)</a>.
|
128 |
+
</p>
|
129 |
+
|
130 |
+
</div>
|
131 |
+
</section>
|
132 |
+
|
133 |
+
<!-- ───────── SELECTION ───────── -->
|
134 |
+
<section class="section alt-bg full-bleed">
|
135 |
+
<div class="container is-max-desktop">
|
136 |
+
<h2 class="title is-3">🏆 Selection process</h2>
|
137 |
+
<ul class="content">
|
138 |
+
<li>The jury short-lists <strong>three</strong> entries for a 10 min online pitch + 10 min Q&A after each deadline.</li>
|
139 |
+
<li>One winner is declared; non-winners remain eligible for later rounds.</li>
|
140 |
+
<li>The four round winners face off in the <strong>Grand Final</strong> for the overall prize.</li>
|
141 |
+
</ul>
|
142 |
+
</div>
|
143 |
+
</section>
|
144 |
+
|
145 |
+
<!-- ───────── RULES ───────── -->
|
146 |
+
<section class="section alt-bg full-bleed">
|
147 |
+
<div class="container is-max-desktop">
|
148 |
+
<h2 class="title is-3">📝 Rules</h2>
|
149 |
+
<ul class="content">
|
150 |
+
<li><strong>Use TerraMind:</strong> your solution <strong>must</strong> leverage the TerraMind model.</li>
|
151 |
+
<li><strong>One win per working group/individual:</strong> you can win only <strong>one</strong> round, but keep sharing great ideas.</li>
|
152 |
+
<li><strong>Grand-final refinement:</strong> each round winner may refine their project before the final decision.</li>
|
153 |
+
</ul>
|
154 |
+
<p>Please read the full set of conditions in our
|
155 |
+
<a href="https://platform.ai4eo.eu/termsandconditions.pdf" target="_blank">Terms & Conditions</a>.
|
156 |
+
</p>
|
157 |
+
</div>
|
158 |
+
</section>
|
159 |
+
|
160 |
+
<!-- ───────── JURY ───────── -->
|
161 |
+
<section class="section alt-bg full-bleed">
|
162 |
+
<div class="container is-max-desktop">
|
163 |
+
<h2 class="title is-3">👩⚖️ Jury</h2>
|
164 |
+
<p class="content">
|
165 |
+
Experts from IBM, ESA, and independent researchers with deep experience in geospatial AI.
|
166 |
+
</p>
|
167 |
+
</div>
|
168 |
+
</section>
|
169 |
+
|
170 |
+
<!-- ───────── SPARK & FAQ ───────── -->
|
171 |
+
<section class="section alt-bg full-bleed">
|
172 |
+
<div class="container is-max-desktop">
|
173 |
+
<h2 class="title is-5">Need a spark?</h2>
|
174 |
+
<p class="content">
|
175 |
+
Browse community ideas in the
|
176 |
+
<a href="https://huggingface.co/spaces/ibm-esa-geospatial/community/discussions" target="_blank">Community</a>
|
177 |
+
tab and leave a reaction if you like them.
|
178 |
+
</p>
|
179 |
+
|
180 |
+
<h2 class="title is-5 mt-6">Have a question?</h2>
|
181 |
+
<p class="content mb-4">
|
182 |
+
Open a new discussion titled <code>[Question] topic</code> in the Community tab.
|
183 |
+
</p>
|
184 |
+
<br>
|
185 |
+
<p class="content has-text-centered">
|
186 |
+
<strong>Ready? Share your breakthrough and claim the next TerraMind Blue-Sky Award!</strong>
|
187 |
+
</p>
|
188 |
+
</div>
|
189 |
+
</section>
|
190 |
+
|
191 |
+
<!-- ───────────────────── FOOTER ───────────────────── -->
|
192 |
+
<footer class="footer full-bleed">
|
193 |
+
<div class="container content has-text-centered">
|
194 |
+
<p>© 2025 IBM & ESA – TerraMind Blue-Sky Challenge</p>
|
195 |
+
<p>
|
196 |
+
This site reuses elements from the
|
197 |
+
<a href="https://github.com/nerfies/nerfies.github.io" target="_blank">Nerfies template</a>
|
198 |
+
(CC-BY-SA 4.0).
|
199 |
+
</p>
|
200 |
+
</div>
|
201 |
+
</footer>
|
202 |
+
<script>
|
203 |
+
document.addEventListener('DOMContentLoaded', () => {
|
204 |
+
const hero = document.querySelector('.hero-bg');
|
205 |
+
if (!hero) return; // safety
|
206 |
+
|
207 |
+
window.addEventListener('scroll', () => {
|
208 |
+
const y = window.pageYOffset * 0.4; // 0.2-0.5 = slower/faster
|
209 |
+
hero.style.backgroundPosition = `center ${y}px`;
|
210 |
+
});
|
211 |
+
});
|
212 |
+
</script>
|
213 |
+
</body>
|
214 |
+
</html>
|
215 |
+
</section>
|
216 |
+
</html>
|
static/css/index.css
ADDED
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: 'Noto Sans', sans-serif;
|
3 |
+
}
|
4 |
+
|
5 |
+
|
6 |
+
.footer .icon-link {
|
7 |
+
font-size: 25px;
|
8 |
+
color: #000;
|
9 |
+
}
|
10 |
+
|
11 |
+
.link-block a {
|
12 |
+
margin-top: 5px;
|
13 |
+
margin-bottom: 5px;
|
14 |
+
}
|
15 |
+
|
16 |
+
.dnerf {
|
17 |
+
font-variant: small-caps;
|
18 |
+
}
|
19 |
+
|
20 |
+
|
21 |
+
.teaser .hero-body {
|
22 |
+
padding-top: 0;
|
23 |
+
padding-bottom: 3rem;
|
24 |
+
}
|
25 |
+
|
26 |
+
.teaser {
|
27 |
+
font-family: 'Google Sans', sans-serif;
|
28 |
+
}
|
29 |
+
|
30 |
+
|
31 |
+
.publication-title {
|
32 |
+
}
|
33 |
+
|
34 |
+
.publication-banner {
|
35 |
+
max-height: parent;
|
36 |
+
|
37 |
+
}
|
38 |
+
|
39 |
+
.publication-banner video {
|
40 |
+
position: relative;
|
41 |
+
left: auto;
|
42 |
+
top: auto;
|
43 |
+
transform: none;
|
44 |
+
object-fit: fit;
|
45 |
+
}
|
46 |
+
|
47 |
+
.publication-header .hero-body {
|
48 |
+
}
|
49 |
+
|
50 |
+
.publication-title {
|
51 |
+
font-family: 'Google Sans', sans-serif;
|
52 |
+
}
|
53 |
+
|
54 |
+
.publication-authors {
|
55 |
+
font-family: 'Google Sans', sans-serif;
|
56 |
+
}
|
57 |
+
|
58 |
+
.publication-venue {
|
59 |
+
color: #555;
|
60 |
+
width: fit-content;
|
61 |
+
font-weight: bold;
|
62 |
+
}
|
63 |
+
|
64 |
+
.publication-awards {
|
65 |
+
color: #ff3860;
|
66 |
+
width: fit-content;
|
67 |
+
font-weight: bolder;
|
68 |
+
}
|
69 |
+
|
70 |
+
.publication-authors {
|
71 |
+
}
|
72 |
+
|
73 |
+
.publication-authors a {
|
74 |
+
color: hsl(204, 86%, 53%) !important;
|
75 |
+
}
|
76 |
+
|
77 |
+
.publication-authors a:hover {
|
78 |
+
text-decoration: underline;
|
79 |
+
}
|
80 |
+
|
81 |
+
.author-block {
|
82 |
+
display: inline-block;
|
83 |
+
}
|
84 |
+
|
85 |
+
.publication-banner img {
|
86 |
+
}
|
87 |
+
|
88 |
+
.publication-authors {
|
89 |
+
/*color: #4286f4;*/
|
90 |
+
}
|
91 |
+
|
92 |
+
.publication-video {
|
93 |
+
position: relative;
|
94 |
+
width: 100%;
|
95 |
+
height: 0;
|
96 |
+
padding-bottom: 56.25%;
|
97 |
+
|
98 |
+
overflow: hidden;
|
99 |
+
border-radius: 10px !important;
|
100 |
+
}
|
101 |
+
|
102 |
+
.publication-video iframe {
|
103 |
+
position: absolute;
|
104 |
+
top: 0;
|
105 |
+
left: 0;
|
106 |
+
width: 100%;
|
107 |
+
height: 100%;
|
108 |
+
}
|
109 |
+
|
110 |
+
.publication-body img {
|
111 |
+
}
|
112 |
+
|
113 |
+
.results-carousel {
|
114 |
+
overflow: hidden;
|
115 |
+
}
|
116 |
+
|
117 |
+
.results-carousel .item {
|
118 |
+
margin: 5px;
|
119 |
+
overflow: hidden;
|
120 |
+
border: 1px solid #bbb;
|
121 |
+
border-radius: 10px;
|
122 |
+
padding: 0;
|
123 |
+
font-size: 0;
|
124 |
+
}
|
125 |
+
|
126 |
+
.results-carousel video {
|
127 |
+
margin: 0;
|
128 |
+
}
|
129 |
+
|
130 |
+
|
131 |
+
.interpolation-panel {
|
132 |
+
background: #f5f5f5;
|
133 |
+
border-radius: 10px;
|
134 |
+
}
|
135 |
+
|
136 |
+
.interpolation-panel .interpolation-image {
|
137 |
+
width: 100%;
|
138 |
+
border-radius: 5px;
|
139 |
+
}
|
140 |
+
|
141 |
+
.interpolation-video-column {
|
142 |
+
}
|
143 |
+
|
144 |
+
.interpolation-panel .slider {
|
145 |
+
margin: 0 !important;
|
146 |
+
}
|
147 |
+
|
148 |
+
.interpolation-panel .slider {
|
149 |
+
margin: 0 !important;
|
150 |
+
}
|
151 |
+
|
152 |
+
#interpolation-image-wrapper {
|
153 |
+
width: 100%;
|
154 |
+
}
|
155 |
+
#interpolation-image-wrapper img {
|
156 |
+
border-radius: 5px;
|
157 |
+
}
|
158 |
+
|
159 |
+
.full-bleed{
|
160 |
+
position:relative;
|
161 |
+
left:50%; right:50%;
|
162 |
+
margin-left:-50vw; margin-right:-50vw;
|
163 |
+
width:100vw;
|
164 |
+
padding-left:0; padding-right:0;
|
165 |
+
}
|
166 |
+
|
167 |
+
.hero-bg{
|
168 |
+
background-position:center 0;
|
169 |
+
background-size:cover;
|
170 |
+
background-attachment:scroll; /* override any “fixed” you had */
|
171 |
+
}
|
172 |
+
|
173 |
+
.white{
|
174 |
+
color:#fff; /* pure white */
|
175 |
+
/*text-shadow:0 2px 4px #0007;!* optional: keeps it readable on bright clouds *!*/
|
176 |
+
}
|
177 |
+
|
178 |
+
.intro{
|
179 |
+
max-width:40rem; /* keep it pleasantly narrow */
|
180 |
+
margin:0 auto; /* centre the block itself */
|
181 |
+
text-align:justify; /* flush left *and* right */
|
182 |
+
text-justify:inter-word;/* better spacing for long lines */
|
183 |
+
}
|
184 |
+
|
185 |
+
.container{
|
186 |
+
padding-left:1rem; /* ≈ 16 px on each side */
|
187 |
+
padding-right:1rem;
|
188 |
+
}
|
189 |
+
|
190 |
+
.hero.full-bleed{ margin-top:-3rem; }
|
191 |
+
.footer.full-bleed{margin-bottom:-3rem;}
|
static/images/Blue sky image.png
ADDED
![]() |
Git LFS Details
|