-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_dblp_parser.py
1249 lines (1206 loc) · 53 KB
/
my_dblp_parser.py
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
# Large swaths of this file are from Emery Berger and his CSRankings project
# https://github.com/emeryberger/CSrankings
# The parsing however is done straight from a DBLP snapshot with lxml, without any xmllint
from lxml import etree
from datetime import datetime
import csv
import codecs
import json
import re
import gzip
import collections
import csv
import sys
import operator
import pickle
import gzip
from typing import Dict, List, NewType
Title = NewType("Title", str)
Author = NewType("Author", str)
Area = NewType("Area", str)
Conference = NewType("Conference", str)
areadict = {
#
# Max three most selective venues per area for now.
#
# SIGPLAN
# 'plan' : ['POPL', 'PLDI', 'PACMPL'], # PACMPL, issue POPL
'3dv': ['3DV','3DIMPVT','3DPVT','3DIM'],
'i3d': ['I3D','SI3D'],
'wacv': ['WACV','WACV/MOTION'],
'isccaaa': ['ICCASA/ICTCC','ICCASA','ICTCC'],
'tcc': ['TCC','TCC (A1)','TCC (A2)','TCC (B1)','TCC (B2)'],
'popl' : ['POPL'],
'facct': ['FAccT','FAT*'],
'pldi' : ['PLDI'],
'HPCC' : ['HPCC','HPCC/CSS/ICESS','HPCC/SmartCity/DSS'],
'pkdd' : ['ECML/PKDD','ECML','PKDD'],
'allerton': ['Allerton','Allerton Conference'],
'ccgrid': ['CCGrid','CCGRID'],
'cdc': ['CDC','CDC-ECE'],
'dissys': ['Conference on Designing Interactive Systems','Symposium on Designing Interactive Systems'],
'reqengi': ['Requirements Engineering','RE'],
'iwost': ['IWOST','IWOST-1', 'IWOST-2'],
'db/conf/IEEEwisa': ['WISA','IEEE WISA'] ,
'db/conf/IEEEants': ['ANTS', 'IEEE ANTS'] ,
'db/conf/IEEEcloud': ['CLOUD', 'IEEE CLOUD'] ,
'db/conf/IEEEscc': ['SCC', 'IEEE SCC'] ,
'db/conf/IEEEpact': ['PACT', 'IEEE PACT'] ,
'db/conf/ACMmsp': [ 'Memory System Performance','Memory System Performance and Correctness'] ,
'db/conf/ACMace': ['Advances in Computer Entertainment Technology', 'Advances in Computer Entertainment', 'ACE'] ,
'ieede': ['IEEE Design & Test','IEEE Design & Test of Computers'],
'ieeemce' : ['IEEE Trans. Systems, Man, and Cybernetics','IEEE Trans. Systems, Man, and Cybernetics, Part A','IEEE Trans. Systems, Man, and Cybernetics, Part B','IEEE Trans. Systems, Man, and Cybernetics, Part C'],
# "Next tier" - see csrankings.ts
'oopsla' : ['OOPSLA'], # Next tier
'icfp' : ['ICFP'], # Next tier
#'pacmpl' : ['PACMPL'], # Special PACMPL handling below
'sbp': ['SBP','SBP-BRiMS'],
'jcdl': ['JCDL','ACM DL','ADL','Digital Libraries','DL'],
'db/conf/dna': ['DNA', 'DNA Computing'] ,
'db/conf/dcc': ['DCC', 'Data Compression Conference'] ,
'db/conf/dft': ['DFT', 'DFTS'] ,
'db/conf/nma': ['Numerical Methods and Applications','NMA','Numerical Methods and Application'] ,
'db/conf/ppopp': ['PPOPP', 'PPoPP'] ,
'db/conf/approx': ['APPROX-RANDOM', 'APPROX','RANDOM','APPROX/RANDOM'] ,
# SIGSOFT
# 'soft': ['ICSE', 'ICSE (1)', 'ICSE (2)', 'SIGSOFT FSE', 'ESEC/SIGSOFT FSE'],
'icse' : ['ICSE', 'ICSE (1)'],
'fse' : ['SIGSOFT FSE', 'ESEC/SIGSOFT FSE','ESEC / SIGSOFT FSE'],
'ase' : ['ASE','Automated Software Engineering'], # Next tier
'issta' : ['ISSTA'], # Next tier
'db/conf/vlsic': ['VLSIC', 'VLSI Circuits'] ,
'db/conf/lpe': ['LPE', 'WLPE'] ,
'db/conf/geoinfo': ['GeoInfo', 'GEOINFO'] ,
'db/conf/iassist': ['IASSIST', 'IASSIST Conference'] ,
'db/conf/nlucs': ['NLUCS', 'NLPCS'] ,
'db/conf/iwec': ['ICEC', 'IWEC'] ,
'db/conf/iasam': ['IAS', 'IAS Annual Meeting'] ,
'db/conf/services': ['SERVICES', 'SERVICES I', 'SERVICES II'] ,
'db/conf/pgm': ['Probabilistic Graphical Models', 'PGM'] ,
'db/conf/isbms': ['ISBMS', 'ISMBS'],
'db/conf/wsom': ['WSOM+', 'WSOM'] ,
'db/conf/wmte': ['WMTE','WMUTE'] ,
'db/conf/fgct': ['FGST', 'FGCT'] ,
'db/conf/aips': ['ICAPS', 'AIPS', 'Expert Planning Systems'] ,
'db/conf/vr': ['VR', 'VRAIS'] ,
'db/conf/wowmom': ['WOWMOM', 'WoWMoM'] ,
'db/conf/naa': ['NAA', 'WNAA'] ,
'db/conf/bmvc': ['BMVC', 'Alvey Vision Conference'] ,
'db/conf/iwmm': ['ISMM','IWMM'] ,
'db/conf/ubimob': ['UbiMob', 'Ubimob'] ,
'db/conf/iwcf': ['IWCF', 'ICWF'] ,
'db/conf/sigcpr': ['CPR', 'SIGCPR', 'SIGMIS-CPR'] ,
'db/conf/ifip11-4': ['iNetSec', 'iNetSeC'] ,
'ccsw': ['CCSW', 'CCSW@CCS'],
'db/conf/iccS': ['ICCS','International Conference on Computational Science'] ,
'db/conf/3dica': ['Three-Dimensional Image Capture and Applications', 'Three-Dimensional Image Processing 3DIP and Applications', 'Three-Dimensional Imaging, Interaction, and Measurement', 'Three-Dimensional Image Processing, Measurement 3DIPM, and Applications', 'Three-Dimensional Image Capture', '3D Image Processing, Measurement 3DIPM, and Applications'] ,
'db/conf/its': ['ITS','Intelligent Tutoring Systems'] ,
'db/conf/iotbd': ['IoTBD', 'IoTBDS'] ,
'db/conf/iucs': ['IUCS', 'ISUC'] ,
'db/conf/iwpec': ['IWPEC','IPEC'] ,
'db/conf/healthcom': ['HealthCom', 'Healthcom'] ,
'db/conf/swis': ['SIS', 'SWIS'] ,
'db/conf/iq': ['IQ','ICIQ'] ,
'db/conf/ifl': ['IFL', 'Implementation of Functional Languages'] ,
'db/conf/ats': ['ATS', 'Asian Test Symposium'] ,
'db/conf/sigite': ['SIGITE','SIGITE Conference'] ,
'db/conf/icsm': ['ICSM','ICSME'] ,
'db/conf/dawak': ['DaWaK', 'DaWak'] ,
'db/conf/acssc': ['ACSSC', 'ACSCC'] ,
'db/conf/ista': ['UNISCON', 'ISTA'] ,
'db/conf/iotdcc': ['ICC', 'ICC 2016'] ,
'db/conf/hm': ['Hybrid Metaheuristics', 'HM'] ,
'db/conf/das': [ 'DAS','Document Analysis Systems'] ,
'db/conf/lid': ['LID', 'Logic in Databases'] ,
'db/conf/raid': ['RAID', 'Recent Advances in Intrusion Detection'] ,
'db/conf/cgi': ['Computer Graphics International', 'CGI'] ,
'db/conf/pci': ['Panhellenic Conference on Informatics', 'PCI'] ,
'db/conf/wscg': ['WSCG', 'WSCG Short Papers', 'WSCG Full Papers'] ,
'db/conf/splc': ['SPLC', 'SPLC B', 'SPLC A', 'Software Product Lines'] ,
'db/journals/trs': ['Trans. Rough Sets', 'T. Rough Sets'] ,
'db/journals/ijsnet': ['IJSNet', 'IJSNET'] ,
'db/journals/cl': ['Comput. Lang.', 'Computer Languages, Systems & Structures'] ,
'db/conf/frocos': ['FroCoS', 'FroCos'],
'db/journals/jacic': ['JACIC', 'J. Aerospace Inf. Sys.'] ,
'db/conf/ieaaie': ['IEA/AIE', 'IEA/AIE Vol. 1', 'IEA/AIE Vol. 2'] ,
'db/conf/rfid': ['RFID', 'IEEE RFID'] ,
'db/journals/jasis': ['JASIST', 'JASIS'] ,
'db/journals/trob': ['IEEE Trans. Robotics and Automation', 'IEEE Trans. Robotics', 'IEEE J. Robotics and Automation'] ,
'db/journals/ieeecc': ['IEEE Concurrency', 'IEEE P&DT'] ,
'db/journals/ijksr': ['IJKSR', 'IJSEUS'] ,
'db/journals/ras': ['Robotics and Autonomous Systems', 'Robotics'] ,
'db/journals/taslp': ['IEEE Trans. Audio, Speech & Language Processing', 'IEEE/ACM Trans. Audio, Speech & Language Processing', 'IEEE Trans. Speech and Audio Processing'] ,
'db/journals/jla': ['J. Logic & Analysis', 'Logic & Analysis'] ,
'db/conf/nas': ['NAS', 'IEEE NAS'] ,
'db/journals/cis': ['Control and Intelligent Systems', 'Mechatronic Systems and Control'] ,
'db/journals/cai': ['Computing and Informatics', 'Computers and Artificial Intelligence'] ,
'db/journals/cib': ['IEEE Intelligent Informatics Bulletin', 'IEEE Computational Intelligence Bulletin'] ,
'db/journals/debu': ['IEEE Data Eng. Bull.', 'IEEE Database Eng. Bull.'] ,
'db/journals/ijoe': ['Int. J. Online Eng.', 'Int. J. Online Biomed. Eng.'] ,
'db/journals/zmp': ['J. Media Psychology', 'Zeitschrift für Medienpsychologie'],
'db/conf/mcs': ['Multiple Classifier Systems', 'MCS'] ,
'db/journals/gidr': ['GI Datenbank Rundbrief', 'Datenbank Rundbrief'] ,
'db/journals/jods': ['J. Data Semantics', 'J. Data Semantics III', 'J. Data Semantics IV', 'J. Data Semantics V', 'J. Data Semantics VII', 'J. Data Semantics VI'] ,
'db/journals/wias': ['Web Intelligence and Agent Systems', 'Web Intelligence'] ,
'db/journals/jct': ['J. Comb. Theory, Ser. B', 'J. Comb. Theory, Ser. A'] ,
'db/journals/chinaf': ['SCIENCE CHINA Information Sciences', 'Science in China Series F: Information Sciences'] ,
'db/journals/tlsdkcs': ['Trans. Large-Scale Data- and Knowledge-Centered Systems', 'T. Large-Scale Data- and Knowledge-Centered Systems'] ,
'db/conf/os': ['Symposium on Operating Systems', 'Conference on Operating Systems'] ,
'db/conf/csac': ['Computer Supported Acitivity Coordination', 'Computer Supported Activity Coordination'] ,
'db/conf/aaaifs': ['AAAI Fall Symposia', 'AAAI Fall Symposium: Artificial Intelligence for Prognostics', 'AAAI Fall Symposium: Biologically Inspired Cognitive Architectures', 'AAAI Fall Symposium: Semantic Web for Collaborative Knowledge Acquisition', 'AAAI Fall Symposium: Caring Machines', 'AAAI Fall Symposium: AI and Consciousness', 'AAAI Fall Symposium: AI in Eldercare: New Solutions to Old Problems', 'AAAI Fall Symposium: Artificial Intelligence for Gerontechnology', 'AAAI Fall Symposium: Intelligent Narrative Technologies', 'AAAI Fall Symposium: Capturing and Using Patterns for Evidence Detection', 'AAAI Fall Symposium: Naturally-Inspired Artificial Intelligence', 'AAAI Fall Symposium: Cognitive and Metacognitive Educational Systems', 'AAAI Fall Symposium: Advances in Cognitive Systems', 'AAAI Fall Symposium: Question Generation', 'AAAI Fall Symposium: Integrating Reasoning into Everyday Applications', 'AAAI Fall Symposium: Regarding the Intelligence in Distributed Intelligent Systems', 'AAAI Fall Symposium: Human Control of Bioinspired Swarms', 'AAAI Fall Symposium: Complex Adaptive Systems', 'AAAI Fall Symposium: Computational Approaches to Representation Change during Learning and Development', 'AAAI Fall Symposium: Interaction and Emergent Phenomena in Societies of Agents', 'AAAI Fall Symposium: Virtual Healthcare Interaction', 'AAAI Fall Symposium: Emergent Agents and Socialities', 'AAAI Fall Symposium: Information Retrieval and Knowledge Discovery in Biomedical Text', 'AAAI Fall Symposium: Building Representations of Common Ground with Intelligent Agents', 'AAAI Fall Symposium: Dialog with Robots', 'AAAI Fall Symposium: Proactive Assistant Agents', 'AAAI Fall Symposium: Quantum Informatics for Cognitive, Social, and Semantic Processes', 'AAAI Fall Symposium: Manifold Learning and Its Applications', 'AAAI Fall Symposium: Commonsense Knowledge', 'AAAI Fall Symposium: Multimedia Information Extraction', 'AAAI Fall Symposium: Robot-Human Teamwork in Dynamic Adverse Environment', 'AAAI Fall Symposium: Robots Learning Interactively from Human Teachers', 'AAAI Fall Symposium: Multi-Representational Architectures for Human-Level Intelligence', 'AAAI Fall Symposium: Automated Scientific Discovery', 'AAAI Fall Symposium: Developmental Systems', 'AAAI Fall Symposium: Artificial Intelligence of Humor', 'AAAI Fall Symposium: The Uses of Computational Argumentation', 'AAAI Fall Symposium: Computational Models of Narrative', 'AAAI Fall Symposium: Machine Aggregation of Human Judgment', 'AAAI Fall Symposium: Complex Adaptive Systems and the Threshold Effect', 'AAAI Fall Symposium: Coevolutionary and Coadaptive Systems', 'AAAI Fall Symposium: Aurally Informed Performance', 'AAAI Fall Symposium: Adaptive Agents in Cultural Contexts', 'AAAI Fall Symposium: Discovery Informatics', 'AAAI Fall Symposium: ALEC', 'AAAI Fall Symposium: Agents and the Semantic Web', 'AAAI Fall Symposium: Social Networks and Social Contagion', 'AAAI Fall Symposium: Spacecraft Autonomy'] ,
'db/conf/aaaiss': ['AAAI Spring Symposia','AAAI Spring Symposium: Data Driven Wellness', 'AAAI Spring Symposium: Technosocial Predictive Analytics', 'AAAI Spring Symposium: Multidisciplinary Collaboration for Socially Assistive Robotics', 'AAAI Spring Symposium: To Boldly Go Where No Human-Robot Team Has Gone Before', 'AAAI Spring Symposium: Intelligent Narrative Technologies II', 'AAAI Spring Symposium: Using AI to Motivate Greater Participation in Computer Science', 'AAAI Spring Symposium: Artificial Intelligence and Sustainable Design', 'AAAI Spring Symposium: Persistent Assistants: Living and Working with AI', 'AAAI Spring Symposium: Cognitive Shape Processing', 'AAAI Spring Symposium: Intelligent Information Privacy Management', 'AAAI Spring Symposium: Symbiotic Relationships between Semantic Web and Knowledge Engineering', 'AAAI Spring Symposium: Interaction Challenges for Intelligent Assistants', 'AAAI Spring Symposium: Computational Approaches to Analyzing Weblogs', 'AAAI Spring Symposium: Self-Tracking and Collective Intelligence for Personal Wellness', 'AAAI Spring Symposium: Experimental Design for Real-World Systems', 'AAAI Spring Symposium: Logical Formalizations of Commonsense Reasoning', 'AAAI Spring Symposium: Semantic Scientific Knowledge Integration', 'AAAI Spring Symposium: Quantum Interaction', 'AAAI Spring Symposium: Modeling Complex Adaptive Systems as if They Were Voting Processes', 'AAAI Spring Symposium: Computational Physiology', 'AAAI Spring Symposium: Argumentation for Consumers of Healthcare', 'AAAI Spring Symposium: Emotion, Personality, and Social Behavior', 'AAAI Spring Symposium: Educational Robotics and Beyond', 'AAAI Spring Symposium: Benchmarking of Qualitative Spatial and Temporal Reasoning Systems', 'AAAI Spring Symposium: Creativity and Early Cognitive Development', 'AAAI Spring Symposium: Linked Data Meets Artificial Intelligence', 'AAAI Spring Symposium: Wisdom of the Crowd', 'AAAI Spring Symposium: Artificial Intelligence for Development', "AAAI Spring Symposium: It's All in the Timing", 'AAAI Spring Symposium: AI for Business Agility', 'AAAI Spring Symposium: Reasoning with Mental and External Diagrams: Computational Modeling and Spatial Assistance', 'AAAI Spring Symposium: AI Technologies for Homeland Security', 'AAAI Spring Symposium: Designing Intelligent Robots', 'AAAI Spring Symposium: Intelligent Web Services Meet Social Computing', 'AAAI Spring Symposium: Agents that Learn from Human Teachers', 'AAAI Spring Symposium: Between a Rock and a Hard Place: Cognitive Science Principles Meet AI-Hard Problems', 'AAAI Spring Symposium: Control Mechanisms for Spatial Knowledge Processing in Cognitive / Intelligent Systems', 'AAAI Spring Symposium: Social Information Processing', 'AAAI Spring Symposium: AI, The Fundamental Social Aggregation Challenge', 'AAAI Spring Symposium: Learning by Reading and Learning to Read', 'AAAI Spring Symposium: What Went Wrong and Why: Lessons from AI Research and Applications', 'AAAI Spring Symposium: Knowledge Collection from Volunteer Contributors', 'AAAI Spring Symposium: Embedded Reasoning', 'AAAI Spring Symposium: Lifelong Machine Learning', 'AAAI Spring Symposium: AI Meets Business Rules and Process Management', 'AAAI Spring Symposium: Towards Conscious AI Systems', 'AAAI Spring Symposium: Game Theory for Security, Sustainability, and Health', 'AAAI Spring Symposium: Challenges to Decision Support in a Changing World', 'AAAI Spring Symposium: Intelligent Event Processing', 'AAAI Spring Symposium: Distributed Plan and Schedule Management', 'AAAI Spring Symposium: Combining Machine Learning with Knowledge Engineering', 'AAAI Spring Symposium: Machine Reading', 'AAAI Spring Symposium: Semantic Web Meets eGovernment', 'AAAI Spring Symposium: Analyzing Microtext', 'AAAI Spring Symposium: Social Semantic Web: Where Web 2.0 Meets Web 3.0', 'AAAI Spring Symposium: Help Me Help You: Bridging the Gaps in Human-Agent Collaboration', 'AAAI Spring Symposium: Intentions in Intelligent Systems', 'AAAI Spring Symposium: Creative Intelligent Systems', 'AAAI Spring Symposium: Human Behavior Modeling', 'AAAI Spring Symposium: Multirobot Systems and Physical Data Structures', 'AAAI Spring Symposium: Formalizing and Compiling Background Knowledge and Its Applications to Knowledge Representation and Question Answering', 'AAAI Spring Symposium: AI and Health Communication', 'AAAI Spring Symposium: Trust and Autonomous Systems', 'AAAI Spring Symposium: Shikakeology', 'AAAI Spring Symposium: Game Theoretic and Decision Theoretic Agents'] ,
'db/conf/coco': ['Conference on Computational Complexity','IEEE Conference on Computational Complexity', 'Structure in Complexity Theory Conference', 'Computational Complexity Conference', 'Complexity of Computer Computations', 'CCC'] ,
'db/journals/talip': ['ACM Trans. Asian & Low-Resource Lang. Inf. Process.', 'ACM Trans. Asian Lang. Inf. Process.'] ,
'db/journals/ijmms': ['Int. J. Hum.-Comput. Stud.', 'International Journal of Man-Machine Studies'] ,
'db/journals/tsp': ['IEEE Trans. Signal Processing', 'IEEE Trans. Acoustics, Speech, and Signal Processing'] ,
'db/journals/jossr': ['JoSS', 'JoSSR'] ,
'db/conf/evolve': ['EVOLVE','EVOLVE III'] ,
'db/conf/mod': ['LOD', 'MOD'] ,
'db/conf/sies': ['SIES', 'IES'] ,
'db/conf/nanonet': ['Nano-Net', 'NanoNet'] ,
'db/conf/itnac': ['ITNAC', 'ATNAC'] ,
'db/conf/itw': ['ITW', 'ITW Fall'] ,
'db/conf/promas': ['PROMAS', 'ProMAS'] ,
'db/conf/vrml': ['Web3D', 'VRML'] ,
'db/journals/tamd': ['IEEE Trans. Cognitive and Developmental Systems', 'IEEE Trans. Autonomous Mental Development'] ,
# SIGOPS
# - OSDI/SOSP alternate years, so are treated as one venue; USENIX ATC has two variants in DBLP
# 'ops': ['SOSP', 'OSDI', 'EuroSys'], # 'USENIX Annual Technical Conference', 'USENIX Annual Technical Conference, General Track'],
'sosp' : ['SOSP'],
'osdi' : ['OSDI'],
'db/conf/iwcs': ['IWCS', 'IWCS1', 'IWCS2'] ,
'db/conf/coolchips': ['COOL Chips', 'COOL CHIPS'] ,
'eurosys' : ['EuroSys'], # next tier
'fast' : ['FAST'], # next tier
'db/conf/sbm': ['SBIM', 'SBM'] ,
'db/conf/fgr': ['FGR', 'FG'] ,
'usenixatc' : ['USENIX','USENIX Annual Technical Conference', 'USENIX Annual Technical Conference, General Track','USENIX Winter', 'USENIX Summer'], # next tier
# SIGMETRICS
# - Two variants for each, as in DBLP.
# 'metrics': ['SIGMETRICS', 'SIGMETRICS/Performance', 'POMACS','IMC', 'Internet Measurement Conference'],
'imc': ['IMC', 'Internet Measurement Conference','Internet Measurment Conference','Internet Measurement Workshop'],
'sigmetrics': ['SIGMETRICS', 'SIGMETRICS/Performance', 'POMACS'],
'db/conf/csoc': ['CSOC', 'CSOS'] ,
'db/conf/belief': ['BELIEF', 'Belief Functions'] ,
# SIGMOBILE
# 'mobile': ['MobiSys', 'MobiCom', 'MOBICOM', 'SenSys'],
'mobisys' : ['MobiSys'],
'mobicom' : ['MobiCom', 'MOBICOM'],
'sensys' : ['SenSys'],
'social': ['SocialCom','SocialCom/PASSAT'],
# SIGHPC
# 'hpc': ['SC', 'HPDC', 'ICS'],
'sc': ['SC','SC Companion'],
'hpdc': ['HPDC'],
'ics': ['ICS'],
# SIGBED
# 'bed': ['RTSS', 'RTAS', 'IEEE Real-Time and Embedded Technology and Applications Symposium', 'EMSOFT'],
'emsoft': ['EMSOFT'], # TECS: issue number & page numbers must be checked
'rtss' : ['RTSS'],
'rtas' : ['RTAS', 'IEEE Real-Time and Embedded Technology and Applications Symposium'],
# SIGDA
# 'da': ['ICCAD', 'DAC'],
'iccad': ['ICCAD'],
'dac' : ['DAC'],
# SIGMOD
# 'mod': ['VLDB', 'PVLDB', 'SIGMOD Conference'],
'vldb' : ['VLDB', 'PVLDB'],
'sigmod' : ['SIGMOD Conference'],
'icde' : ['ICDE'], # next tier
'pods' : ['PODS'], # next tier
'assets': ['ASSETS','International ACM Conference on Assistive Technologies'],
# SIGSAC
# - USENIX Security listed twice to reflect variants in DBLP
# 'sec': ['IEEE Symposium on Security and Privacy', 'ACM Conference on Computer and Communications Security', 'USENIX Security Symposium', 'USENIX Security', 'CCS'], # , 'NDSS'],
'ccs': ['CCS', 'ACM Conference on Computer and Communications Security'],
'oakland' : ['IEEE Symposium on Security and Privacy'],
'usenixsec' : ['USENIX Security Symposium', 'USENIX Security'],
'ndss' : ['NDSS'],
'pets' : ['PoPETs', 'Privacy Enhancing Technologies'],
'xp': ['XP', 'XP Workshops','XP1 Workshop on Database Theory','XP2 Workshop on Relational Database Theory','XP4.5 Workshop on Database Theory', 'XP7.52 Workshop on Database Theory'],
# SIGCOMM
# 'comm': ['SIGCOMM', 'NSDI'], # INFOCOM
'sigcomm': ['SIGCOMM'],
'dmkd': ['DMKD','1999 ACM SIGMOD Workshop on Research Issues in Data Mining and Knowledge Discovery', 'ACM SIGMOD Workshop on Research Issues in Data Mining and Knowledge Discovery'],
'nsdi': ['NSDI'], # INFOCOM
# SIGARCH
# 'arch': ['ISCA', 'MICRO', 'ASPLOS'],
'asplos': ['ASPLOS'],
'isca': ['ISCA'],
'micro': ['MICRO'],
'hpca': ['HPCA'], # next tier
# SIGLOG
# 'log': ['CAV', 'CAV (1)', 'CAV (2)', 'LICS', 'CSL-LICS'],
'cav': ['CAV', 'CAV (1)', 'CAV (2)'],
'lics' : ['LICS', 'CSL-LICS'],
# SIGACT
# 'act': ['STOC', 'FOCS', 'SODA'],
'focs': ['FOCS','SWAT (FOCS)','SWCT'],
'stoc': ['STOC'],
'soda': ['SODA'],
'IS':['IS','IEEE Conf. of Intelligent Systems','IEEE Conf. on Intelligent Systems'],
# 'mlmining': ['NIPS', 'ICML', 'ICML (1)', 'ICML (2)', 'ICML (3)', 'KDD'],
'nips': ['NIPS', 'NeurIPS'],
'icml': ['ICML', 'ICML (1)', 'ICML (2)', 'ICML (3)','ML'],
'kdd' : ['KDD'],
# 'ai': ['AAAI', 'AAAI/IAAI', 'IJCAI'],
'aaai': ['AAAI', 'AAAI/IAAI'],
'ijcai': ['IJCAI'],
# AAAI listed to account for AAAI/IAAI joint conference
# SIGGRAPH
# - special handling of TOG to select SIGGRAPH and SIGGRAPH Asia
'siggraph': ['SIGGRAPH','SIGGRAPH Conference Paper Track'],
# 'siggraph' : ['SIGGRAPH'],
'siggraph-asia' : ['SIGGRAPH Asia'],
# SIGIR
# 'ir': ['WWW', 'SIGIR'],
'sigir': ['SIGIR'],
'www': ['WWW'],
# SIGCHI
# 'chi': ['CHI', 'UbiComp', 'Ubicomp', 'UIST', 'IMWUT', 'Pervasive'],
'chiconf' : ['CHI'],
'ubicomp' : ['UbiComp', 'Ubicomp', 'IMWUT', 'Pervasive'],
'uist' : ['UIST','ACM Symposium on User Interface Software and Technology'],
# 'nlp': ['EMNLP', 'ACL', 'ACL (1)', 'ACL (2)', 'NAACL', 'HLT-NAACL', 'NAACL-HLT',
# 'ACL/IJCNLP', # -- in 2009 was joint
# 'COLING-ACL', # -- in 1998 was joint
# 'EMNLP-CoNLL', # -- in 2012 was joint
# 'HLT/EMNLP', # -- in 2005 was joint
# ],
'emnlp': ['EMNLP', 'EMNLP-CoNLL', 'HLT/EMNLP', 'EMNLP-IJCNLP'],
'acl' : ['ACL', 'ACL (1)', 'ACL (2)', 'ACL/IJCNLP', 'COLING-ACL'],
'naacl' : ['NAACL', 'HLT-NAACL', 'NAACL-HLT', 'NAACL-HLT (1)','NAACL-HLT (2)'],
# 'vision': ['CVPR', 'CVPR (1)', 'CVPR (2)', 'ICCV', 'ECCV', 'ECCV (1)', 'ECCV (2)', 'ECCV (3)', 'ECCV (4)', 'ECCV (5)', 'ECCV (6)', 'ECCV (7)'],
'cvpr': ['CVPR', 'CVPR (1)', 'CVPR (2)'],
'iccv': ['ICCV'],
'db/conf/ercimdl': ['ECDL', 'TPDL'] ,
'db/conf/mobiwac': ['MOBIWAC', 'MobiWac'] ,
'db/conf/eScience': ['eScience', 'e-Science'] ,
'db/conf/mfps': ['MFPS', 'Mathematical Foundations of Programming Semantics'] ,
'db/conf/aPcsac': ['Asia-Pacific Computer Systems Architecture Conference', 'ACSAC', 'ACAC'] ,
'db/conf/green': ['IGSC','IGCC', 'Green Computing Conference'] ,
'eccv': ['ECCV', 'ECCV (1)', 'ECCV (2)', 'ECCV (3)', 'ECCV (4)', 'ECCV (5)', 'ECCV (6)', 'ECCV (7)', 'ECCV (8)', 'ECCV (9)', 'ECCV (10)', 'ECCV (11)', 'ECCV (12)', 'ECCV (13)', 'ECCV (14)', 'ECCV (15)', 'ECCV (16)'],
# 'robotics': ['ICRA', 'ICRA (1)', 'ICRA (2)', 'IROS', 'Robotics: Science and Systems'],
'icra': ['ICRA', 'ICRA (1)', 'ICRA (2)'],
'iros': ['IROS'],
'icme': ['ICME','ICMCS'],
'db/conf/ismar': ['ISMAR', 'ISAR', 'IWAR'] ,
'rss': ['Robotics: Science and Systems'],
'db/conf/acsc': ['ACSC', 'ACSW'] ,
'db/conf/icfhr': ['ICFHR', 'IWFHR'],
'db/conf/icica': ['ICICA', 'ICICA LNCS'] ,
'db/conf/tapsoft': ['TAPSOFT', 'TAPSOFT, Vol.1', 'TAPSOFT, Vol.2'] ,
'db/conf/ics': ['International Conference on Supercomputing', 'ICS 25th Anniversary'] ,
# 'crypt': ['CRYPTO', 'CRYPTO (1)', 'CRYPTO (2)', 'CRYPTO (3)', 'EUROCRYPT', 'EUROCRYPT (1)', 'EUROCRYPT (2)', 'EUROCRYPT (3)'],
'crypto': ['CRYPTO', 'CRYPTO (1)', 'CRYPTO (2)', 'CRYPTO (3)'],
'eurocrypt': ['EUROCRYPT', 'EUROCRYPT (1)', 'EUROCRYPT (2)', 'EUROCRYPT (3)'],
# SIGBio
# - special handling for ISMB proceedings in Bioinformatics special issues.
# 'bio': ['RECOMB', 'ISMB', 'Bioinformatics', 'ISMB/ECCB (Supplement of Bioinformatics)', 'Bioinformatics [ISMB/ECCB]', 'ISMB (Supplement of Bioinformatics)'],
'ismb': ['ISMB', 'ISMB/ECCB (Supplement of Bioinformatics)', 'ISMB (Supplement of Bioinformatics)', 'Bioinformatics [ISMB]', 'Bioinformatics [ISMB/ECCB]'],
'recomb' : ['RECOMB'],
# special handling of IEEE TVCG to select IEEE Vis and VR proceedings
'vis': ['IEEE Visualization'],
'vr' : ['VR'],
# 'ecom' : ['EC', 'WINE']
'ec' : ['EC'],
'wine' : ['WINE'],
# ,'cse' : ['SIGCSE']
Area("popl"): [Conference("POPL")],
Area("pldi"): [Conference("PLDI")],
# "Next tier" - see csrankings.ts
Area("oopsla"): [
Conference("OOPSLA"),
Conference("OOPSLA/ECOOP"),
], # Next tier; note in 1990 the conference was merged with ECOOP
Area("icfp"): [Conference("ICFP")], # Next tier
Area("pacmpl"): [
Conference("PACMPL"),
Conference("Proc. ACM Program. Lang."),
], # Special PACMPL handling below
# SIGSOFT
Area("icse"): [Conference("ICSE"), Conference("ICSE (1)")],
Area("fse"): [Conference("SIGSOFT FSE"), Conference("ESEC/SIGSOFT FSE")],
Area("ase"): [Conference("ASE")], # Next tier
Area("issta"): [Conference("ISSTA")], # Next tier
# SIGOPS
Area("sosp"): [Conference("SOSP")],
Area("osdi"): [Conference("OSDI")],
Area("eurosys"): [Conference("EuroSys")], # next tier
Area("fast"): [Conference("FAST")], # next tier
Area("usenixatc"): [
Conference("USENIX Annual Technical Conference"),
Conference("USENIX Annual Technical Conference, General Track"),
], # next tier
# SIGMETRICS
# - Two variants for each, as in DBLP.
Area("imc"): [
Conference("IMC"),
Conference("Internet Measurement Conference"),
],
Area("sigmetrics"): [
Conference("SIGMETRICS"),
Conference("SIGMETRICS/Performance"),
Conference("POMACS"),
Conference("Proc. ACM Meas. Anal. Comput. Syst."),
],
# SIGMOBILE
Area("mobisys"): [Conference("MobiSys")],
Area("mobicom"): [Conference("MobiCom"), Conference("MOBICOM")],
Area("sensys"): [Conference("SenSys")],
# SIGHPC
# 'hpc': ['SC', 'HPDC', 'ICS'],
Area("sc"): [Conference("SC")],
Area("hpdc"): [Conference("HPDC")],
Area("ics"): [Conference("ICS")],
# SIGBED
Area("emsoft"): [
Conference("EMSOFT"),
Conference("ACM Trans. Embedded Comput. Syst."),
Conference("ACM Trans. Embed. Comput. Syst."),
Conference("IEEE Trans. Comput. Aided Des. Integr. Circuits Syst."),
], # TECS: issue number & page numbers must be checked
Area("rtss"): [Conference("RTSS"), Conference("rtss")],
Area("rtas"): [
Conference("RTAS"),
Conference("IEEE Real-Time and Embedded Technology and Applications Symposium"),
],
# SIGDA
Area("iccad"): [Conference("ICCAD")],
Area("dac"): [Conference("DAC")],
# SIGMOD
Area("vldb"): [
Conference("VLDB"),
Conference("PVLDB"),
Conference("Proc. VLDB Endow."),
],
Area("sigmod"): [Conference("SIGMOD Conference")],
Area("icde"): [Conference("ICDE")], # next tier
Area("pods"): [Conference("PODS")], # next tier
# SIGSAC
Area("ccs"): [
Conference("CCS"),
Conference("ACM Conference on Computer and Communications Security"),
],
Area("oakland"): [Conference("IEEE Symposium on Security and Privacy")],
Area("usenixsec"): [
Conference("USENIX Security Symposium"),
Conference("USENIX Security"),
],
Area("ndss"): [Conference("NDSS")],
Area("pets"): [
Conference("PoPETs"),
Conference("Privacy Enhancing Technologies"),
Conference("Proc. Priv. Enhancing Technol."),
],
# SIGCOMM
Area("sigcomm"): [Conference("SIGCOMM")],
Area("nsdi"): [Conference("NSDI")],
# SIGARCH
Area("asplos"): [Conference("ASPLOS")],
Area("isca"): [Conference("ISCA")],
Area("micro"): [Conference("MICRO")],
Area("hpca"): [Conference("HPCA")], # next tier
# SIGLOG
# 'log': ['CAV', 'CAV (1)', 'CAV (2)', 'LICS', 'CSL-LICS'],
Area("cav"): [
Conference("CAV"),
Conference("CAV (1)"),
Conference("CAV (2)"),
],
Area("lics"): [Conference("LICS"), Conference("CSL-LICS")],
# SIGACT
# 'act': ['STOC', 'FOCS', 'SODA'],
Area("focs"): [Conference("FOCS")],
Area("stoc"): [Conference("STOC")],
Area("soda"): [Conference("SODA")],
# 'mlmining': ['NIPS', 'ICML', 'ICML (1)', 'ICML (2)', 'ICML (3)', 'KDD'],
Area("nips"): [Conference("NIPS"), Conference("NeurIPS")],
Area("icml"): [
Conference("ICML"),
Conference("ICML (1)"),
Conference("ICML (2)"),
Conference("ICML (3)"),
],
Area("iclr"): [Conference("ICLR"),Conference("ICLR Poster")],
Area("iclr workshop"): [Conference("ICLR Workshop"),Conference("ICLR Workshop Poster")],
Area("kdd"): [Conference("KDD")],
# 'ai': ['AAAI', 'AAAI/IAAI', 'IJCAI'],
Area("aaai"): [Conference("AAAI"), Conference("AAAI/IAAI")],
Area("ijcai"): [Conference("IJCAI")],
# AAAI listed to account for AAAI/IAAI joint conference
# SIGGRAPH
# - special handling of TOG to select SIGGRAPH and SIGGRAPH Asia
# SIGIR
# 'ir': ['WWW', 'SIGIR'],
Area("sigir"): [Conference("SIGIR")],
Area("www"): [Conference("WWW")],
# SIGCHI
# 'chi': ['CHI', 'UbiComp', 'Ubicomp', 'UIST', 'IMWUT', 'Pervasive'],
Area("chiconf"): [Conference("CHI")],
Area("ubicomp"): [
Conference("UbiComp"),
Conference("Ubicomp"),
Conference("IMWUT"),
Conference("Pervasive"),
Conference("Proc. ACM Interact. Mob. Wearable Ubiquitous Technol."),
],
Area("uist"): [Conference("UIST")],
# 'nlp': ['EMNLP', 'ACL', 'ACL (1)', 'ACL (2)', 'NAACL', 'HLT-NAACL', 'NAACL-HLT',
# 'ACL/IJCNLP', # -- in 2009 was joint
# 'COLING-ACL', # -- in 1998 was joint
# 'EMNLP-CoNLL', # -- in 2012 was joint
# 'HLT/EMNLP', # -- in 2005 was joint
# ],
Area("emnlp"): [
Conference("EMNLP"),
Conference("EMNLP (1)"),
Conference("EMNLP-CoNLL"),
Conference("HLT/EMNLP"),
Conference("EMNLP-IJCNLP"),
Conference("EMNLP/IJCNLP (1)"),
],
Area("acl"): [
Conference("ACL"),
Conference("ACL (1)"),
Conference("ACL (2)"),
Conference("ACL/IJCNLP"),
Conference("ACL/IJCNLP (1)"),
Conference("ACL/IJCNLP (2)"),
Conference("COLING-ACL"),
],
Area("naacl"): [
Conference("NAACL"),
Conference("HLT-NAACL"),
Conference("NAACL-HLT"),
Conference("NAACL-HLT (1)"),
],
# 'vision': ['CVPR', 'CVPR (1)', 'CVPR (2)', 'ICCV', 'ECCV', 'ECCV (1)', 'ECCV (2)', 'ECCV (3)', 'ECCV (4)', 'ECCV (5)', 'ECCV (6)', 'ECCV (7)'],
Area("cvpr"): [
Conference("CVPR"),
Conference("CVPR (1)"),
Conference("CVPR (2)"),
],
Area("iccv"): [Conference("ICCV")],
Area("eccv"): [
Conference("ECCV"),
Conference("ECCV (1)"),
Conference("ECCV (2)"),
Conference("ECCV (3)"),
Conference("ECCV (4)"),
Conference("ECCV (5)"),
Conference("ECCV (6)"),
Conference("ECCV (7)"),
Conference("ECCV (8)"),
Conference("ECCV (9)"),
Conference("ECCV (10)"),
Conference("ECCV (11)"),
Conference("ECCV (12)"),
Conference("ECCV (13)"),
Conference("ECCV (14)"),
Conference("ECCV (15)"),
Conference("ECCV (16)"),
Conference("ECCV (17)"),
Conference("ECCV (18)"),
Conference("ECCV (19)"),
Conference("ECCV (20)"),
Conference("ECCV (21)"),
Conference("ECCV (22)"),
Conference("ECCV (23)"),
Conference("ECCV (24)"),
Conference("ECCV (25)"),
Conference("ECCV (26)"),
Conference("ECCV (27)"),
Conference("ECCV (28)"),
Conference("ECCV (29)"),
Conference("ECCV (30)"),
Conference("ECCV (31)"),
Conference("ECCV (32)"),
Conference("ECCV (33)"),
Conference("ECCV (34)"),
Conference("ECCV (35)"),
Conference("ECCV (36)"),
Conference("ECCV (37)"),
Conference("ECCV (38)"),
Conference("ECCV (39)"),
],
# 'robotics'
Area("icra"): [
Conference("ICRA"),
Conference("ICRA (1)"),
Conference("ICRA (2)"),
],
Area("iros"): [Conference("IROS")],
Area("rss"): [Conference("Robotics: Science and Systems")],
# 'crypt'
Area("crypto"): [
Conference("CRYPTO"),
Conference("CRYPTO (1)"),
Conference("CRYPTO (2)"),
Conference("CRYPTO (3)"),
Conference("CRYPTO (4)"),
],
Area("eurocrypt"): [
Conference("EUROCRYPT"),
Conference("EUROCRYPT (1)"),
Conference("EUROCRYPT (2)"),
Conference("EUROCRYPT (3)"),
],
# SIGBio
# - special handling for ISMB proceedings in Bioinformatics special issues.
# 'bio': ['RECOMB', 'ISMB', 'Bioinformatics', 'ISMB/ECCB (Supplement of Bioinformatics)', 'Bioinformatics [ISMB/ECCB]', 'ISMB (Supplement of Bioinformatics)'],
Area("ismb"): [
Conference("ISMB"),
Conference("Bioinformatics"),
Conference("Bioinform."),
Conference("ISMB/ECCB (Supplement of Bioinformatics)"),
Conference("Bioinformatics [ISMB/ECCB]"),
Conference("ISMB (Supplement of Bioinformatics)"),
],
Area("recomb"): [Conference("RECOMB")],
# special handling of IEEE TVCG to select IEEE Vis and VR proceedings
Area("vis"): [
Conference("IEEE Visualization"),
Conference("IEEE Trans. Vis. Comput. Graph."),
],
Area("vr"): [Conference("VR")],
# 'ecom' : ['EC', 'WINE']
Area("ec"): [Conference("EC")],
Area("wine"): [Conference("WINE")]
# ,'cse' : ['SIGCSE']
}
inverse_area_dict = {}
for k,v in areadict.items():
n = len(v)
for i in range(1,n):
inverse_area_dict[v[i]] = v[0]
# EMSOFT is now published as a special issue of TECS *or* IEEE TCAD in a particular page range.
EMSOFT_TECS = {2017: (16, "5s"), 2019: (18, "5s"), 2021: (20, "5s")}
EMSOFT_TECS_PaperNumbers = {2017: (163, 190), 2019: (84, 110), 2021: (79, 106)}
EMSOFT_TCAD = {2018: (37, 11), 2020: (39, 11), 2022: (41, 11)}
EMSOFT_TCAD_PaperStart = {
# 2018 page numbers contributed by Ezio Bartocci
2018: {
2188,
2200,
2233,
2244,
2311,
2393,
2404,
2474,
2578,
2636,
2649,
2673,
2743,
2768,
2812,
2845,
2869,
2894,
2906,
2952,
},
2020: {
3215,
3227,
3288,
3323,
3336,
3348,
3385,
3420,
3433,
3467,
3492,
3506,
3555,
3566,
3650,
3662,
3674,
3711,
3762,
3809,
3856,
3868,
3893,
3906,
3931,
3944,
3981,
3993,
4006,
4018,
4090,
4102,
4142,
4166,
4205,
},
# 2022 numbers contributed by Changhee Jang
2022: {
3614,
3638,
3673,
3757,
3779,
3850,
3874,
3886,
3898,
3957,
3969,
3981,
4016,
4028,
4157,
4193,
4205,
4253,
4265,
4361,
4373,
4409,
4421,
4445,
4457,
4469,
4492,
4504,
4539,
4563,
},
}
# DAC in 2019 has article numbers. Some of these have too few pages. (Contributed by Wanli Chang.)
DAC_TooShortPapers = {
2019: {
21,
22,
43,
44,
45,
76,
77,
78,
79,
100,
101,
121,
152,
153,
154,
175,
176,
197,
198,
199,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
}
}
# ISMB proceedings are published as special issues of Bioinformatics.
# Here is the list.
ISMB_Bioinformatics = {
2023: (39, "Supplement"), # The entries for 2022 and 2023 are speculative.
2022: (38, "Supplement"),
2021: (37, "Supplement"),
2020: (36, "Supplement-1"),
2019: (35, 14),
2018: (34, 13),
2017: (33, 14),
2016: (32, 12),
2015: (31, 12),
2014: (30, 12),
2013: (29, 13),
2012: (28, 12),
2011: (27, 13),
2010: (26, 12),
2009: (25, 12),
2008: (24, 13),
2007: (23, 13),
}
# TOG special handling to count only EUROGRAPHICS proceedings.
# Assuming all will be in the same issues through 2023.
TOG_SIGGRAPH_Volume = {
2023: (42, 4),
2022: (41, 4),
2021: (40, 4),
2020: (39, 4),
2019: (38, 4),
2018: (37, 4),
2017: (36, 4),
2016: (35, 4),
2015: (34, 4),
2014: (33, 4),
2013: (32, 4),
2012: (31, 4),
2011: (30, 4),
2010: (29, 4),
2009: (28, 3),
2008: (27, 3),
2007: (26, 3),
2006: (25, 3),
2005: (24, 3),
2004: (23, 3),
2003: (22, 3),
2002: (21, 3),
}
# TOG special handling to count only SIGGRAPH Asia proceedings.
# Assuming all will be in the same issues through 2023.
TOG_SIGGRAPH_Asia_Volume = {
2023: (42, 6),
2022: (41, 6),
2021: (40, 6),
2020: (39, 6),
2019: (38, 6),
2018: (37, 6),
2017: (36, 6),
2016: (35, 6),
2015: (34, 6),
2014: (33, 6),
2013: (32, 6),
2012: (31, 6),
2011: (30, 6),
2010: (29, 6),
2009: (28, 5),
2008: (27, 5),
}
# CGF special handling to count only EUROGRAPHICS proceedings.
# Assuming all will be in the same issues through 2023.
CGF_EUROGRAPHICS_Volume = {
2023: (42, 2),
2022: (41, 2),
2021: (40, 2),
2020: (39, 2),
2019: (38, 2),
2018: (37, 2),
2017: (36, 2),
2016: (35, 2),
2015: (34, 2),
2014: (33, 2),
2013: (32, 2),
2012: (31, 2),
2011: (30, 2),
2010: (29, 2),
2009: (28, 2),
2008: (27, 2),
2007: (26, 3),
2006: (25, 3),
2005: (24, 3),
2004: (23, 3),
2003: (22, 3),
2002: (21, 3),
2001: (20, 3),
2000: (19, 3),
1999: (18, 3),
1998: (17, 3),
1997: (16, 3),
1996: (15, 3),
1995: (14, 3),
1994: (13, 3),
1993: (12, 3),
1992: (11, 3),
}
# TVCG special handling to count only IEEE VIS
TVCG_Vis_Volume = {
2022: (28, 1),
2021: (27, 2),
2020: (26, 1),
2019: (25, 1),
2018: (24, 1),
2017: (23, 1),
2016: (22, 1),
2014: (20, 12),
2013: (19, 12),
2012: (18, 12),
2011: (17, 12),
2010: (16, 6),
2009: (15, 6),
2008: (14, 6),
2007: (13, 6),
2006: (12, 5),
}
# TVCG special handling to count only IEEE VR
TVCG_VR_Volume = {
2022: (28, 5),
2021: (27, 5),
2020: (26, 5),
2019: (25, 5),
2018: (24, 4),
2017: (23, 4),
2016: (22, 4),
2015: (21, 4),
2014: (20, 4),
2013: (19, 4),
2012: (18, 4),
}
# ICSE special handling to omit short papers.
# Contributed by Zhendong Su, UC Davis.
# Short papers start at this page number for these proceedings of ICSE (and are thus omitted,
# as the acceptance criteria differ).
ICSE_ShortPaperStart = {
2013: 851,
2012: 957,
2011: 620,
2010: 544,
2009: 550,
2007: 510,
2006: 411,
2005: 478,
2003: 477,
2002: 534,
2001: 502,
2000: 518,
1999: 582,
1998: 419,
1997: 535,
}
# SIGMOD special handling to avoid non-research papers.
# This and other SIGMOD data below contributed by Davide Martinenghi,
# Politecnico di Milano.
SIGMOD_NonResearchPaperStart = {
2017: 1587,
2016: 2069,
2013: 917,
2012: 577,
2011: 1045,
2010: 963,
2009: 841,
2008: 1043,
2007: 873,
2006: 695,
2005: 778,
2004: 839,
2003: 635,
2002: 500,
2001: 521,
2000: 499,
1999: 503,
1998: 496,
1997: 498,
1996: 541,
1995: 423,
1994: 466,
1993: 388,
}
# SIGMOD recently has begun intermingling research and non-research
# track papers in their proceedings, requiring individual paper
# filtering.
SIGMOD_NonResearchPapersRange = {
2018: [(177, 230), (583, 627), (789, 839), (1393, 1459), (1637, 1845)],
2017: [
(1, 3),
(51, 63),
(125, 138),
(331, 343),
(1041, 1052),
(511, 526),
(1587, 1782),
],
2016: [
(1753, 1764),
(1295, 1306),
(795, 806),
(227, 238),
(999, 1010),
(1923, 1934),
(1307, 1318),
(1951, 1960),
(759, 771),
(253, 265),
(1405, 1416),
(215, 226),
(1105, 1117),
(35, 46),
(63, 75),
(807, 819),
(1099, 1104),
(1087, 1098),
(847, 859),
(239, 251),
(1393, 1404),
(2069, 2243),
],
2015: [
(227, 276),
(607, 658),
(1343, 1394),
(1657, 1706),
(1917, 1940),
(859, 918),
(1063, 1122),
(1403, 1462),
],
2014: [(147, 188), (337, 384), (529, 573), (1223, 1258)],
}
# Match ordinary page numbers (as in 10-17).
pageCounterNormal = re.compile("([0-9]+)-([0-9]+)")
# Match page number in the form volume:page (as in 12:140-12:150).
pageCounterColon = re.compile("[0-9]+:([1-9][0-9]*)-[0-9]+:([1-9][0-9]*)")
# Special regexp for extracting pseudo-volumes (paper number) from TECS.
TECSCounterColon = re.compile("([0-9]+):[1-9][0-9]*-([0-9]+):[1-9][0-9]*")
# Extract the ISMB proceedings page numbers.
ISMBpageCounter = re.compile(r"i(\d+)-i(\d+)")
def startpage(pageStr: str) -> int:
"""Compute the starting page number from a string representing page numbers."""
if pageStr is None:
return 0
pageCounterMatcher1 = pageCounterNormal.match(pageStr)
pageCounterMatcher2 = pageCounterColon.match(pageStr)
start = 0
if pageCounterMatcher1 is not None:
start = int(pageCounterMatcher1.group(1))
elif pageCounterMatcher2 is not None:
start = int(pageCounterMatcher2.group(1))
return start
def test_startpage():