-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1308 lines (538 loc) · 30.3 KB
/
index.html
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Source Themes Academic 3.3.0">
<meta name="generator" content="Hugo 0.54.0" />
<meta name="description" content="IMMERSE project">
<link rel="alternate" hreflang="en-us" href="https://immerse-ocean.eu/">
<meta name="theme-color" content="#2962ff">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha256-eSi1q2PG6J7g7ib17yAaWMcrr5GrtohYChqibrV7PBE=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.6/css/academicons.min.css" integrity="sha256-uFVgMKfistnJAfoCUQigIl+JfUaP47GrRKjf6CTPVmw=" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.0/css/all.css" integrity="sha384-aOkxzJ5uQz7WBObEZcHvV5JvRW3TUc2rNPA7pe3AwnsUohiw1Vj2Rgx2KSOkF5+h" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.2.5/jquery.fancybox.min.css" integrity="sha256-ygkqlh3CYSUri3LhQxzdcm0n1EQvH2Y+U5S2idbLtxs=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:400,400italic,700|Roboto+Mono">
<link rel="stylesheet" href="/styles.css">
<link rel="alternate" href="https://immerse-ocean.eu/index.xml" type="application/rss+xml" title="IMMERSE project website">
<link rel="feed" href="https://immerse-ocean.eu/index.xml" type="application/rss+xml" title="IMMERSE project website">
<link rel="manifest" href="/site.webmanifest">
<link rel="icon" type="image/png" href="/img/icon.png">
<link rel="apple-touch-icon" type="image/png" href="/img/icon-192.png">
<link rel="canonical" href="https://immerse-ocean.eu/">
<meta property="twitter:card" content="summary">
<meta property="twitter:site" content="@project_IMMERSE">
<meta property="twitter:creator" content="@project_IMMERSE">
<meta property="og:site_name" content="IMMERSE project website">
<meta property="og:url" content="https://immerse-ocean.eu/">
<meta property="og:title" content="IMMERSE project website">
<meta property="og:description" content="IMMERSE project"><meta property="og:image" content="https://immerse-ocean.eu/img/icon-192.png">
<meta property="og:locale" content="en-us">
<meta property="og:updated_time" content="2021-06-16T17:14:22+02:00">
<title>IMMERSE project website</title>
</head>
<body id="top" data-spy="scroll" data-target="#navbar-main" data-offset="71" >
<aside class="search-results" id="search">
<div class="container">
<section class="search-header">
<div class="row no-gutters justify-content-between mb-3">
<div class="col-6">
<h1>Search</h1>
</div>
<div class="col-6 col-search-close">
<a class="js-search" href="#"><i class="fas fa-times-circle text-muted" aria-hidden="true"></i></a>
</div>
</div>
<div id="search-box">
<input name="q" id="search-query" placeholder="Search..." autocapitalize="off"
autocomplete="off" autocorrect="off" role="textbox" spellcheck="false" type="search">
</div>
</section>
<section class="section-search-results">
<div id="search-hits">
</div>
</section>
</div>
</aside>
<nav class="navbar navbar-light fixed-top navbar-expand-lg py-0" id="navbar-main">
<div class="container">
<a class="navbar-brand" href="/"><img src="/img/headers/immerse-header-logo.png" alt="IMMERSE project website"></a>
<button type="button" class="navbar-toggler" data-toggle="collapse"
data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
<span><i class="fas fa-bars"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="/#about" data-target="#about">
<span>Home</span>
</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">
<span>People</span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/people/coordination-board" data-target="people/coordination-board">
<span>Coordination board</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/people/executive-board" data-target="people/executive-board">
<span>Executive board</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/people/advisory-board" data-target="people/advisory-board">
<span>Advisory board</span>
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">
<span>Software</span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="https://www.nemo-ocean.eu" data-target="https://www.nemo-ocean.eu">
<span>The NEMO ocean model</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/nemo-simsar/" data-target="https://immerse-ocean.eu/nemo-simsar/">
<span>Sharing NEMO experiments</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="https://github.com/MetOffice/ocean_error_covs" data-target="https://github.com/MetOffice/ocean_error_covs">
<span>Analysing error covariances</span>
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">
<span>Demonstrators</span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="https://github.com/NEMO-ocean/NEMO-examples" data-target="https://github.com/NEMO-ocean/NEMO-examples">
<span>NEMO idealized test cases</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/prototypes" data-target="prototypes">
<span>Prototype models for CMEMS</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/downstream-use-cases" data-target="downstream-use-cases">
<span>Downstream use cases</span>
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">
<span>Dissemination</span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/publications" data-target="publications">
<span>Publications</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="/deliverables" data-target="deliverables">
<span>Deliverables</span>
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">
<span>Join us</span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="https://forge.nemo-ocean.eu/nemo" data-target="https://forge.nemo-ocean.eu/nemo">
<span>NEMO repository</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="http://nemo-ocean.discourse.group" data-target="http://nemo-ocean.discourse.group">
<span>NEMO users forum</span>
</a>
</li>
<li class="dropdown-item my-0 py-0 mx-0 px-0">
<a href="https://chat.immerse-ocean.eu/login%20" data-target="https://chat.immerse-ocean.eu/login ">
<span>Mattermost server</span>
</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="/#posts" data-target="#posts">
<span>News</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link js-search" href="#"><i class="fas fa-search" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
</nav>
<span id="homepage" style="display: none"></span>
<section id="about" class="home-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p>IMMERSE is a research project which aims to prepare <strong>numerical ocean models</strong> for the next generation <a href="http://marine.copernicus.eu/" target="_blank">Copernicus Marine Environment Monitoring Service</a> (CMEMS). We intend to develop new capabilities in order to:</p>
<ul>
<li>enable the production of ocean forecasts and analyses that exploit upcoming <strong>high resolution satellite datasets</strong>;</li>
<li>deliver ocean analyses and forecasts with the <strong>higher spatial resolution</strong> and additional <strong>process complexity</strong> demanded by users;</li>
<li>exploit the opportunities of new <strong>high performance computing technology</strong>;</li>
<li>allow <strong>easy interfacing of CMEMS products</strong> with detailed local coastal models.</li>
</ul>
<p>These developments are delivered in the <strong><a href="https://www.nemo-ocean.eu" target="_blank">NEMO</a> ocean model</strong>, an established, world-class ocean modelling system that already forms the basis of the majority of the Copernicus Marine Environment Monitoring Service analysis and forecast products.</p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="//player.vimeo.com/video/562600514" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</section>
<section id="partners" class="home-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div>
<h1>Partners</h1>
</div>
<p>The IMMERSE consortium combines expertise in ocean modelling, applied mathematics, high performance computing, software engineering, and in-depth knowledge of the CMEMS systems and downstream CMEMS systems.</p>
<p><img src="img/logos/0_logo-all-partners.png" alt="Partners logo" /><!-- .element height="10%" width="10%" --></p>
</div>
</div>
</div>
</section>
<section id="activities" class="home-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div>
<h1>Methodology</h1>
</div>
<p>IMMERSE project integrates activities ranging from <a href="https://www.nemo-ocean.eu" target="_blank">NEMO</a> ocean model core development to demonstration for <a href="http://marine.copernicus.eu/" target="_blank">Copernicus Marine Services</a> downstream users.</p>
<figure>
<img src="img/work-packages/all-wps.png" width="95%" />
</figure>
</div>
</div>
</div>
</section>
<section id="posts" class="home-section">
<div class="container">
<div class="row">
<div class="col-12 col-lg-4 section-heading">
<h1>Recent Posts</h1>
</div>
<div class="col-12 col-lg-8">
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<meta content="2021-06-16 17:14:22 +0200 CEST" itemprop="datePublished">
<meta content="2021-06-16 17:14:22 +0200 CEST" itemprop="dateModified">
<div class="article-metadata">
<span class="article-date">
<time>Jun 16, 2021</time>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2021-06-16-nemo-beta-release/" itemprop="url">Announcing the NEMO v4.2 Release Candidate for beta-testers</a>
</h3>
<div class="article-style" itemprop="articleBody">
<p>After 30 months of efforts and a global pandemics, the IMMERSE project team and the NEMO system team are glad to officially announce the beta-release of NEMO version 4.2 almost on time ! Congratulations to all the NEMO developpers for this major contribution to the evolution of CMEMS services.</p>
<p><a href="https://nemo-ocean.discourse.group/t/announcing-the-4-2-release-candidate-and-call-for-beta-testers/86" target="_blank"><img src="/img/posts/nemo-4.2_RC-release-june2021.jpg" alt="" /></a></p>
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2021-06-16-nemo-beta-release/" class="btn btn-outline-primary my-1">
CONTINUE READING
</a>
</p>
</div>
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<meta content="2021-06-14 08:23:10 +0100 +0100" itemprop="datePublished">
<meta content="2021-06-14 08:23:10 +0100 +0100" itemprop="dateModified">
<div class="article-metadata">
<span class="article-date">
<time>Jun 14, 2021</time>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2021-06-14-new-nemo-users-forum/" itemprop="url">A new forum for the NEMO users community </a>
</h3>
<div class="article-style" itemprop="articleBody">
The need for setting up a new forum for NEMO users to share experience and tips was raised during one of the splinter sessions of our general assembly in March 2021. In response to this need, the NEMO system team opened a new forum on discourse a week ago. Open 7 days ago the forum has already 57 registered users ! Thanks to the NEMO system team for its reactivity !
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2021-06-14-new-nemo-users-forum/" class="btn btn-outline-primary my-1">
CONTINUE READING
</a>
</p>
</div>
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<meta content="2021-04-26 13:23:10 +0100 +0100" itemprop="datePublished">
<meta content="2021-04-26 13:23:10 +0100 +0100" itemprop="dateModified">
<div class="article-metadata">
<span class="article-date">
<time>Apr 26, 2021</time>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2021-04-26-virtual-egu-session/" itemprop="url">A session dedicated to NEMO development at vEGU2021</a>
</h3>
<div class="article-style" itemprop="articleBody">
<p>The IMMERSE consortium has organized a session dedicated to the numerical modelling of ocean circulation jointly supported by the NEMO consortium at vEGU2021. Several of the new developments to NEMO supported by IMMERSE have been presented during this vibrant session. We are now all looking foreward to meet again in person next year !</p>
<p><a href="https://meetingorganizer.copernicus.org/EGU21/session/39731" target="_blank"><img src="/img/posts/immerse-vEGU2021-session.png" alt="" /></a></p>
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2021-04-26-virtual-egu-session/" class="btn btn-outline-primary my-1">
CONTINUE READING
</a>
</p>
</div>
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<meta content="2021-03-10 13:23:10 +0100 CET" itemprop="datePublished">
<meta content="2021-03-10 13:23:10 +0100 CET" itemprop="dateModified">
<div class="article-metadata">
<span class="article-date">
<time>Mar 10, 2021</time>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2021-03-10-virtual-general-assembly/" itemprop="url">IMMERSE Virtual General Assembly on March 3-5, 2021</a>
</h3>
<div class="article-style" itemprop="articleBody">
<p>The project general assembly was held virtually on March 3-5. About 80 participants and key stakeholder have registered to our plenary sessions and splinter discussions. A great time for us to take stock of the project progress and refine our plans for the coming months.</p>
<p><img src="/img/posts/immerse-intro-slide_ga-2021.jpg" alt="" /></p>
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2021-03-10-virtual-general-assembly/" class="btn btn-outline-primary my-1">
CONTINUE READING
</a>
</p>
</div>
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<meta content="2019-12-15 13:23:10 +0100 CET" itemprop="datePublished">
<meta content="2019-12-15 13:23:10 +0100 CET" itemprop="dateModified">
<div class="article-metadata">
<span class="article-date">
<time>Dec 15, 2019</time>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2019-12-15-general-assembly-and-review/" itemprop="url">IMMERSE General Assembly and review meeting on Dec 12-13, 2019</a>
</h3>
<div class="article-style" itemprop="articleBody">
The project General Assembly was held in Paris on 12-13 Dec 2019. We decided to gather at the same location and time as the NEMO System Team for its annual merge party. The first two years of the IMMERSE project indeed mostly consist in developments to the NEMO ocean model and this is why we articulate our agenda and activities with the NEMO consortium. The meeting consisted in a combination of talks reviewing the project progress and more in depth scientific presentations.
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2019-12-15-general-assembly-and-review/" class="btn btn-outline-primary my-1">
CONTINUE READING
</a>
</p>
</div>
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<meta content="2019-04-08 17:03:13 +0200 CEST" itemprop="datePublished">
<meta content="2019-04-08 17:03:13 +0200 CEST" itemprop="dateModified">
<div class="article-metadata">
<span class="article-date">
<time>Apr 8, 2019</time>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2019-04-07-webinar-downstream-toolbox/" itemprop="url"> Webinar Downstream Toolbox</a>
</h3>
<div class="article-style" itemprop="articleBody">
On April 5th 2019, the IMMERSE Users Remote Workshop was held to introduce the IMMERSE interfaces to the CMEMS users community and coastal modellers, outside the project. The webinar was organized by CMCC Foundation and NOC.
After a brief introduction to present the IMMERSE project and the Task 7.3 by Dorotea Iovino (CMCC), Yann Drillet from Mercator Ocean presented CMEMS and its main actions on Marine Services & System Evolutions, and the structure of DIAS « WekEO ».
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2019-04-07-webinar-downstream-toolbox/" class="btn btn-outline-primary my-1">
CONTINUE READING
</a>
</p>
</div>
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<meta content="2019-02-10 13:23:10 +0100 CET" itemprop="datePublished">
<meta content="2019-02-10 13:23:10 +0100 CET" itemprop="dateModified">
<div class="article-metadata">
<span class="article-date">
<time>Feb 10, 2019</time>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2019-02-10-project-kick-off-meeting/" itemprop="url">IMMERSE Kick-Off meeting on Jan 24-25, 2019</a>
</h3>
<div class="article-style" itemprop="articleBody">
<p>IMMERSE project was officially launched on 24 and 25 January 2019 in Grenoble during the kick-off meeting with fourteen project partners. This kick-off meeting was an opportunity for the consortium to discuss the project methodology, the different activities to be implemented and the upcoming deadlines.</p>
<p><img src="/img/posts/immerse-group-photo-kom.jpg" alt="" /></p>