-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
executable file
·5169 lines (4593 loc) · 251 KB
/
cv.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>
<head>
<meta charset="utf-8">
<title>[ Zeinalipour | CV ]</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--<link href="css/bootstrap.min.css" rel="stylesheet">-->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/menucollapse.js"></script>
<script type="text/javascript" src="js/arrow78.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-2" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="glyphicon glyphicon-search"></span>
</button>
<button id="button2" type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span><a href="#"><img border="0" width="170" src="images/csucy.png"/></a><font size="4" color="red"><b>Version: 7/12/2023</b></font></a>. Latest Version is <a href="https://www.cs.ucy.ac.cy/~dzeina/">here</a></span>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Home<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="index.html#intro">Introduction</a></li>
<li><a href="bio.html">Biography</a></li>
<li><a href="cv.html">CV (Web)</a></li>
<li><a target="_blank" href="zeinalipour.pdf">CV (PDF)</a></li>
</ul>
</li>
<li class="page-scroll">
<a href="index.html#news">News</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Publications<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a onclick="javascript:reset_menus();$('#tab-3-content').show();" href="index.html#publications">Selected</a></li>
<li><a href="publications/">All</a></li>
</ul>
</li>
<li class="page-scroll">
<a href="talks/">Talks</a>
</li>
<li class="page-scroll">
<a href="index.html#courses">Courses</a>
</li>
<li class="page-scroll">
<a href="index.html#awards">Awards</a>
</li>
<li class="page-scroll">
<a href="index.html#service">Service</a>
</li>
<li class="page-scroll">
<a href="index.html#advising">Advising</a>
</li>
<li class="page-scroll">
<a target="_blank" href="http://dmsl.cs.ucy.ac.cy/projects.php">Grants</a>
</li>
<li class="page-scroll">
<a href="index.html#contact">Contact</a>
</li>
<li class="page-scroll">
<a onclick="$('#bs-example-navbar-collapse-2').toggle();">
<span class="glyphicon glyphicon-search"></span>
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
<!-- search box submenu -->
<div class="collapse" id="bs-example-navbar-collapse-2">
<gcse:search></gcse:search>
</div>
</div><!-- /.container-fluid -->
</nav>
<section>
<!-- Place this tag where you want the search results to render -->
<gcse:searchresults-only></gcse:searchresults-only>
</section>
<section id="tree" style="margin-top:50px">
<div class="container">
<a href="index.html">Zeinalipour</a> > Curriculum Vitae
</div>
</section>
<!-- Home Section -->
<section id="home">
<div class="container">
<br>
<h3 align="CENTER">Curriculum Vitae of Demetris Zeinalipour</h3>
<h5 align="CENTER">Last Update: June 16, 2023</h5>
<center><a target="_blank" href="zeinalipour.pdf">Download in PDF <img border="0" src="images/pdf.gif"></a></center>
<BR>
<BR>
<P>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 WIDTH="100%">
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">Department of Computer Science</TD>
<TD ALIGN="RIGHT">Tel: +357-22-892755</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">University of Cyprus</TD>
<TD ALIGN="RIGHT">Fax: +357-22-892701</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">1 University Ave., P.O. Box 20537,</TD>
<TD ALIGN="RIGHT"><TT>[email protected]</TT></TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">1678 Nicosia, Cyprus</TD>
<TD ALIGN="RIGHT"><TT>https://www.cs.ucy.ac.cy/~dzeina/</TT></TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Data Management Systems Laboratory (DMSL)</B></TD>
<TD ALIGN="RIGHT"><TT>https://dmsl.cs.ucy.ac.cy/</TT></TD>
</TR>
</TABLE>
</DIV>
<P>
<P>
<H1><A NAME="SECTION00010000000000000000">
<B>RESEARCH INTERESTS</B></A>
</H1>
<B>Data Management in Computer Systems and Networks:</B>
<EM>Mobile and Sensor Data Management; Big Data Management in Parallel and Distributed Architectures; Spatio-Temporal Data Management; Network and Telco Data Management; Crowd, Web 2.0 and Indoor Data Management; Data Privacy Management; Data Management for Sustainability.</EM>
<P>
<H1><A NAME="SECTION00020000000000000000">
<B>EDUCATION</B></A>
</H1>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 WIDTH="100%">
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"><B>Ph.D.</B></TD>
<TD ALIGN="LEFT">Computer Science & Engr., Univ. of California - Riverside, CA, USA</TD>
<TD ALIGN="RIGHT">06/2003 - 08/2005</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Dissertation: Search and Retrieval Algorithms for Distributed Data</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Management Systems</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<B>M.Sc.</B></TD>
<TD ALIGN="LEFT">Computer Science & Engr., Univ. of California - Riverside, CA, USA</TD>
<TD ALIGN="RIGHT">09/2001 - 06/2003</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Thesis: Information Retrieval in Peer-to-Peer Networks</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<B>B.Sc.</B></TD>
<TD ALIGN="LEFT">Computer Science, University of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">09/1996 - 07/2000</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"> </TD>
<TD ALIGN="LEFT"><EM>Thesis: An eXtensible Retrieval Annotation Caching Engine</EM></TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT"></TD>
<TD ALIGN="LEFT"> </TD>
<TD ALIGN="RIGHT"> </TD>
</TR>
</TABLE>
</DIV>
<P>
<H1><A NAME="SECTION00030000000000000000">
<B>EXPERIENCE</B></A>
</H1>
<P>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 WIDTH="100%">
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Professor</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">06/2023 - current</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Associate Professor</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">04/2018 - 06/2023</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Assistant Professor</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">01/2013 - 03/2018</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Humboldt Fellow</B>, Max Planck Institute for Informatics, Saarbrücken, Germany</TD>
<TD ALIGN="RIGHT">09/2016-08/2017</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Visiting Researcher</B>, Dept. of Computer Science, Univ. of Pittsburgh, PA, USA</TD>
<TD ALIGN="RIGHT">Summer 2015</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Lecturer</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">01/2009 - 12/2012</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Lecturer</B>, School of Pure and Applied Sc., Open Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">07/2007 - 01/2009</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Marie-Curie Fellow</B>, Dept. of Informatics & Telec., University of Athens, Greece</TD>
<TD ALIGN="RIGHT">Summer 2007</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Visiting Lecturer</B>, Dept. of Computer Science, Univ. of Cyprus, Cyprus</TD>
<TD ALIGN="RIGHT">08/2005 - 07/2007</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Visiting Researcher</B>, Network Intelligence Lab, Akamai, Cambridge MA, USA</TD>
<TD ALIGN="RIGHT">Summer 2004</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Research Assistant</B>, DB Lab, Univ. of California - Riverside, CA, USA</TD>
<TD ALIGN="RIGHT">06/2003 - 08/2005</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Teaching Assistant</B>, University of California - Riverside, CA, USA</TD>
<TD ALIGN="RIGHT">09/2001 - 06/2003</TD>
</TR>
<TR><TD ALIGN="LEFT"> </TD><TD ALIGN="LEFT">
<BR>
<BR>
<B>Academic Collaborator</B>, University of Cyprus, Nicosia, Cyprus</TD>
<TD ALIGN="RIGHT">06/2000 - 09/2001</TD>
</TR>
</TABLE>
</DIV>
<P>
<P>
<P>
<H1><A NAME="SECTION00040000000000000000">
<B>AWARDS & HONORS</B></A>
</H1>
<UL>
<LI><B>Best App Paper Award</B>, <EM>``A Context, Location and Preference-Aware System for Safe Pedestrian Mobility''</EM>, C. Costa, B. Nixon, S. Bhattacharjee, B. Graybill, <B>D. Zeinalipour-Yazti</B>, W. Schneider, P. K. Chrysanthis, 22nd IEEE International Conference on Mobile Data Management (MDM'21), Toronto, Canada, June 15 - June 18, 2021.
</LI>
<LI><B>Best Demo Award</B>, <EM>``FMS: Managing Crowdsourced Indoor Signals with the Fingerprint Management Studio''</EM>, 19th IEEE International Conference on Mobile Data Management (MDM'18), M. Angelidou, C. Costa, A. Nikitin, and <B>D. Zeinalipour-Yazti</B>, Aalborg, Denmark, June 26 - June 28, 2018.
</LI>
<LI><B>Honorable Mention Award</B>, <EM>``Indoor Localization Accuracy Estimation from Fingerprint Data''</EM>, A. Nikitin, C. Laoudias, G. Chatzimilioudis, P. Karras, and <B>D. Zeinalipour-Yazti</B>, <EM>18th IEEE Intl. Conf. on Mobile Data Management (MDM'17)</EM>, Daejeon, S. Korea, May 29-Jun 1, 2017.
</LI>
<LI><B>ACM Distinguished Speaker</B>, <EM>``a highly visible way that ACM, through the appointment of leading researchers, engages with emerging professionals, students and, in some cases, the public on a range of topics in computing.''</EM>, Association for Computing Machinery, New York, NY, USA, as of February 17, 2017 until February 17, 2020.
</LI>
<LI><B>ACM Senior Member</B> for <EM>``having demonstrated performance that sets them apart from their peers''</EM>, Association for Computing Machinery, New York, NY, USA, as of January 3, 2017.
</LI>
<LI><B>IEEE Senior Member</B> for <EM>``significant contributions to the profession''</EM>, Institute of Electrical and Electronics Engineers, New York, NY, USA, as of December 8, 2016.
</LI>
<LI><B>Humboldt Fellow</B> for <EM>``to highly qualified researchers that have demonstrated outstanding achievements in research and who contribute significantly to international cooperation and understanding''</EM>, Host Institute: Max Planck Institute for Informatics, Saarbrücken, Germany, Alexander von Humboldt Foundation, Bonn, Germany, 09/2016-08/2017.
</LI>
<LI><B>Best Demo Award</B>, ``Indoor Geolocation for Android Smartphones with Airplace'', T. Costambeys, C. Laoudias, <B>D. Zeinalipour-Yazti</B>, C. G. Panayiotou, EVARILOS Open Challenge, FP7 Project (#317989), European Union, Berlin, Germany, 2014.
</LI>
<LI><B>2nd Best Demo Award</B>, ``Accurate Multi-Sensor Localization on Android Devices'', C. Laoudias, G. Larkou, M. Chin-Lung Li, Yu-Kuen Tsai, <B>D. Zeinalipour-Yazti</B>, C. G. Panayiotou, Microsoft Indoor Localization Competition, <EM>13th ACM/IEEE Intl. Conf. on Information Processing in Sensor Networks</EM> (IPSN'14), April 15-17, Berlin, Germany, 2014.
</LI>
<LI><B>Appcampus Award</B>, ``Rayzit: Crowd Messaging'' by Microsoft, Nokia and Aalto University (Finland) innovative mobile application, https://rayzit.cs.ucy.ac.cy/, 2013.
<P>
</LI>
<LI><B>Best Demo Award</B>, ``The Airplace Indoor Positioning Platform for Android Smartphones'', C. Laoudias, G. Constantinou, M. Constantinides, S. Nicolaou, <B>D. Zeinalipour-Yazti</B>, C. G. Panayiotou, <EM>13th IEEE Intl. Conference on Mobile Data Management</EM> (2012), Bangalore, India, July 23-26, 2012.
</LI>
<LI><B>Best Demo Award</B>, ``ICGrid: Intensive Care Grid'',
CoreGRID Industrial Conference, Sophia Antipolis, France, November 2006.
</LI>
<LI><B>Outstanding Teaching Assistant Honorable Mention</B>, University of California, Riverside, CA, USA, 2002-2003.
</LI>
<LI><B>Head Teaching Assistant</B>, Computer Science & Engineering Department, University of California - Riverside, CA, USA, 2002-2003.
</LI>
<LI><B>Outstanding Teaching Assistant Award</B>, University of California - Riverside, CA, USA, 2001-2002.
</LI>
<LI><B>Full Scholarship</B>, Computer Science & Engineering Department, University of California, Riverside, CA, USA, 2001-2006.
</LI>
<LI><B>Dean's Graduate Fellowship Award</B>, University of California - Riverside, CA, USA, 2001-2003.
</LI>
<LI><B>Young Researcher Fellowship Award</B>, Cyprus Research Promotion Foundation, 2000-2001.
</LI>
<LI><B>Awards at School</B>: Praise in Paneuropean writing
contest (1990-91), 1st in CyBC's national History & Archeology contest (1991-92) and
2nd in national Geography (1992-93) contest.
</LI>
</UL>
<P>
<P>
<H1><A NAME="SECTION00050000000000000000">
PUBLICATIONS</A>
</H1>
<B>Google Scholar Citations: 4,054;
h-index<A NAME="tex2html1"
HREF="#foot124"><SUP>1</SUP></A>: 31;
i10-index<A NAME="tex2html2"
HREF="#foot125"><SUP>2</SUP></A>: 69</B>
<P>
<H2><A NAME="SECTION00051000000000000000">
JOURNAL AND MAGAZINE ARTICLES</A>
</H2>
<DL COMPACT>
<DT><B>J30.</B></DT>
<DD><A NAME="J30"></A>
<B>``Cramer-Rao Lower Bound Analysis of Differential Signal Strength Fingerprinting for Crowdsourced IoT Localization''</B>,
<BR>
Jiseon Moon, Christos Laoudias, Ran Guan, Sunwoo Kim, <B>Demetrios Zeinalipour-Yazti</B>, Christos Panayiotou,
<B>IEEE Internet of Things Journal (IoTJ'22)</B>, Volume , pp. xx:x-xx:x, 13 pages, doi: 10.1109/JIOT.2023.3235921, <B>2023</B>. (in press).
<P>
</DD>
<DT><B>J29.</B></DT>
<DD><A NAME="J29"></A>
<B>``Green Planning of IoT Home Automation Workflows in Smart Buildings''</B>,
<BR>
Soteris Constantinou, Andreas Konstantinidis, Panos K. Chrysanthis and <B>Demetrios Zeinalipour-Yazti</B>,
<B>ACM Transactions on Internet of Things (TIOT'22)</B>, Volume 3, Issue 4, Article 29, pp. 1–-30, doi: 10.1145/3549549, November <B>2022</B>.
<P>
</DD>
<DT><B>J28.</B></DT>
<DD><A NAME="J28"></A>
<B>``Green Planning Systems for Self-Consumption of Renewable Energy''</B>,
<BR>
Soteris Constantinou, Andreas Konstantinidis and <B>Demetrios Zeinalipour-Yazti</B>,
<B>IEEE Internet Computing (IC'22)</B>, 7 pages, doi: 10.1109/MIC.2022.3164581, April <B>2022</B>.
<P>
</DD>
<DT><B>J27.</B></DT>
<DD><A NAME="J27"></A>
<B>``ASTRO: Reducing COVID-19 Exposure through Contact Prediction and Avoidance''</B>,
<BR>
Chrysovalantis Anastasiou, Constantinos Costa, Panos K. Chrysanthis, Cyrus Shahabi, and <B>Demetrios Zeinalipour-Yazti</B>,
<B>ACM Transactions on Spatial Algorithms and Systems (TSAS'22)</B>, Volume 8, Issue 2, pp. 11:1-11:31, doi: 10.1145/3490492, June <B>2022</B>.
<P>
</DD>
<DT><B>J26.</B></DT>
<DD><A NAME="J26"></A>
<B>``Indoor Quality-of-Position Visual Assessment using Crowdsourced Fingerprint Maps''</B>,
<BR>
Christos Laoudias, Artyom Nikitin, Panagiotis Karras, Moustafa Youssef, and <B>Demetrios Zeinalipour-Yazti</B>,
<B>ACM Transactions on Spatial Algorithms and Systems (TSAS'21)</B>, Volume 7, Issue 2, pp. 10:1-10:32,
doi: 10.1145/3433026, June <B>2021</B>.
<P>
</DD>
<DT><B>J25.</B></DT>
<DD><A NAME="J25"></A>
<B>``Serendipity-based Points-of-Interest Navigation''</B>,
<BR>
Xiaoyu Ge, Panos K. Chrysanthis, Konstantinos Pelechrinis, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed Sharaf,
<B>ACM Transactions on Internet Technology (TOIT'20)</B>, Volume 20, No. 4, pp. 33:1-33:32,
doi: 10.1145/3391197, October <B>2020</B>.
<P>
</DD>
<DT><B>J24.</B></DT>
<DD><A NAME="J24"></A>
<B>``Continuous Decaying of Telco Big Data with Data Postdiction''</B>,
<BR>
Constantinos Costa, Andreas Konstantinidis, Andreas Charalampous, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed F. Mokbel,
<B>(Geoinformatica'19)</B>, Volume 23, pp. 533-557, doi: 10.1007/s10707-019-00364-z, June <B>2019</B>.
<P>
</DD>
<DT><B>J23.</B></DT>
<DD><A NAME="J23"></A>
<B>``IoT Data Prefetching in Indoor Navigation SOAs''</B>,
<BR>
Andreas Konstantinidis, Panagiotis Irakleous, Zacharias Georgiou,
<B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis,
<B>ACM Transactions on Internet Technology (TOIT'18)</B>, Volume 19:1, pp. 10:1-10:21, doi: 10.1145/3177777, February <B>2019</B>.
<P>
</DD>
<DT><B>J22.</B></DT>
<DD><A NAME="J22"></A>
<B>``Internet-based Indoor Navigation Services''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Christos Laoudias, Kyriakos Georgiou and Georgios Chatzimilioudis
<B>IEEE Internet Computing (IC)</B>, IEEE Computer Society, Volume 21, Issue 4, pp. 54-63, doi: 10.1109/MIC.2017.265101954, June <B>2017</B>.
<P>
</DD>
<DT><B>J21.</B></DT>
<DD><A NAME="J21"></A>
<B>``Crowdsourcing Emergency Data in Non-Operational Cellular Networks''</B>,
<BR>
Georgios Chatzimilioudis, Constantinos Costa, <B>Demetrios Zeinalipour-Yazti</B>, Wang-Chien Lee,
<B>Information Systems (InfoSys)</B>, Special Issue on Large-Scale Data Management for Mobile Applications,
Volume 64, pp. 292 - 302, doi: 10.1016/j.is.2015.11.004, Oxford, UK, March <B>2017</B>.
<P>
</DD>
<DT><B>J20.</B></DT>
<DD><A NAME="J20"></A>
<B>``Distributed In-Memory Processing of All k Nearest Neighbor Queries''</B>,
<BR>
Georgios Chatzimilioudis, Constantinos Costa, <B>Demetrios Zeinalipour-Yazti</B> and
Wang-Chien Lee and Evaggelia Pitoura,
<B>Transactions on Knowledge and Data Engineering (TKDE)</B>,
IEEE Computer Society, Volume 28, Issue 4, pp. 925-938,
<BR>
doi: 10.1109/TKDE.2015.2503768,
April <B>2016</B>.
<P>
</DD>
<DT><B>J19.</B></DT>
<DD><A NAME="J19"></A>
<B>``Managing Big-Data Experiments on Smartphones''</B>,
<BR>
Georgios Larkou, Marios Mintzis, Andreas Konstantinidis, Panayiotis Andreou and <B>Demetrios Zeinalipour-Yazti</B>,
<B>Distributed and Parallel Databases (DAPD)</B>,
Special Issue on Large-Scale Data Management for Mobile Applications, Springer US, Volume 34, Issue 1, pp. 33-64, doi: 10.1007/s10619-014-7158-6, March <B>2016</B>.
<P>
</DD>
<DT><B>J18.</B></DT>
<DD><A NAME="J18"></A>
<B>``Privacy-Preserving Indoor Localization on Smartphones''</B>,
<BR>
Andreas Konstantinidis, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B>, Paschalis Mpeis, Nikos Pelekis, and Yannis Theodoridis,
<B>Transactions on Knowledge and Data Engineering (TKDE)</B>,
IEEE Computer Society, Volume 27, Issue 11, pp. 3042-3055,
<BR>
doi: 10.1109/TKDE.2015.2441724, November <B>2015</B>.
<P>
</DD>
<DT><B>J17.</B></DT>
<DD><A NAME="J17"></A>
<B>``A Network-aware Framework for Energy-efficient Data Acquisition in Wireless Sensor Networks''</B>,
<BR>
Panayiotis G. Andreou, <B>Demetrios Zeinalipour-Yazti</B>, George S. Samaras, Panos K. Chrysanthis,
<B>Journal of Network and Computer Applications (JNCA)</B>, Elsevier Press,
Volume 30, Issue 1, pp. 209-243, doi: 10.1016/j.jnca.2014.08.010, January <B>2014</B>.
<P>
</DD>
<DT><B>J16.</B></DT>
<DD><A NAME="J16"></A><B>``Crowdsourced Trace Similarity with Smartphones''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Christos Laoudias, Costandinos Costa, Maria I. Andreou, Michalis Vlachos, Dimitrios Gunopulos, <B>IEEE Transactions on Knowledge and Data Engineering (TKDE)</B>,
IEEE Computer Society, Volume 25, pp. 1240-1253,
<BR>
doi: 10.1109/TKDE.2012.55, June <B>2013</B>.
<P>
</DD>
<DT><B>J15.</B></DT>
<DD><A NAME="J15"></A><B>``Intelligent Search in Social Communities of Smartphone Users''</B>,
<BR>
Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, Panayiotis G. Andreou,
Panos K. Chrysanthis, George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Mobile Data Management,
Springer US, Volume 31, pp. 115-149, doi: 10.1007/s10619-012-7108-0, December <B>2012</B>.
<P>
</DD>
<DT><B>J14.</B></DT>
<DD><A NAME="J14"></A><B>``Crowdsourcing with Smartphones''</B>,
<BR>
Georgios Chatzimiloudis, Andreas Konstantinides, Christos Laoudias and <B>Demetrios Zeinalipour-Yazti</B>,
<B>IEEE Internet Computing (IC)</B>, Special Issue: Sep/Oct 2012 - Crowdsourcing May 2012.
IEEE Press, Volume 16, pp. 36-44, doi: 10.1109/MIC.2012.70, June <B>2012</B>.
<P>
</DD>
<DT><B>J13.</B></DT>
<DD><A NAME="J13"></A><B>``Power Efficiency through Tuple Ranking in Wireless Sensor Network Monitoring''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis and George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Query Processing in Sensor Networks,
Springer Press, Volume 29, Issue 1-2, pp. 113-150, doi: 10.1007/s10619-010-7072-5, January <B>2011</B>.
<P>
</DD>
<DT><B>J12.</B></DT>
<DD><A NAME="J12"></A><B>``In-Network Data Acquisition and Replication in Mobile Sensor Networks''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Panos K. Chrysanthis and George Samaras,
<B>Distributed and Parallel Databases (DAPD)</B>, Special Issue on Query Processing in Sensor Networks,
Springer Press, Volume 29, Issue 1-2, pp. 87-112, doi: 10.1007/s10619-010-7073-4, January <B>2011</B>.
<P>
</DD>
<DT><B>J11.</B></DT>
<DD><A NAME="J11"></A><B>``Optimized Query Routing Trees for Wireless Sensor Networks''</B>,
<BR>
Panayiotis Andreou, <B>Demetrios Zeinalipour-Yazti</B>, Andreas Pamboris, Panos K. Chrysanthis and George Samaras,
Elsevier Press, <B>Information Systems (InfoSys)</B>, Volume 36, Issue 2, pp. 267-291, doi: 10.1016/j.is.2010.06.001, April <B>2011</B>.
<P>
</DD>
<DT><B>J10.</B></DT>
<DD><A NAME="J10"></A><B>``A Multi-Objective Evolutionary Algorithm for the Deployment and Power Assignment Problem in Wireless Sensor Networks''</B>,
<BR>
Andreas Konstantinidis, Kun Yang, Qingfu Zhang, <B>Demetrios Zeinalipour-Yazti</B>
Elsevier Press, <B>Computer Networks (ComNet)</B>, Volume 54, Issue 6, pp. 960-976,
<BR>
doi: 10.1016/j.comnet.2009.08.010, April <B>2010</B>.
<P>
</DD>
<DT><B>J9.</B></DT>
<DD><A NAME="J9"></A><B>``Finding the K Highest-Ranked Answers in a Distributed Network''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Zografoula Vagena, Dimitrios Gunopulos, Vana Kalogeraki, Vassilis Tsotras, Michail Vlachos, Nick Koudas and Divesh Srivastava, <B>Computer Networks (ComNet)</B>,
Elsevier Press, Volume 53, Issue 9, pp. 1431-1449,
<BR>
doi: 10.1016/j.comnet.2009.01.008, June <B>2009</B>.
<P>
</DD>
<DT><B>J8.</B></DT>
<DD><A NAME="J8"></A><B>``Metadata Ranking and Pruning for Failure Detection in Grids''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Haris Papadakis, Chryssis Georgiou and Marios D. Dikaiakos,
<B>Parallel Processing Letters Journal (PPL)</B>,
Special Issue on Grid Architectural Issues: Scalability, Dependability, Adaptability,
Volume: 18, Issue: 3, pp. 371 - 390, doi: 10.1142/S0129626408003454, September <B>2008</B>.
<P>
</DD>
<DT><B>J7.</B></DT>
<DD><A NAME="J7"></A><B>``pFusion: An Architecture for Internet-Scale Content-Based Search and Retrieval''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos,
<B>IEEE Transactions on Parallel and Distributed Systems (TPDS)</B>,
IEEE Press, Volume 18, No. 6, pp. 804-817, doi: 10.1109/TPDS.2007.1060, June <B>2007</B>.
<P>
</DD>
<DT><B>J6.</B></DT>
<DD><A NAME="J6"></A><B>``Distributed Middleware Architectures for Scalable Media Services''</B>,
<BR>
Vana Kalogeraki, <B>Demetrios Zeinalipour-Yazti</B>, Dimitrios Gunopulos and Alex Delis,
<B>Journal of Network and Computer Applications (JNCA)</B>, Elsevier Press,
Springer Press, Volume 30, Issue 1, pp. 209-243, doi: 10.1023/A:1023691126073, January <B>2007</B>.
<P>
</DD>
<DT><B>J5.</B></DT>
<DD><A NAME="J5"></A><B>``Efficient Indexing Data Structures for Flash-Based Sensor Devices''</B>,
<BR>
Song Lin, <B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki, Dimitrios Gunopulos, Walid Najjar,
<B>ACM Transactions on Storage (TOS)</B>,
ACM Press, Volume 2, No. 4, pp. 468 - 503, doi: 10.1145/1210596.1210601, November <B>2006</B>.
<P>
</DD>
<DT><B>J4.</B></DT>
<DD><A NAME="J4"></A><B>``Structuring Topologically-Aware Overlay Networks using Domain Names''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B> and Vana Kalogeraki, <B>Computer Networks (ComNet)</B>,
Elsevier Press, Volume 50, Issue 16, pp. 3064-3082, doi: 10.1016/j.comnet.2005.12.003, November <B>2006</B>.
<P>
</DD>
<DT><B>J3.</B></DT>
<DD><A NAME="J3"></A><B>``Exploiting Locality for Scalable Information Retrieval in Peer-to-Peer Systems''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos, <B>Information Systems (InfoSys)</B>,
Elsevier Press, Volume 30, Issue 4, pp. 277-298,
<BR>
doi: 10.1016/j.is.2004.03.001, April <B>2005</B>.
<P>
</DD>
<DT><B>J2.</B></DT>
<DD><A NAME="J2"></A><B>``A Distributed Middleware Infrastructure for Personalized Services''</B>,
<BR>
Marios D. Dikaiakos, <B>Demetrios Zeinalipour-Yazti</B>, <B>Computer Communications (ComCom)</B>,
Elsevier Press, Volume 27, Issue 15, pp. 1464-1480, doi: 10.1016/j.comcom.2004.04.010, September <B>2004</B>.
<P>
</DD>
<DT><B>J1.</B></DT>
<DD><A NAME="J1"></A>
<B>``Information Retrieval Techniques for Peer-to-Peer Systems''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Vana Kalogeraki and Dimitrios Gunopulos,
<B>Computing in Science and Engineering (CiSE)</B>, Special Issue on Web Engineering,
IEEE Press, ISSN: 1521-9615, pp. 20 - 26, doi: 10.1109/MCSE.2004.12, July <B>2004</B>.
<P>
</DD>
</DL>
<P>
<H2><A NAME="SECTION00052000000000000000">
CONFERENCE AND WORKSHOP PROCEEDINGS</A>
</H2>
<DL COMPACT>
<DT><B>C94.</B></DT>
<DD><A NAME="C94"></A>
<B>``GreenCap: A Platform for Solar Self-Consumption using IoT Data''</B>,
<BR>
Soteris Constantinou, Nicolas Polycarpou, Constantinos Costa, Andreas Konstantinidis, Panos K. Chrysanthis and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>the 24th IEEE International Conference on Mobile Data Management <B>(MDM 2023)</B></EM>,
IEEE Computer Society, Singapore, July 3 - July 6, 2023.
<P>
</DD>
<DT><B>C93.</B></DT>
<DD><A NAME="C93"></A>
<B>``An IoT Data Management System for Solar Self-Consumption''</B>,
<BR>
Soteris Constantinou, Nicolas Polycarpou, Constantinos Costa, Andreas Konstantinidis, Panos K. Chrysanthis and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>the 24th IEEE International Conference on Mobile Data Management <B>(MDM 2023)</B></EM>,
IEEE Computer Society, Singapore, July 3 - July 6, 2023.
<P>
</DD>
<DT><B>C92.</B></DT>
<DD><A NAME="C92"></A>
<B>``Zero Infrastructure Geolocation of Nearby First Responders on Ro-Ro Vessels''</B>,
<BR>
Paschalis Mpeis, Jaime Bleye Vicario and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the International Conference on Computer Applications in Shipbuilding <B>(ICCAS 2022)</B></EM>,
Royal Institution of Naval Architects (est. 1860), pp. 249-263, ISBN No: 978-1-911649-35-9, ISSN No: 2752-6569, doi: 10.5281/zenodo.7112705, Yokohama, Japan, September 13-15, <B>2022</B>.
</DD>
<DT><B>C91.</B></DT>
<DD><A NAME="C91"></A>
<B>``SMAS: A Smart Alert System for Localization and First Response to Fires on Ro-Ro Vessels''</B>,
Paschalis Mpeis, Athina Hadjichristodoulou, Jaime Bleye Vicario and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of 16th ACM International Conference on Distributed and Event-based Systems <B>(DEBS '22)</B></EM>,
ACM Press, pp. 4-9,
<BR>
doi: 10.1145/3524860.3543282, Copenhagen, Denmark, June 27-30, <B>2022</B>.
</DD>
<DT><B>C90.</B></DT>
<DD><A NAME="C90"></A>
<B>``EnterCY: A Virtual and Augmented Reality Tourism Platform for Cyprus''</B>,
<BR>
Soteris Constantinou, Andreas Pamboris, Rafael Alexandrou, Christoforos Kronis, <B>Demetrios Zeinalipour-Yazti</B>, Harris Papadopoulos and Andreas Konstantinidis,
<EM>Proceedings of the 23rd IEEE International Conference on Mobile Data Management <B>(MDM 2022)</B></EM>,
IEEE Computer Society, pp. 314-317, doi: 10.1109/MDM55031.2022.00069, Paphos, Cyprus, June 6 - June 9, <B>2022</B>.
</DD>
<DT><B>C89.</B></DT>
<DD><A NAME="C89"></A>
<B>``AnyplaceCV: Infrastructure-less Localization in Anyplace with Computer Vision''</B>,
<BR>
Paschalis Mpeis, Athina Hadjichristodoulou, Ioannis Ioannides and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 23rd IEEE International Conference on Mobile Data Management <B>(MDM 2022)</B></EM>,
IEEE Computer Society, pp. 290-291, doi: 10.1109/MDM55031.2022.00069, Paphos, Cyprus, June 6 - June 9, <B>2022</B>.
<P>
</DD>
<DT><B>C88.</B></DT>
<DD><A NAME="C88"></A>
<B>``A Context, Location and Preference-Aware System for Safe Pedestrian Mobility''</B>,
<BR>
Constantinos Costa, Brian T. Nixon, Sayantani Bhattacharjee, Benjamin Graybill, <B>Demetrios Zeinalipour-Yazti</B>, Walter Schneider, Panos K. Chrysanthis,
<EM>Proceedings of the 22nd IEEE International Conference on Mobile Data Management, <B>(MDM 2021)</B></EM>,
IEEE Computer Society, pp. 217-224, doi: 10.1109/MDM52706.2021.00042, Toronto, Canada, June 15 - June 18, <B>2021</B>.
(<B>Best App Paper Award</B>)
<P>
</DD>
<DT><B>C87.</B></DT>
<DD><A NAME="C87"></A>
<B>``Triastore: A Web 3.0 Blockchain Datastore for Massive IoT Workloads''</B>,
<BR>
Panagiotis Drakatos, Erodotos Demetriou, Stavroulla Koumou, Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 22nd IEEE International Conference on Mobile Data Management, <B>(MDM 2021)</B></EM>,
IEEE Computer Society, pp. 187-192, doi: 10.1109/MDM52706.2021.00038, Toronto, Canada, June 15 - June 18, <B>2021</B>.
<P>
</DD>
<DT><B>C86.</B></DT>
<DD><A NAME="C86"></A>
<B>``Towards a Blockchain Database for Massive IoT Workloads''</B>,
<BR>
Panagiotis Drakatos, Erodotos Demetriou, Stavroulla Koumou, Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 37th International Conference on Data Engineering Workshops <B>(ICDE 2021)</B></EM>,
IEEE Computer Society, pp. 76-79,
<BR>
doi: 10.1109/ICDEW53142.2021.00021, Chania, Crete, Greece, April 19-23, <B>2021</B>.
<P>
</DD>
<DT><B>C85.</B></DT>
<DD><A NAME="C85"></A>
<B>``The IoT Meta-Control Firewall''</B>,
<BR>
Soteris Constantinou, Antonis Vasileiou, Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, and Panos K. Chrysanthis,
<EM>Proceedings of the 37th International Conference on Data Engineering <B>(ICDE 2021)</B></EM>,
pp. 2523-2534, doi: 10.1109/ICDE51399.2021.00284, Chania, Crete, Greece, April 19-23, <B>2021</B>.
<P>
</DD>
<DT><B>C84.</B></DT>
<DD><A NAME="C84"></A>
<B>``IMCF: The IoT Meta-Control Firewall for Smart Buildings''</B>,
<BR>
Soteris Constantinou, Antonis Vasileiou, Andreas Konstantinidis, Panos K. Chrysanthis, <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 24th International Conference on Extending Database Technology <B>(EDBT 2021)</B></EM>,
OpenProceedings.org, pp. 658-661,
<BR>
doi: 10.5441/002/edbt.2021.77, Nicosia, Cyprus, March 23 - March 26, 2021, <B>2021</B>.
<P>
</DD>
<DT><B>C83.</B></DT>
<DD><A NAME="C83"></A>
<B>``COVID-19 Mobile Contact Tracing Apps (MCTA): A Digital Vaccine or a Privacy Demolition?''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>, Christophe Claramunt
<EM>Proceedings of the 20th IEEE International Conference on Mobile Data Management, <B>(MDM 2020)</B></EM>,
IEEE Computer Society, pp. 1-4, doi: 10.1109/MDM48529.2020.00020, Versailles, France, June 30 - July 3, <B>2020</B>.
<P>
</DD>
<DT><B>C82.</B></DT>
<DD><A NAME="C82"></A>
<B>``CAPRIO v2.0: A Context-Aware Unified Indoor-Outdoor Path Recommendation System''</B>,
<BR>
Constantinos Costa, Xiaoyu Ge, Evan McEllhenney, Evan Kebler, Panos K. Chrysanthis,
<B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 20th IEEE International Conference on Mobile Data Management, <B>(MDM 2020)</B></EM>,
IEEE Computer Society, pp. 230-231, doi: 10.1109/MDM48529.2020.00020, Versailles, France, June 30 - July 3, <B>2020</B>.
<P>
</DD>
<DT><B>C81.</B></DT>
<DD><A NAME="C81"></A>
<B>``The Anyplace 4.0 IoT Localization Architecture''</B>,
<BR>
Paschalis Mpeis, Thierry Roussel, Manish Kumar, Constantinos Costa, Christos Laoudias,
Denis Capot-Ray, <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 20th IEEE International Conference on Mobile Data Management, <B>(MDM 2020)</B></EM>,
IEEE Computer Society, pp. 218-225, doi: 10.1109/MDM48529.2020.00020, Versailles, France, June 30 - July 3, 2020, <B>2020</B>.
<P>
</DD>
<DT><B>C80.</B></DT>
<DD><A NAME="C80"></A>
<B>``Towards Robust Methods for Indoor Localization using Interval Data''</B>,
<BR>
Nacim Ramdani, <B>Demetrios Zeinalipour-Yazti</B>, Michalis Karamousadakis, Andreas Panayides,
Proceedings of the <EM>1st IEEE Intl. Workshop on ALgorithms for Indoor Architectures and Systems <B>(ALIAS 2019)</B></EM>,
IEEE Computer Society, pp. 403-408, doi: 10.1109/MDM.2019.00-12, Hong Kong, June 10, <B>2019</B>.
<P>
</DD>
<DT><B>C79.</B></DT>
<DD><A NAME="C79"></A>
<B>``Generating Semantic Aspects for Queries''</B>,
<BR>
Dhruv Gupta, Klaus Berberich, Jannik Strötgen and <B>Demetrios Zeinalipour-Yazti</B>,
pp. 162-178, <EM>16th International Semantic Web Conference <B>(ESWC 2019)</B></EM>,
Springer LNCS, pp. 162-178, doi: 10.1007/978-3-030-21348-0_11, Portorož, Slovenia, June 2-6, <B>2019</B>.
<P>
</DD>
<DT><B>C78.</B></DT>
<DD><A NAME="C78"></A>
<B>``A Qualitative and Quantitative Evaluation of Differential Signal Strength Fingerprinting Methods''</B>,
<BR>
Christos Laoudias, Sunwoo Kim, Christos Panayiotou and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 53rd IEEE International Conference on Communications (ICC) / WC Symposium <B>(ICC 2019 / WC Symposium)</B></EM>,
IEEE Communications Society, pp. 1-6, doi: 10.1109/ICC.2019.8761528, Shanghai, China, May 20-24, <B>2019</B>.
<P>
</DD>
<DT><B>C77.</B></DT>
<DD><A NAME="C77"></A>
<B>``Bridging Quantities in Tables and Text''</B>,
<BR>
Yusra Ibrahim, Mirek Riedewald, Gerhard Weikum and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 35th IEEE International Conference on Data Engineering <B>(ICDE 2019)</B></EM>,
IEEE Computer Society, pp. 1010-1021, doi: 10.1109/ICDE.2019.00094, Macau SAR, China, April 8-12, <B>2019</B>.
<P>
</DD>
<DT><B>C76.</B></DT>
<DD><A NAME="C76"></A>
<B>``Telco Big Data Research and Open Problems''</B>,
<BR>
Constantinos Costa and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 35th IEEE International Conference on Data Engineering <B>(ICDE 2019)</B></EM>,
IEEE Computer Society, pp. 2056-2059, doi: 10.1109/ICDE.2019.00238, Macau SAR, China, April 8-12, <B>2019</B>.
<P>
</DD>
<DT><B>C75.</B></DT>
<DD><A NAME="C75"></A>
<B>``Decaying Telco Big Data with Data Postdiction''</B>,
<BR>
Constantinos Costa, Andreas Charalampous, Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed F. Mokbel,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>,
IEEE Computer Society, pp. 106-115, doi: 10.1109/MDM.2018.00027, Aalborg, Denmark, June 25-28, <B>2018</B>.
<P>
</DD>
<DT><B>C74.</B></DT>
<DD><A NAME="C74"></A>
<B>``Future Directions for Indoor Information Systems: A Panel Discussion''</B>,
<BR><B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>,
IEEE Computer Society, pp. 1-2,
<BR>
doi: 10.1109/MDM.2018.00013, Aalborg, Denmark, June 25-28, <B>2018</B>.
<P>
</DD>
<DT><B>C73.</B></DT>
<DD><A NAME="C73"></A>
<B>``Telco Big Data: Current State & Future Directions''</B>,
<BR>
Constantinos Costa and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>,
IEEE Computer Society, pp. 11-14, doi: 10.1109/MDM.2018.00016, Aalborg, Denmark, June 25-28, <B>2018</B>.
<P>
</DD>
<DT><B>C72.</B></DT>
<DD><A NAME="C72"></A>
<B>``FMS: Managing Crowdsourced Indoor Signals with the Fingerprint Management Studio''</B>,
<BR>
Marileni Angelidou, Constantinos Costa, Artyom Nikitin and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>,
IEEE Computer Society, pp. 288-289, doi: 10.1109/MDM.2018.00054, Aalborg, Denmark, June 25-28, <B>2018</B>.
<B>(Best of MDM 2018)</B>
<P>
</DD>
<DT><B>C71.</B></DT>
<DD><A NAME="C71"></A>
<B>``TBD-DP: Telco Big Data Visual Analytics with Data Postdiction''</B>,
<BR>
Constantinos Costa, Andreas Charalampous, Andreas Konstantinidis, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed F. Mokbel
<EM>Proceedings of the 19th IEEE International Conference on Mobile Data Management, <B>(MDM 2018)</B></EM>,
IEEE Computer Society, pp. 280-281, doi: 10.1109/MDM.2018.00050, Aalborg, Denmark, June 25-28, <B>2018</B>.
<P>
</DD>
<DT><B>C70.</B></DT>
<DD><A NAME="C70"></A>
<B>``EPUI: Experimental Platform for Urban Informatics''</B>,
<BR>
Xiaoyi Ge, Panos K. Chrysanthis, Konstantinos Pelechrinis, and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 2018 ACM International Conference on Management of Data, <B>(SIGMOD 2018)</B></EM>,
ACM Press, pp. 1761–1764,
<BR>
doi: 10.1145/3183713.3193560, Houston, Texas, USA, June 10-15, <B>2018</B>.
<P>
</DD>
<DT><B>C69.</B></DT>
<DD><A NAME="C69"></A>
<B>``Generating Semantic Aspects for Queries''</B>,
<BR>
Dhruv Gupta, Klaus Berberich, Jannik Strötgen, and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 18th ACM/IEEE Joint Conference on Digital Libraries, <B>(JCDL 2018)</B></EM>,
ACM Press, pp. 335-336, doi: 10.1145/3197026.3203900, Fort Worth, Texas, USA, June 3-6, <B>2018</B>.
<P>
</DD>
<DT><B>C68.</B></DT>
<DD><A NAME="C68"></A>
<B>``Towards Real-Time Road Traffic Analytics using Telco Big Data''</B>,
<BR>
Constantinos Costa, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B> and Mohamed F. Mokbel,
<EM>Proceedings of the 11th Intl. Workshop on Real-Time Business Intelligence and Analytics <B>(BIRTE 2017)</B></EM>, collocated with VLDB 2017,
VLDB Endowment, pp. 5:1-5:5, doi: 10.1145/3129292.3129296, Munich, Germany, August 28, <B>2017</B>.
<P>
</DD>
<DT><B>C67.</B></DT>
<DD><A NAME="C67"></A>
<B>``Data-driven Serendipity Navigation in Urban Places''</B>,
<BR>
Xiaoyi Ge, Ameya Daphalapurkar, Manali Shmipi, Kohli Darpun, Konstantinos Pelechrinis, Panos K. Chrysanthis, and <B>Demetrios Zeinalipour-Yazti</B>
<EM>Proceedings of the 37th IEEE International Conference on Distributed Computing Systems <B>(ICDCS 2017)</B></EM>,
IEEE Computer Society, pp. 2501-2504, doi: 10.1109/ICDCS.2017.286, Atlanta, GA, USA, June 5–8, <B>2017</B>.
<P>
</DD>
<DT><B>C66.</B></DT>
<DD><A NAME="C66"></A>
<B>``Indoor Localization Accuracy Estimation from Fingerprint Data''</B>,
<BR>
Artyom Nikitin, Christos Laoudias, Georgios Chatzimilioudis, Panagiotis Karras and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 18th IEEE International Conference on Mobile Data Management <B>(MDM 2017)</B></EM>,
IEEE Computer Society, pp. 196-205, doi: 10.1109/MDM.2017.34, Daejeon, South Korea, May 29 - June 1, <B>2017</B>.
<B>(Honorable Mention Award)</B>
<P>
</DD>
<DT><B>C65.</B></DT>
<DD><A NAME="C65"></A>
<B>``ACCES: Offline Accuracy Estimation for Fingerprint-based Localization''</B>,
<BR>
Artyom Nikitin, Christos Laoudias, Georgios Chatzimilioudis, Panagiotis Karras and <B>Demetrios Zeinalipour-Yazti</B>,
<EM>Proceedings of the 18th IEEE International Conference on Mobile Data Management <B>(MDM 2017)</B></EM>,
IEEE Computer Society, pp. 358-359, doi: 10.1109/MDM.2017.61, Daejeon, South Korea, May 29 - June 1, <B>2017</B>.
<P>
</DD>
<DT><B>C64.</B></DT>
<DD><A NAME="C64"></A>
<B>``Efficient Exploration of Telco Big Data with Compression and Decaying''</B>,
<BR>
Constantinos Costa, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B> and Mohamed F. Mokbel,
<EM>Proceedings of the 33rd International Conference on Data Engineering <B>(ICDE 2017)</B></EM>,
IEEE Computer Society, pp. 1332-1343, doi: 10.1109/ICDE.2017.175, San Diego, CA, USA, April 19-22, <B>2017</B>.
<P>
</DD>
<DT><B>C63.</B></DT>
<DD><A NAME="C63"></A>
<B>``SPATE: Compacting and Exploring Telco Big Data''</B>,
<BR>
Constantinos Costa, Georgios Chatzimilioudis, <B>Demetrios Zeinalipour-Yazti</B>, and Mohamed F. Mokbel,
<EM>Demo Proceedings of the 33rd International Conference on Data Engineering <B>(ICDE 2017)</B></EM>,
IEEE Computer Society, pp. 1419-1420, doi: 10.1109/ICDE.2017.203, San Diego, CA, USA, April 19-22, <B>2017</B>.
<P>
</DD>
<DT><B>C62.</B></DT>
<DD><A NAME="C62"></A>
<B>``Distributed In-Memory Processing of All k Nearest Neighbor Queries (Extended Abstract)''</B>,
<BR>
Georgios Chatzimilioudis, Constantinos Costa, <B>Demetrios Zeinalipour-Yazti</B> and
Wang-Chien Lee and Evaggelia Pitoura,
<EM>Proceedings of the 32nd International Conference on Data Engineering <B>(ICDE 2016)</B></EM>,
IEEE Computer Society, pp. 1490-1491,