-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
627 lines (454 loc) · 40 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Romi – Robotics For Microfarms</title>
<meta name='robots' content='noindex, nofollow' />
<link rel='dns-prefetch' href='//maps.google.com' />
<link rel='dns-prefetch' href='//cdnjs.cloudflare.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Romi » Feed" href="https://romi-project.eu/feed/" />
<link rel="alternate" type="application/rss+xml" title="Romi » Comments Feed" href="https://romi-project.eu/comments/feed/" />
<!-- This site uses the Google Analytics by ExactMetrics plugin v6.6.2 - Using Analytics tracking - https://www.exactmetrics.com/ -->
<script src="//www.googletagmanager.com/gtag/js?id=UA-128674756-1" type="text/javascript" data-cfasync="false"></script>
<script type="text/javascript" data-cfasync="false">
var em_version = '6.6.2';
var em_track_user = true;
var em_no_track_reason = '';
var disableStr = 'ga-disable-UA-128674756-1';
/* Function to detect opted out users */
function __gtagTrackerIsOptedOut() {
return document.cookie.indexOf( disableStr + '=true' ) > - 1;
}
/* Disable tracking if the opt-out cookie exists. */
if ( __gtagTrackerIsOptedOut() ) {
window[disableStr] = true;
}
/* Opt-out function */
function __gtagTrackerOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
if ( 'undefined' === typeof gaOptout ) {
function gaOptout() {
__gtagTrackerOptout();
}
}
window.dataLayer = window.dataLayer || [];
if ( em_track_user ) {
function __gtagTracker() {dataLayer.push( arguments );}
__gtagTracker( 'js', new Date() );
__gtagTracker( 'set', {
'developer_id.dNDMyYj' : true,
});
__gtagTracker( 'config', 'UA-128674756-1', {
forceSSL:true, } );
window.gtag = __gtagTracker; (
function () {
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
/* ga and __gaTracker compatibility shim. */
var noopfn = function () {
return null;
};
var newtracker = function () {
return new Tracker();
};
var Tracker = function () {
return null;
};
var p = Tracker.prototype;
p.get = noopfn;
p.set = noopfn;
p.send = function (){
var args = Array.prototype.slice.call(arguments);
args.unshift( 'send' );
__gaTracker.apply(null, args);
};
var __gaTracker = function () {
var len = arguments.length;
if ( len === 0 ) {
return;
}
var f = arguments[len - 1];
if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
if ( 'send' === arguments[0] ) {
var hitConverted, hitObject = false, action;
if ( 'event' === arguments[1] ) {
if ( 'undefined' !== typeof arguments[3] ) {
hitObject = {
'eventAction': arguments[3],
'eventCategory': arguments[2],
'eventLabel': arguments[4],
'value': arguments[5] ? arguments[5] : 1,
}
}
}
if ( typeof arguments[2] === 'object' ) {
hitObject = arguments[2];
}
if ( 'undefined' !== typeof (
arguments[1].hitType
) ) {
hitObject = arguments[1];
}
if ( hitObject ) {
action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction;
hitConverted = mapArgs( hitObject );
__gtagTracker( 'event', action, hitConverted );
}
}
return;
}
function mapArgs( args ) {
var gaKey, hit = {};
var gaMap = {
'eventCategory': 'event_category',
'eventAction': 'event_action',
'eventLabel': 'event_label',
'eventValue': 'event_value',
'nonInteraction': 'non_interaction',
'timingCategory': 'event_category',
'timingVar': 'name',
'timingValue': 'value',
'timingLabel': 'event_label',
};
for ( gaKey in gaMap ) {
if ( 'undefined' !== typeof args[gaKey] ) {
hit[gaMap[gaKey]] = args[gaKey];
}
}
return hit;
}
try {
f.hitCallback();
} catch ( ex ) {
}
};
__gaTracker.create = newtracker;
__gaTracker.getByName = newtracker;
__gaTracker.getAll = function () {
return [];
};
__gaTracker.remove = noopfn;
__gaTracker.loaded = true;
window['__gaTracker'] = __gaTracker;
}
)();
} else {
console.log( "" );
( function () {
function __gtagTracker() {
return null;
}
window['__gtagTracker'] = __gtagTracker;
window['gtag'] = __gtagTracker;
} )();
}
</script>
<!-- / Google Analytics by ExactMetrics -->
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/romi-project.eu\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://romi-project.eu/wp-includes/css/dist/block-library/style.min.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='exactmetrics-popular-posts-style-css' href='https://romi-project.eu/wp-content/plugins/google-analytics-dashboard-for-wp/assets/css/frontend.min.css?ver=6.6.2' type='text/css' media='all' />
<link rel='stylesheet' id='romi-fonts-css' href='https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,900' type='text/css' media='all' />
<link rel='stylesheet' id='romi-styles-css' href='https://romi-project.eu/wp-content/themes/romi/assets/css/styles.css' type='text/css' media='all' />
<link rel='stylesheet' id='romi-style-css' href='https://romi-project.eu/wp-content/themes/romi/style.css?ver=5.7.2' type='text/css' media='all' />
<script type='text/javascript' id='exactmetrics-frontend-script-js-extra'>
/* <![CDATA[ */
var exactmetrics_frontend = {"js_events_tracking":"true","download_extensions":"zip,mp3,mpeg,pdf,docx,pptx,xlsx,rar","inbound_paths":"[{\"path\":\"\\\/go\\\/\",\"label\":\"affiliate\"},{\"path\":\"\\\/recommend\\\/\",\"label\":\"affiliate\"}]","home_url":"https:\/\/romi-project.eu","hash_tracking":"false","ua":"UA-128674756-1"};
/* ]]> */
</script>
<script type='text/javascript' src='https://romi-project.eu/wp-content/plugins/google-analytics-dashboard-for-wp/assets/js/frontend-gtag.min.js?ver=6.6.2' id='exactmetrics-frontend-script-js'></script>
<script type='text/javascript' src='https://romi-project.eu/wp-includes/js/jquery/jquery.min.js?ver=3.5.1' id='jquery-core-js'></script>
<script type='text/javascript' src='https://romi-project.eu/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<!--[if lt IE 9]>
<script type='text/javascript' src='//cdnjs.cloudflare.com/ajax/libs/html5shiv/r29/html5.min.js?ver=5.7.2' id='romi-html5-js'></script>
<![endif]-->
<link rel="https://api.w.org/" href="https://romi-project.eu/wp-json/" /><link rel="alternate" type="application/json" href="https://romi-project.eu/wp-json/wp/v2/pages/417" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://romi-project.eu/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://romi-project.eu/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.7.2" />
<link rel="canonical" href="https://romi-project.eu/" />
<link rel='shortlink' href='https://romi-project.eu/' />
<link rel="alternate" type="application/json+oembed" href="https://romi-project.eu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fromi-project.eu%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://romi-project.eu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fromi-project.eu%2F&format=xml" />
<link rel="icon" href="https://romi-project.eu/wp-content/uploads/2018/10/cropped-ROMI_ICON_green_resize-32x32.png" sizes="32x32" />
<link rel="icon" href="https://romi-project.eu/wp-content/uploads/2018/10/cropped-ROMI_ICON_green_resize-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://romi-project.eu/wp-content/uploads/2018/10/cropped-ROMI_ICON_green_resize-180x180.png" />
<meta name="msapplication-TileImage" content="https://romi-project.eu/wp-content/uploads/2018/10/cropped-ROMI_ICON_green_resize-270x270.png" />
<style type="text/css" id="wp-custom-css">
.brand ul li {
min-width: unset !important;
}
@media (min-width: 768px) {
.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
width: 100%;
}
}
@media (min-width: 992px) {
.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
width: 14.285714285714285714285714285714%;
}
}
@media (min-width: 1200px) {
.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
width: 14.285714285714285714285714285714%;
}
}
.partners {
margin-top: 10px;
margin-bottom: 10px;
}
.partner {
}
div.partner-icon {
height: 162px;
position: relative;
margin-bottom: 20px;
}
a.partner-icon {
position: absolute;
bottom: 0;
}
.partner-text {
font-size: 13px;
line-height: 21px;
margin-top: 0px;
margin-bottom: 40px;
} </style>
</head>
<body class="home page-template-default page page-id-417 wp-custom-logo home-page">
<div class="wrapper">
<div class="visual bg-img">
<img width="1920" height="1280" src="https://romi-project.eu/wp-content/uploads/2018/12/DSC05068-1920x1280.jpg" class="attachment-full size-full" alt="" loading="lazy" srcset="https://romi-project.eu/wp-content/uploads/2018/12/DSC05068-1920x1280.jpg 1920w, https://romi-project.eu/wp-content/uploads/2018/12/DSC05068-1920x1280-300x200.jpg 300w, https://romi-project.eu/wp-content/uploads/2018/12/DSC05068-1920x1280-768x512.jpg 768w, https://romi-project.eu/wp-content/uploads/2018/12/DSC05068-1920x1280-1024x683.jpg 1024w" sizes="(max-width: 1920px) 100vw, 1920px" /> <header id="header">
<div class="container">
<div class="row">
<div class="col-xs-10 col-sm-3">
<a href="https://romi-project.eu/" class="navbar-brand">
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/logo.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> </a>
</div>
</div>
</div>
</header><!-- end header -->
<div class="cell">
<div class="container">
<p><img class="h1 alignnone wp-image-35 size-full" src="https://romi-project.eu//wp-content/uploads/2018/06/img-text.svg" alt="" /></p>
</div>
</div>
</div><!-- end visual -->
<div class="message-holder">
<div class="container message">
<div class="text">
<h4>ROMI is a four-year Europe-funded research project committed to promote a sustainable, local, and human-scale agriculture. It is developing an affordable, multipurpose platform adapted to support organic and polyculture market-garden farms.</h4>
</div>
</div>
</div><!-- end message -->
<div class="slider">
<div class="information bg-img ">
<img width="1700" height="1133" src="https://romi-project.eu/wp-content/uploads/2018/06/bg-information-02.jpg" class="attachment-full size-full" alt="" loading="lazy" srcset="https://romi-project.eu/wp-content/uploads/2018/06/bg-information-02.jpg 1700w, https://romi-project.eu/wp-content/uploads/2018/06/bg-information-02-300x200.jpg 300w, https://romi-project.eu/wp-content/uploads/2018/06/bg-information-02-768x512.jpg 768w, https://romi-project.eu/wp-content/uploads/2018/06/bg-information-02-1024x682.jpg 1024w" sizes="(max-width: 1700px) 100vw, 1700px" /> </div><!-- end information -->
</div><!-- end slider -->
<div class="message-holder">
<div class="container message">
<div class="text">
<h4>The platform constitutes robotic tools, research, data and shared documentation and aims to help farming communities increase their production and improve their working conditions. </h4>
</div>
</div>
</div><!-- end message -->
<div class="information bg-img right">
<img width="2000" height="998" src="https://romi-project.eu/wp-content/uploads/2018/12/slider.jpg" class="attachment-full size-full" alt="" loading="lazy" srcset="https://romi-project.eu/wp-content/uploads/2018/12/slider.jpg 2000w, https://romi-project.eu/wp-content/uploads/2018/12/slider-300x150.jpg 300w, https://romi-project.eu/wp-content/uploads/2018/12/slider-768x383.jpg 768w, https://romi-project.eu/wp-content/uploads/2018/12/slider-1024x511.jpg 1024w" sizes="(max-width: 2000px) 100vw, 2000px" /> <div class="container">
<figure>
<div class="bg-img">
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/bg-element-01.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> </div>
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/img-title-01.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> <p>Open-source robotic tools can assist farmers in completing physically demanding or tedious tasks and can help with planning complex planting. Over four years, ROMI will work on the development of three robotic tools: a mechanical weeding robot, an aerial robot for crop monitoring and a 3D scanner for phenotyping in indoor and outdoor environments.</p>
</figure>
</div>
</div><!-- end information -->
<div class="information bg-img ">
<img width="1700" height="1133" src="https://romi-project.eu/wp-content/uploads/2018/06/bg-information-03.jpg" class="attachment-full size-full" alt="" loading="lazy" srcset="https://romi-project.eu/wp-content/uploads/2018/06/bg-information-03.jpg 1700w, https://romi-project.eu/wp-content/uploads/2018/06/bg-information-03-300x200.jpg 300w, https://romi-project.eu/wp-content/uploads/2018/06/bg-information-03-768x512.jpg 768w, https://romi-project.eu/wp-content/uploads/2018/06/bg-information-03-1024x682.jpg 1024w" sizes="(max-width: 1700px) 100vw, 1700px" /> <div class="container">
<figure>
<div class="bg-img">
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/bg-element-02.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> </div>
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/12/img-title-fieldstudies.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> <p>Undertaking research directly in the field means ROMI can develop with the expertise of professional farmers. The efficiency and usability of robotic tools are tested across four seasons at two core sites: Chatelain Maraîchage near Paris and at Valldaura Self-sufficiency Labs near Barcelona. Additional community sites may be used for research as the project develops.</p>
</figure>
</div>
</div><!-- end information -->
<div class="slider">
<div class="information bg-img right">
<img width="1837" height="1000" src="https://romi-project.eu/wp-content/uploads/2018/11/20181124-R1-IR_low.jpg" class="attachment-full size-full" alt="" loading="lazy" srcset="https://romi-project.eu/wp-content/uploads/2018/11/20181124-R1-IR_low.jpg 1837w, https://romi-project.eu/wp-content/uploads/2018/11/20181124-R1-IR_low-300x163.jpg 300w, https://romi-project.eu/wp-content/uploads/2018/11/20181124-R1-IR_low-768x418.jpg 768w, https://romi-project.eu/wp-content/uploads/2018/11/20181124-R1-IR_low-1024x557.jpg 1024w" sizes="(max-width: 1837px) 100vw, 1837px" /> <div class="container">
<figure>
<div class="bg-img">
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/bg-element-03.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> </div>
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/12/img-title-phenotyping-3.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> <p>ROMI is working on advanced 3D plant analysis and modelling techniques for indoor and in-field data acquisition. Collecting and analysing data can aid in the development of dashboards that can help monitor the status of farms and provide situated plant data for agronomy. ROMI is working with novel adaptive learning techniques to deal with unexpected situations.</p>
</figure>
</div>
</div><!-- end information -->
</div><!-- end slider -->
<div class="map bg-img">
<img src="https://romi-project.eu/wp-content/uploads/2018/06/bg-element-04.svg" class="attachment-full size-full" alt="" loading="lazy" /> <div class="container">
<div class="row">
<div class="col-xs-12 col-md-6 col-md-push-6">
<div class="map-holder">
<!-- <div id="map"></div> -->
<iframe width="100%" height="823px" frameBorder="0" allowfullscreen src="https://umap.openstreetmap.fr/fr/map/vegetable-microfarms-in-europe_224167?scaleControl=false&miniMap=false&scrollWheelZoom=false&zoomControl=true&allowEdit=false&moreControl=true&searchControl=null&tilelayersControl=null&embedControl=null&datalayersControl=true&onLoadPanel=undefined&captionBar=false#5/51.00/7.00"></iframe>
</div>
</div>
<div class="col-xs-12 col-md-6 col-md-pull-6">
<div class="text">
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/img-title-05.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> <p>A new generation of farmers are starting small innovative market gardens in rural, peri-urban and urban areas across Europe. These farms often grow polycultures of up to 100 different varieties per year on small surfaces between 0.01 to 5 hectares. Polyculture and organic microfarms are proving to be highly productive, sustainable and economical, yet some of the on-the-ground experiences of farming communities are still unknown. ROMI aims to develop a better understanding of this emerging field through research, events and the development of specialised techniques and tools. </p>
</div>
</div>
</div>
</div>
</div><!-- end map -->
<div class="information bg-img ">
<img width="4720" height="1466" src="https://romi-project.eu/wp-content/uploads/2018/12/DSC_0860-edit.jpg" class="attachment-full size-full" alt="" loading="lazy" srcset="https://romi-project.eu/wp-content/uploads/2018/12/DSC_0860-edit.jpg 4720w, https://romi-project.eu/wp-content/uploads/2018/12/DSC_0860-edit-300x93.jpg 300w, https://romi-project.eu/wp-content/uploads/2018/12/DSC_0860-edit-768x239.jpg 768w, https://romi-project.eu/wp-content/uploads/2018/12/DSC_0860-edit-1024x318.jpg 1024w" sizes="(max-width: 4720px) 100vw, 4720px" /> <div class="container">
<figure>
<div class="bg-img">
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/bg-element-02.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> </div>
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/12/img-title-documents.svg" class="attachment-logo-thumbnails size-logo-thumbnails" alt="" loading="lazy" /> <p>ROMI is an open source, open-hardware project which allows communities to adapt and develop designs to their own needs whilst sharing back to a growing community. Documentation, resources and tools are made public as they become available through output of the four-year ROMI research and development.<br />
The project's output is also made publicly available. <a href="https://media.romi-project.eu/documents/index.html" style="font-size: 100%; color: #00aa5b;">The resources currently available are listed on our document page</a>.</p>
</figure>
</div>
</div><!-- end information -->
<section class="newsletter">
<div class="container">
<div class="form-newsletter">
<label for="newslatter">
<img width="1" height="1" src="https://romi-project.eu/wp-content/uploads/2018/06/ico-news.svg" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" /> </label>
[contact-form-7 id="122" title="Newsletter"] </div>
</div>
</section><!-- End newsletter -->
<div class="container">
<div class="container">
<div class="row seven-cols partners">
<div class="col-md-1 partner">
<div class="partner-icon"><a class="partner-icon" href="https://iaac.net/"><img src="https://romi-project.eu/wp-content/uploads/2018/12/iaac-fablabbcn-logo-black-copy.png" width="160px" /></a></div>
<div class="partner-text">IAAC develops an aerial robot that can be used by farmers. Iaac also performs real-world tests in the experimental gardens at the Valldaura Self-Sufficient Labs and imagine end-user scenarios. They help deliver the robotics platform to new markets, managing the communication and user communities.</div>
</div>
<div class="col-md-1 partner">
<div class="partner-icon"><a class="partner-icon" href="https://csl.sony.fr/projects-sustainability/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-01.png" width="160px" /></a></div>
<div class="partner-text">Sony CSL is responsible for the development of the LettuceThink robot. They also contribute to the development of the computer vision and machine learning algorithms, in particular, on the 3D plant scanning and the coupling between the formal plant models and the convolutional neural networks.</div>
</div>
<div class="col-md-1 partner">
<div class="partner-icon"><a class="partner-icon" href="https://www.inria.fr/equipes/mosaic"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-03.png" width="160px" /></a></div>
<div class="partner-text">The Virtual Plants team brings its strong expertise in the area of 3D plant architecture reconstruction and modelling. Notably, the team develops computer pipelines to reconstruct plant architecture from 3D data, to assess their reconstruction, and to segment the architecture in its constituent organs.</div>
</div>
<div class="col-md-1 partner">
<div class="partner-icon"><a class="partner-icon" href="https://adapt.informatik.hu-berlin.de/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-04.png" width="140px" /></a></div>
<div class="partner-text">The Adaptive Systems Group expertise lies in models for closed-loop learning and prediction of sensorimotor data, as well as behaviour recognition and generation. The tasks planned will focus on the learning and adaptive techniques for the interaction between robots and plants.</div>
</div>
<div class="col-md-1 partner">
<div class="partner-icon"><a class="partner-icon" href="http://www.ens-lyon.fr/RDP/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-05.png" width="130px" /></a></div>
<div class="partner-text">The RDP team has a deep understanding of the development and evolution of plant reproductive systems. RDP leads the advanced sensing and analysis of crops, and brings its expertise on the developmental dynamics and modelling of plant architecture.</div>
</div>
<div class="col-md-1 partner">
<div class="partner-icon"><a class="partner-icon" href="http://www.pepinieres-chatelain.com/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-06.png" width="140px" /></a></div>
<div class="partner-text">Chatelain Pépinières runs a commercial market farm near Paris. They perform field studies to test the efficiency of the weeding robot and the usefulness of the crop monitoring applications in real-world situations.</div>
</div>
<div class="col-md-1 partner">
<div class="partner-icon"><a class="partner-icon" href="http://www.france-europe-innovation.fr/"><img src="https://romi-project.eu/wp-content/uploads/2018/08/Logo_FEI_nb.jpg" width="120px" /></a></div>
<div class="partner-text">FEI provides assistance and training for projects partly funded by the European Commission, as coordinator or as partner. FEI intervenes close to them in the administrative, financial coordination and management of their projects.</div>
</div>
</div>
</div>
<p><!--
<div style="overflow: auto;">
<table style="background-color: #ffffff; margin-top: 40px; margin-bottom: 40px;">
<tbody>
<tr>
<td style="width: 210px; padding: 10px; vertical-align: bottom;"><a href="https://iaac.net/"><img src="https://romi-project.eu/wp-content/uploads/2018/12/iaac-fablabbcn-logo-black-copy.png" width="160px" /></a></td>
<td style="width: 210px; padding: 10px; vertical-align: bottom;"><a href="https://csl.sony.fr/projects-sustainability/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-01.png" width="160px" /></a></td>
<td style="width: 210px; padding: 10px; vertical-align: bottom;"><a href="https://www.inria.fr/equipes/mosaic"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-03.png" width="160px" /></a></td>
<td style="width: 210px; padding: 10px; vertical-align: bottom;"><a href="https://adapt.informatik.hu-berlin.de/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-04.png" width="140px" /></a></td>
<td style="width: 210px; padding: 10px; vertical-align: bottom;"><a href="http://www.ens-lyon.fr/RDP/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-05.png" width="130px" /></a></td>
<td style="width: 210px; padding: 10px; vertical-align: bottom;"><a href="http://www.pepinieres-chatelain.com/"><img src="https://romi-project.eu/wp-content/uploads/2018/06/img-brand-06.png" width="140px" /></a></td>
<td style="width: 210px; padding: 10px; vertical-align: bottom;"><a href="http://www.france-europe-innovation.fr/"><img src="https://romi-project.eu/wp-content/uploads/2018/08/Logo_FEI_nb.jpg" width="120px" /></a></td>
</tr>
<tr>
<td style="padding: 10px; font-size: small; vertical-align: top;">IAAC develops an aerial robot that can be used by farmers. Iaac also performs real-world tests in the experimental gardens at the Valldaura Self-Sufficient Labs and imagine end-user scenarios. They help deliver the robotics platform to new markets, managing the communication and user communities.</td>
<td style="padding: 10px; font-size: small; vertical-align: top;">Sony CSL is responsible for the development of the LettuceThink robot. They also contribute to the development of the computer vision and machine learning algorithms, in particular, on the 3D plant scanning and the coupling between the formal plant models and the convolutional neural networks.</td>
<td style="padding: 10px; font-size: small; vertical-align: top;">The Virtual Plants team brings its strong expertise in the area of 3D plant architecture reconstruction and modelling. Notably, the team develops computer pipelines to reconstruct plant architecture from 3D data, to assess their reconstruction, and to segment the architecture in its constituent organs.</td>
<td style="padding: 10px; font-size: small; vertical-align: top;">The Adaptive Systems Group expertise lies in models for closed-loop learning and prediction of sensorimotor data, as well as behaviour recognition and generation. The tasks planned will focus on the learning and adaptive techniques for the interaction between robots and plants.</td>
<td style="padding: 10px; font-size: small; vertical-align: top;">The RDP team has a deep understanding of the development and evolution of plant reproductive systems. RDP leads the advanced sensing and analysis of crops, and brings its expertise on the developmental dynamics and modelling of plant architecture.</td>
<td style="padding: 10px; font-size: small; vertical-align: top;">Chatelain Pépinières runs a commercial market farm near Paris. They perform field studies to test the efficiency of the weeding robot and the usefulness of the crop monitoring applications in real-world situations.</td>
<td style="padding: 10px; font-size: small; vertical-align: top;">FEI provides assistance and training for projects partly funded by the European Commission, as coordinator or as partner. FEI intervenes close to them in the administrative, financial coordination and management of their projects.</td>
</tr>
</tbody>
</table>
</div>
--></p>
</div> <!-- .container-->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-5">
<strong class="logo">
<a href="https://romi-project.eu/">
<span class="sr-only">Romi - Robotics For Microfarms</span>
</a>
</strong>
<ul id="menu-footer-contact-navigation" class="contact-list"><li id="menu-item-149" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-149"><a href="/cdn-cgi/l/email-protection#ddb4b3bbb29dafb2b0b4f0adafb2b7b8bea9f3b8a8"><span class="__cf_email__" data-cfemail="771e1911183705181a1e5a0705181d121403591202">[email protected]</span><i><img src="https://romi-project.eu/wp-content/uploads/2018/06/mail.svg" alt="https://romi-project.eu/wp-content/uploads/2018/06/mail.svg"></i></a></li>
<li id="menu-item-150" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-150"><a href="https://twitter.com/ROMI_EU_PROJECT">@ROMI_EU_PROJECT<i><img src="https://romi-project.eu/wp-content/uploads/2018/06/tw.svg" alt="https://romi-project.eu/wp-content/uploads/2018/06/tw.svg"></i></a></li>
<li id="menu-item-151" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="https://www.facebook.com/ROMIEUProject">/ROMIEUProject/<i><img src="https://romi-project.eu/wp-content/uploads/2018/06/fb.svg" alt="https://romi-project.eu/wp-content/uploads/2018/06/fb.svg"></i></a></li>
</ul> </div><!-- / col -->
<div class="col-md-5 col-sm-7">
<div class="col-wrap">
<div class="subscribe-form">
[contact-form-7 id="165" title="Newsletter Footer"] </div><!-- / subscribe-form -->
</div><!-- / col-wrap -->
</div><!-- / col -->
<div class="col-md-4 col-sm-12">
<div class="info-col">
<div class="descr">
<figure class="img">
<img src="https://romi-project.eu/wp-content/themes/romi/assets/images/eu_flag.svg" alt="Romi">
</figure>
<p>This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 773875</p>
</div>
<div class="copyright">
<p>Copyright 2021 © ROMI - Robotics for Microfarms</p>
</div>
</div><!-- / info-col -->
</div><!-- / col -->
</div><!-- / row -->
</div><!-- / container -->
</footer><!-- end footer -->
</div><!-- end wrapper -->
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type='text/javascript' src='//maps.google.com/maps/api/js?key=AIzaSyCikvA1W0xrpwVwdKCb6EBpyo5J1W3l7JQ&ver=5.7.2' id='romi-googleapis-js'></script>
<script type='text/javascript' src='https://romi-project.eu/wp-content/themes/romi/assets/js/bootstrap.min.js?ver=5.7.2' id='romi-bootstrap-js'></script>
<script type='text/javascript' src='https://romi-project.eu/wp-content/themes/romi/assets/js/slick.min.js?ver=5.7.2' id='eurobus-slick-js'></script>
<script type='text/javascript' id='romi-scripts-js-extra'>
/* <![CDATA[ */
var wp_helper = {"ajax_url":"https:\/\/romi-project.eu\/wp-admin\/admin-ajax.php","theme_path":"https:\/\/romi-project.eu\/wp-content\/themes\/romi","markers_array":[{"title":"Grenoble","lat":45.188529,"lng":5.724523999999974,"info":"<h4>Grenoble<\/h4>\r\n<p>\r\n<br>\r\n<a href=\"https:\/\/www.inria.fr\/en\/\">INRIA<\/a>\r\n<br>\r\n<\/p>"},{"title":"L\u00e9on","lat":43.875828,"lng":-1.3031369999999924,"info":"<h4>L\u00e9on<\/h4>\r\n<p>\r\n<br>\r\n<a href=\"http:\/\/www.cnrs.fr\/fr\/page-daccueil\">CNRS<\/a>\r\n<br>\r\n<\/p>"},{"title":"Berlin","lat":52.520008,"lng":13.404954,"info":"<h4>Berlin<\/h4>\r\n<p>\r\n<br>\r\n<a href=\"https:\/\/www.hu-berlin.de\/de\">Humbolt<\/a>\r\n<br>\r\n<\/p>"},{"title":"Paris","lat":49.935458,"lng":5.047503,"info":"<h4>Paris<\/h4>\r\n<p>\r\n<br>\r\n<a href=\"https:\/\/www.csl.sony.fr\/\">SONY CSL<\/a>\r\n<br>\r\n<\/p>"},{"title":"Chatelain","lat":49.0096906,"lng":2.547924500000022,"info":"<h4>Chatelain<\/h4>\r\n<p>\r\n<br>\r\n<a href=\"http:\/\/www.pepinieres-chatelain.com\/\">Pepinieres-Chatelain<\/a>\r\n<br>\r\n<\/p>"},{"title":"Barcelona","lat":41.385064,"lng":2.173403,"info":"<h4>Barcelona<\/h4>\r\n<p>\r\n<br>\r\n<a href=\"http:\/\/valldaura.net\/\">IAAC Valldaura Labs<\/a>\r\n<br>\r\n<\/p>"}]};
/* ]]> */
</script>
<script type='text/javascript' src='https://romi-project.eu/wp-content/themes/romi/assets/js/scripts.js?ver=5.7.2' id='romi-scripts-js'></script>
<script type='text/javascript' src='https://romi-project.eu/wp-includes/js/wp-embed.min.js?ver=5.7.2' id='wp-embed-js'></script>
</body>
</html>