From dc90043e0f7acb25c5b99335454d6bb9ea0c4722 Mon Sep 17 00:00:00 2001 From: asifebrahim Date: Wed, 9 Jul 2025 01:28:03 +0530 Subject: [PATCH 1/2] Added the feature of IcoRanking --- jabgui/src/main/java/module-info.java | 1 + .../jabref/gui/fieldeditors/FieldEditors.java | 2 + .../gui/fieldeditors/ICoreRankingEditor.java | 173 ++++++++++++++++++ .../gui/fieldeditors/FieldEditorsTest.java | 13 ++ jablib/src/main/java/module-info.java | 1 + .../logic/icore/ConferenceRankingEntry.java | 43 +++++ .../logic/icore/ICoreRankingRepository.java | 102 +++++++++++ .../org/jabref/logic/util/ConferenceUtil.java | 16 ++ .../model/entry/field/StandardField.java | 4 +- jablib/src/main/resources/ICORE.csv | 6 + .../icore/ICoreRankingRepositoryTest.java | 44 +++++ .../logic/util/ConferenceUtilsTest.java | 32 ++++ 12 files changed, 436 insertions(+), 1 deletion(-) create mode 100644 jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java create mode 100644 jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java create mode 100644 jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java create mode 100644 jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java create mode 100644 jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java create mode 100644 jablib/src/main/resources/ICORE.csv create mode 100644 jablib/src/test/java/org/jabref/logic/icore/ICoreRankingRepositoryTest.java create mode 100644 jablib/src/test/java/org/jabref/logic/util/ConferenceUtilsTest.java diff --git a/jabgui/src/main/java/module-info.java b/jabgui/src/main/java/module-info.java index 91f5ce6177b..732989c25e5 100644 --- a/jabgui/src/main/java/module-info.java +++ b/jabgui/src/main/java/module-info.java @@ -11,6 +11,7 @@ requires java.sql.rowset; // region JavaFX + requires javafx.swing; requires javafx.base; requires javafx.controls; requires javafx.fxml; diff --git a/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java b/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java index ac5a7096f24..b60bc7349db 100644 --- a/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java +++ b/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java @@ -90,6 +90,8 @@ public static FieldEditorFX getForField(final Field field, MonthEditorViewModel(field, suggestionProvider, databaseContext.getMode(), fieldCheckers, undoManager)); } else if (fieldProperties.contains(FieldProperty.LANGUAGE)) { return new OptionEditor<>(new LanguageEditorViewModel(field, suggestionProvider, databaseContext.getMode(), fieldCheckers, undoManager)); + } else if (field == StandardField.ICORANKING) { + return new ICoreRankingEditor(field); } else if (field == StandardField.GENDER) { return new OptionEditor<>(new GenderEditorViewModel(field, suggestionProvider, fieldCheckers, undoManager)); } else if (fieldProperties.contains(FieldProperty.EDITOR_TYPE)) { diff --git a/jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java b/jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java new file mode 100644 index 00000000000..3959a9a2c03 --- /dev/null +++ b/jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java @@ -0,0 +1,173 @@ +package org.jabref.gui.fieldeditors; + +import java.util.Optional; + +import javafx.beans.property.StringProperty; +import javafx.scene.Node; +import javafx.scene.Parent; +import javafx.scene.control.Button; +import javafx.scene.control.TextField; +import javafx.scene.control.TextInputControl; +import javafx.scene.layout.HBox; +import org.jabref.gui.keyboard.KeyBindingRepository; +import org.jabref.gui.undo.RedoAction; +import org.jabref.gui.undo.UndoAction; +import org.jabref.logic.icore.ConferenceRankingEntry; +import org.jabref.logic.icore.ICoreRankingRepository; +import org.jabref.logic.util.ConferenceUtil; +import org.jabref.model.entry.BibEntry; +import org.jabref.model.entry.field.Field; +import org.jabref.model.entry.field.StandardField; + +public class ICoreRankingEditor extends HBox implements FieldEditorFX { + + private final Field field; + private final TextField textField; + private BibEntry currentEntry; + private final ICoreRankingRepository repo; + + public ICoreRankingEditor(Field field) { + this.field = field; + this.textField = new TextField(); + this.repo = new ICoreRankingRepository(); // Load once + + this.textField.setPromptText("Enter or lookup ICORE rank"); + + Button lookupButton = new Button("Lookup Rank"); + lookupButton.setOnAction(event -> lookupRank()); + + this.getChildren().addAll(textField, lookupButton); + this.setSpacing(10); + } + + // Deprecated method it only shows rank by puttin the acronym in the text field +// private void lookupRank() { +// if (currentEntry == null) { +//// System.out.println("No entry is currently bound."); +// return; +// } +// +// // 1. Try icoreranking field first +// Optional icoreField = currentEntry.getField(StandardField.ICORANKING); +// if (icoreField.isPresent()) { +// String raw = icoreField.get(); +//// System.out.println("Using ICORE field: " + raw); +// +// Optional acronymRank = repo.getRankingFor(raw.toLowerCase()); +// String result = acronymRank.orElse("Not ranked"); +// textField.setText(result); +//// System.out.println("Lookup result from ICORE: " + result); +// return; +// } +// +// // 2. Then fallback to booktitle +// Optional bookTitle = currentEntry.getFieldOrAlias(StandardField.BOOKTITLE); +// // 3. Then fallback to journal +// if (bookTitle.isEmpty()) { +// bookTitle = currentEntry.getField(StandardField.JOURNAL); +// } +// +// if (bookTitle.isEmpty()) { +//// System.out.println("No usable field found."); +// textField.setText("Not ranked"); +// return; +// } +// +// String rawInput = bookTitle.get(); +//// System.out.println("Detected Title: '" + rawInput + "'"); +// +// Optional acronym = ConferenceUtil.extractAcronym(rawInput); +//// acronym.ifPresent(acr -> System.out.println("Extracted acronym: " + acr)); +// +// Optional rank = acronym.flatMap(repo::getRankingFor) +// .or(() -> repo.getRankingFor(rawInput)); +// +// String result = rank.orElse("Not ranked"); +// textField.setText(result); +//// System.out.println("Lookup result: " + result); +// } + +// By providing the acronym fetches the data from csv +private void lookupRank() { + if (currentEntry == null) { + return; + } + + Optional icoreField = currentEntry.getField(StandardField.ICORANKING); + Optional bookTitle = currentEntry.getFieldOrAlias(StandardField.BOOKTITLE); + if (bookTitle.isEmpty()) { + bookTitle = currentEntry.getField(StandardField.JOURNAL); + } + + Optional finalBookTitle = bookTitle; + String rawInput = icoreField.orElseGet(() -> finalBookTitle.orElse("Unknown")); + + Optional acronym = ConferenceUtil.extractAcronym(rawInput); // Extracting the acronym from our input field + Optional result = acronym.flatMap(repo::getFullEntry) + .or(() -> repo.getFullEntry(rawInput)); // Finding if any matching entry present in csv file +// If present then print the info + + if (result.isPresent()) { + ConferenceRankingEntry entry = result.get(); + + // Show in new dialog + javafx.scene.control.Alert alert = new javafx.scene.control.Alert(javafx.scene.control.Alert.AlertType.INFORMATION); + alert.setTitle("ICORE Ranking Info"); + alert.setHeaderText("Found Conference Details"); + alert.setContentText(entry.toString()); + alert.setResizable(true); + alert.getDialogPane().setPrefSize(600, 400); + alert.showAndWait(); + + textField.setText(entry.rank); // still show rank in the field + } else { + textField.setText("Not ranked"); + } +} + + @Override + public void bindToEntry(BibEntry entry) { + this.currentEntry = entry; + +// System.out.println("ENTRY booktitle = " + entry.getField(StandardField.BOOKTITLE).orElse("none")); +// System.out.println("ENTRY journal = " + entry.getField(StandardField.JOURNAL).orElse("none")); +// System.out.println("ENTRY title = " + entry.getField(StandardField.TITLE).orElse("none")); + + entry.getField(field).ifPresent(textField::setText); + + textField.textProperty().addListener((obs, oldVal, newVal) -> { + entry.setField(field, newVal); + }); + } + + @Override + public void establishBinding(TextInputControl textInputControl, StringProperty viewModelTextProperty, + KeyBindingRepository keyBindingRepository, UndoAction undoAction, RedoAction redoAction) { + FieldEditorFX.super.establishBinding(textInputControl, viewModelTextProperty, keyBindingRepository, undoAction, redoAction); + } + + @Override + public Parent getNode() { + return this; + } + + @Override + public void focus() { + FieldEditorFX.super.focus(); + } + + @Override + public double getWeight() { + return FieldEditorFX.super.getWeight(); + } + + @Override + public void requestFocus() { + textField.requestFocus(); + } + + @Override + public Node getStyleableNode() { + return super.getStyleableNode(); + } +} diff --git a/jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java b/jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java new file mode 100644 index 00000000000..3be360707d9 --- /dev/null +++ b/jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java @@ -0,0 +1,13 @@ +package org.jabref.gui.fieldeditors; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertNotNull; + +public class FieldEditorsTest { + + @Test + void testEditorCreationDoesNotCrash() { + assertNotNull(FieldEditors.class); + } +} diff --git a/jablib/src/main/java/module-info.java b/jablib/src/main/java/module-info.java index 426988c7bb1..4b8f2ad67df 100644 --- a/jablib/src/main/java/module-info.java +++ b/jablib/src/main/java/module-info.java @@ -1,4 +1,5 @@ open module org.jabref.jablib { + exports org.jabref.logic.icore; exports org.jabref.model; exports org.jabref.logic; diff --git a/jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java b/jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java new file mode 100644 index 00000000000..58b1427fbda --- /dev/null +++ b/jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java @@ -0,0 +1,43 @@ +package org.jabref.logic.icore; + +public class ConferenceRankingEntry { + public final String title; + public final String acronym; + public final String source; + public final String rank; + public final String note; + public final String dblp; + public final String primaryFor; + public final String comments; + public final String averageRating; + + public ConferenceRankingEntry(String title, String acronym, String source, String rank, + String note, String dblp, String primaryFor, + String comments, String averageRating) { + this.title = title; + this.acronym = acronym; + this.source = source; + this.rank = rank; + this.note = note; + this.dblp = dblp; + this.primaryFor = primaryFor; + this.comments = comments; + this.averageRating = averageRating; + } +// Printing the data of of the csv we got based on the acronym lookup in a orderky format in a new window + + @Override + public String toString() { + return String.format(""" + Title: %s + Acronym: %s + Source: %s + Rank: %s + Note: %s + DBLP: %s + Primary FoR: %s + Comments: %s + Average Rating: %s + """, title, acronym, source, rank, note, dblp, primaryFor, comments, averageRating); + } +} diff --git a/jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java b/jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java new file mode 100644 index 00000000000..043bb461c57 --- /dev/null +++ b/jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java @@ -0,0 +1,102 @@ +package org.jabref.logic.icore; + +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; +import java.util.HashMap; +import java.util.Map; +import java.util.Optional; + +import org.jabref.logic.util.strings.StringSimilarity; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class ICoreRankingRepository { + + final Map acronymToRank = new HashMap<>(); + private final Map nameToRank = new HashMap<>(); + private final Map acronymMap = new HashMap<>(); + private final Map nameMap = new HashMap<>(); + private final StringSimilarity similarity = new StringSimilarity(); + private static final Logger LOGGER = LoggerFactory.getLogger(ICoreRankingRepository.class); + + public ICoreRankingRepository() { + InputStream inputStream = getClass().getResourceAsStream("/ICORE.csv"); + if (inputStream == null) { + LOGGER.error("ICORE.csv not found in resources."); + return; + } + + try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, StandardCharsets.UTF_8))) { + reader.lines().skip(1).forEach(line -> { + String[] parts = line.split(",(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)", -1); + if (parts.length >= 9) { + String name = parts[0].trim().toLowerCase(); + String acronym = parts[1].trim().toLowerCase(); + String rank = parts[3].trim(); + acronymToRank.put(acronym, rank); + nameToRank.put(name, rank); + } + ConferenceRankingEntry entry = new ConferenceRankingEntry( + parts[0].trim(), // title + parts[1].trim(), // acronym + parts[2].trim(), // source + parts[3].trim(), // rank + parts[4].trim(), // note + parts[5].trim(), // dblp + parts[6].trim(), // primaryFor + parts[7].trim(), // comments + parts[8].trim() // averageRating + ); + acronymMap.put(entry.acronym.toLowerCase(), entry); + nameMap.put(entry.title.toLowerCase(), entry); + }); + +// System.out.println("Loaded entries:"); +// acronymToRank.forEach((key, val) -> System.out.println("Acronym: " + key + " -> " + val)); +// nameToRank.forEach((key, val) -> System.out.println("Name: " + key + " -> " + val)); + } catch (Exception e) { + LOGGER.error("Failed to load ICORE ranking data", e); + } + } + + public Optional getRankingFor(String acronymOrName) { + String key = acronymOrName.trim().toLowerCase(); + + // 1. Try exact acronym match + if (acronymToRank.containsKey(key)) { + return Optional.of(acronymToRank.get(key)); + } + + // 2. Try exact name match + if (nameToRank.containsKey(key)) { + return Optional.of(nameToRank.get(key)); + } + + // 3. Skip fuzzy matching for short strings (e.g., "icse") + if (key.length() < 6) { + LOGGER.info("Skipped fuzzy fallback for short string: " + key); + return Optional.empty(); + } + + // 4. Fallback: fuzzy match with strict threshold + LOGGER.info("Fuzzy match fallback triggered for: " + key); + return nameToRank.entrySet().stream() + .filter(e -> similarity.editDistanceIgnoreCase(e.getKey(), key) < 0.01) + .peek(e -> LOGGER.info("Fuzzy match candidate: " + e.getKey())) + .map(Map.Entry::getValue) + .findFirst(); + } + + public Optional getFullEntry(String acronymOrName) { + String key = acronymOrName.trim().toLowerCase(); + if (acronymMap.containsKey(key)) { + return Optional.of(acronymMap.get(key)); + } + if (nameMap.containsKey(key)) { + return Optional.of(nameMap.get(key)); + } + return Optional.empty(); + } +} diff --git a/jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java b/jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java new file mode 100644 index 00000000000..1f7ccc9efec --- /dev/null +++ b/jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java @@ -0,0 +1,16 @@ +package org.jabref.logic.util; + +import java.util.Optional; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +public class ConferenceUtil { + public static Optional extractAcronym(String title) { + Matcher matcher = Pattern.compile("\\((.*?)\\)").matcher(title); + if (matcher.find()) { + return Optional.of(matcher.group(1)); + } + return Optional.empty(); + + } +} diff --git a/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java b/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java index 5b192953b4e..cb57b2b3264 100644 --- a/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java +++ b/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java @@ -138,7 +138,9 @@ public enum StandardField implements Field { OWNER("owner"), TIMESTAMP("timestamp", FieldProperty.DATE), CREATIONDATE("creationdate", FieldProperty.DATE), - MODIFICATIONDATE("modificationdate", FieldProperty.DATE); + + MODIFICATIONDATE("modificationdate", FieldProperty.DATE), + ICORANKING("icoranking"); public static final Set AUTOMATIC_FIELDS = Set.of(OWNER, TIMESTAMP, CREATIONDATE, MODIFICATIONDATE); diff --git a/jablib/src/main/resources/ICORE.csv b/jablib/src/main/resources/ICORE.csv new file mode 100644 index 00000000000..8e26f2550ad --- /dev/null +++ b/jablib/src/main/resources/ICORE.csv @@ -0,0 +1,6 @@ +Title,Acronym,Source,Rank,Note,DBLP,Primary FoR,Comments,Average Rating +ACIS Conference on Software Engineering Research,SERA,CORE2023,C,none,view,4612,1,4.0 +AAAI Conference on Human Computation and Crowdsourcing,HCOMP,CORE2023,B,none,view,4608,0,N/A +TUGboat Journal,TUGBOAT,CORE2023,C,none,view,9999,1,3.5 +International Conference on Software Engineering,ICSE,CORE2023,A*,none,view,1001,2,4.8 +European Conference on Object-Oriented Programming,ECOOP,CORE2023,A,none,view,1002,2,4.2 diff --git a/jablib/src/test/java/org/jabref/logic/icore/ICoreRankingRepositoryTest.java b/jablib/src/test/java/org/jabref/logic/icore/ICoreRankingRepositoryTest.java new file mode 100644 index 00000000000..8d7b2f0de1a --- /dev/null +++ b/jablib/src/test/java/org/jabref/logic/icore/ICoreRankingRepositoryTest.java @@ -0,0 +1,44 @@ +package org.jabref.logic.icore; + +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +public class ICoreRankingRepositoryTest { + @Test + public void testExactMatchSERA() { + ICoreRankingRepository repo = new ICoreRankingRepository(); + assertEquals("C", repo.getRankingFor("SERA").orElse("Not Found")); + } + + @Test + public void testExactMatchICSE() { + ICoreRankingRepository repo = new ICoreRankingRepository(); + assertEquals("A*", repo.getRankingFor("ICSE").orElse("Not Found")); + } + + @Test + public void testFuzzyMatchName() { + ICoreRankingRepository repo = new ICoreRankingRepository(); + String name = "ACIS Conference on Software Engineering Research"; + assertTrue(repo.getRankingFor(name).isPresent()); + } + + @Test + public void testMissingValue() { + ICoreRankingRepository repo = new ICoreRankingRepository(); + assertTrue(repo.getRankingFor("NON_EXISTENT").isEmpty()); + } + @Test + public void test1(){ + ICoreRankingRepository repo = new ICoreRankingRepository(); + String name="International Conference on Software Engineering"; + assertTrue(repo.getRankingFor(name).isPresent()); + } + @Test + public void printAllAcronyms() { + ICoreRankingRepository repo = new ICoreRankingRepository(); + repo.acronymToRank.forEach((key, value) -> System.out.println(key + " => " + value)); + } + +} diff --git a/jablib/src/test/java/org/jabref/logic/util/ConferenceUtilsTest.java b/jablib/src/test/java/org/jabref/logic/util/ConferenceUtilsTest.java new file mode 100644 index 00000000000..3f43f65e490 --- /dev/null +++ b/jablib/src/test/java/org/jabref/logic/util/ConferenceUtilsTest.java @@ -0,0 +1,32 @@ +package org.jabref.logic.util; + +import org.junit.jupiter.api.Test; + +import java.util.Optional; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class ConferenceUtilsTest { + + @Test + void testExtractAcronym() { + String title = "ACIS Conference on Software Engineering Research (SERA)"; + assertEquals(Optional.of("SERA"), ConferenceUtil.extractAcronym(title)); + } + + @Test + void testNoAcronym() { + String title = "Some Conference Without Acronym"; + assertEquals(Optional.empty(), ConferenceUtil.extractAcronym(title)); + } + @Test + void test1(){ + String title="International Conference on Software Engineering (ICSE)"; + assertEquals(Optional.of("ICSE"),ConferenceUtil.extractAcronym(title)); + } + @Test + void test2(){ + String title="International Conference on Software Engineering"; + assertEquals(Optional.empty(),ConferenceUtil.extractAcronym(title)); + } +} From a318676888bf1122084e3106e3c3b256cbf0189a Mon Sep 17 00:00:00 2001 From: asifebrahim Date: Wed, 9 Jul 2025 22:16:29 +0530 Subject: [PATCH 2/2] Fixed all the unnecessary things --- CHANGELOG.md | 1 + jabgui/src/main/java/module-info.java | 1 - .../jabref/gui/fieldeditors/FieldEditors.java | 2 +- .../gui/fieldeditors/ICoreRankingEditor.java | 71 +- .../migrations/PreferencesMigrations.java | 29 +- .../gui/fieldeditors/FieldEditorsTest.java | 13 - .../logic/icore/ConferenceRankingEntry.java | 39 +- .../logic/icore/ICoreRankingRepository.java | 31 +- .../org/jabref/logic/util/ConferenceUtil.java | 1 - .../model/entry/field/FieldFactory.java | 2 +- .../model/entry/field/StandardField.java | 2 +- jablib/src/main/resources/ICORE.csv | 2205 ++++++++++++++++- 12 files changed, 2260 insertions(+), 137 deletions(-) delete mode 100644 jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java diff --git a/CHANGELOG.md b/CHANGELOG.md index ca6ab160c7d..9163e010848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -83,6 +83,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv - We removed support for MySQL/MariaDB and Oracle. [#12990](https://github.com/JabRef/jabref/pull/12990) - We removed library migrations (users need to use JabRef 6.0-alpha.1 to perform migrations) [#12990](https://github.com/JabRef/jabref/pull/12990) + ## [6.0-alpha2] – 2025-04-27 ### Added diff --git a/jabgui/src/main/java/module-info.java b/jabgui/src/main/java/module-info.java index 732989c25e5..91f5ce6177b 100644 --- a/jabgui/src/main/java/module-info.java +++ b/jabgui/src/main/java/module-info.java @@ -11,7 +11,6 @@ requires java.sql.rowset; // region JavaFX - requires javafx.swing; requires javafx.base; requires javafx.controls; requires javafx.fxml; diff --git a/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java b/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java index b60bc7349db..e5aea0e088a 100644 --- a/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java +++ b/jabgui/src/main/java/org/jabref/gui/fieldeditors/FieldEditors.java @@ -90,7 +90,7 @@ public static FieldEditorFX getForField(final Field field, MonthEditorViewModel(field, suggestionProvider, databaseContext.getMode(), fieldCheckers, undoManager)); } else if (fieldProperties.contains(FieldProperty.LANGUAGE)) { return new OptionEditor<>(new LanguageEditorViewModel(field, suggestionProvider, databaseContext.getMode(), fieldCheckers, undoManager)); - } else if (field == StandardField.ICORANKING) { + } else if (field == StandardField.ICORERANKING) { return new ICoreRankingEditor(field); } else if (field == StandardField.GENDER) { return new OptionEditor<>(new GenderEditorViewModel(field, suggestionProvider, fieldCheckers, undoManager)); diff --git a/jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java b/jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java index 3959a9a2c03..6309fff89c4 100644 --- a/jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java +++ b/jabgui/src/main/java/org/jabref/gui/fieldeditors/ICoreRankingEditor.java @@ -8,7 +8,9 @@ import javafx.scene.control.Button; import javafx.scene.control.TextField; import javafx.scene.control.TextInputControl; +import javafx.scene.control.Tooltip; import javafx.scene.layout.HBox; +import org.jabref.gui.icon.IconTheme; import org.jabref.gui.keyboard.KeyBindingRepository; import org.jabref.gui.undo.RedoAction; import org.jabref.gui.undo.UndoAction; @@ -33,67 +35,24 @@ public ICoreRankingEditor(Field field) { this.textField.setPromptText("Enter or lookup ICORE rank"); - Button lookupButton = new Button("Lookup Rank"); +// Button lookupButton = new Button("Lookup Rank"); + Button lookupButton = new Button(); + lookupButton.getStyleClass().setAll("icon-button"); + lookupButton.setGraphic(IconTheme.JabRefIcons.LOOKUP_IDENTIFIER.getGraphicNode()); + lookupButton.setTooltip(new Tooltip("Look up Icore Rank")); lookupButton.setOnAction(event -> lookupRank()); - this.getChildren().addAll(textField, lookupButton); this.setSpacing(10); + + lookupButton.setOnAction(event -> lookupRank()); } - // Deprecated method it only shows rank by puttin the acronym in the text field -// private void lookupRank() { -// if (currentEntry == null) { -//// System.out.println("No entry is currently bound."); -// return; -// } -// -// // 1. Try icoreranking field first -// Optional icoreField = currentEntry.getField(StandardField.ICORANKING); -// if (icoreField.isPresent()) { -// String raw = icoreField.get(); -//// System.out.println("Using ICORE field: " + raw); -// -// Optional acronymRank = repo.getRankingFor(raw.toLowerCase()); -// String result = acronymRank.orElse("Not ranked"); -// textField.setText(result); -//// System.out.println("Lookup result from ICORE: " + result); -// return; -// } -// -// // 2. Then fallback to booktitle -// Optional bookTitle = currentEntry.getFieldOrAlias(StandardField.BOOKTITLE); -// // 3. Then fallback to journal -// if (bookTitle.isEmpty()) { -// bookTitle = currentEntry.getField(StandardField.JOURNAL); -// } -// -// if (bookTitle.isEmpty()) { -//// System.out.println("No usable field found."); -// textField.setText("Not ranked"); -// return; -// } -// -// String rawInput = bookTitle.get(); -//// System.out.println("Detected Title: '" + rawInput + "'"); -// -// Optional acronym = ConferenceUtil.extractAcronym(rawInput); -//// acronym.ifPresent(acr -> System.out.println("Extracted acronym: " + acr)); -// -// Optional rank = acronym.flatMap(repo::getRankingFor) -// .or(() -> repo.getRankingFor(rawInput)); -// -// String result = rank.orElse("Not ranked"); -// textField.setText(result); -//// System.out.println("Lookup result: " + result); -// } - -// By providing the acronym fetches the data from csv private void lookupRank() { if (currentEntry == null) { return; } - Optional icoreField = currentEntry.getField(StandardField.ICORANKING); + Optional icoreField = currentEntry.getField(StandardField.ICORERANKING); Optional bookTitle = currentEntry.getFieldOrAlias(StandardField.BOOKTITLE); if (bookTitle.isEmpty()) { bookTitle = currentEntry.getField(StandardField.JOURNAL); @@ -104,8 +63,7 @@ private void lookupRank() { Optional acronym = ConferenceUtil.extractAcronym(rawInput); // Extracting the acronym from our input field Optional result = acronym.flatMap(repo::getFullEntry) - .or(() -> repo.getFullEntry(rawInput)); // Finding if any matching entry present in csv file -// If present then print the info + .or(() -> repo.getFullEntry(rawInput)); if (result.isPresent()) { ConferenceRankingEntry entry = result.get(); @@ -119,7 +77,7 @@ private void lookupRank() { alert.getDialogPane().setPrefSize(600, 400); alert.showAndWait(); - textField.setText(entry.rank); // still show rank in the field + textField.setText(entry.rank()); // still show rank in the field } else { textField.setText("Not ranked"); } @@ -128,11 +86,6 @@ private void lookupRank() { @Override public void bindToEntry(BibEntry entry) { this.currentEntry = entry; - -// System.out.println("ENTRY booktitle = " + entry.getField(StandardField.BOOKTITLE).orElse("none")); -// System.out.println("ENTRY journal = " + entry.getField(StandardField.JOURNAL).orElse("none")); -// System.out.println("ENTRY title = " + entry.getField(StandardField.TITLE).orElse("none")); - entry.getField(field).ifPresent(textField::setText); textField.textProperty().addListener((obs, oldVal, newVal) -> { diff --git a/jabgui/src/main/java/org/jabref/migrations/PreferencesMigrations.java b/jabgui/src/main/java/org/jabref/migrations/PreferencesMigrations.java index cab7398e5cd..d1401b00991 100644 --- a/jabgui/src/main/java/org/jabref/migrations/PreferencesMigrations.java +++ b/jabgui/src/main/java/org/jabref/migrations/PreferencesMigrations.java @@ -1,18 +1,13 @@ package org.jabref.migrations; -import java.util.ArrayList; -import java.util.EnumSet; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Optional; +import java.util.*; import java.util.function.UnaryOperator; import java.util.prefs.BackingStoreException; import java.util.prefs.Preferences; import java.util.stream.Collectors; +import com.github.javakeyring.Keyring; import javafx.scene.control.TableColumn; - import org.jabref.gui.entryeditor.CommentsTab; import org.jabref.gui.maintable.ColumnPreferences; import org.jabref.gui.maintable.MainTableColumnModel; @@ -29,16 +24,16 @@ import org.jabref.model.entry.field.StandardField; import org.jabref.model.entry.types.EntryTypeFactory; import org.jabref.model.strings.StringUtil; - -import com.github.javakeyring.Keyring; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class PreferencesMigrations { private static final Logger LOGGER = LoggerFactory.getLogger(PreferencesMigrations.class); + private JabRefGuiPreferences preferences; - private PreferencesMigrations() { + private PreferencesMigrations(JabRefGuiPreferences preferences) { + this.preferences = preferences; } /** @@ -562,7 +557,21 @@ static void moveApiKeysToKeyring(JabRefCliPreferences preferences) { * The tab "Comments" is hard coded using {@link CommentsTab} since v5.10 (and thus hard-wired in {@link org.jabref.gui.entryeditor.EntryEditor#createTabs()}. * Thus, the configuration ih the preferences is obsolete */ + static void removeCommentsFromCustomEditorTabs(GuiPreferences preferences) { preferences.getEntryEditorPreferences().getEntryEditorTabs().remove("Comments"); } + + public void addICORERankingFieldToGeneralTab() { + String key = "entryEditorTabList"; + String expectedValue = "General:doi;crossref;keywords;eprint;url;file;groups;owner;timestamp;printed;priority;qualityassured;ranking;readstatus;relevance"; + String newValue = "General:doi;icoreranking;crossref;keywords;eprint;url;file;groups;owner;timestamp;printed;priority;qualityassured;ranking;readstatus;relevance"; + + String oldValue = preferences.get(key); + + if (expectedValue.equals(oldValue)) { + preferences.put(key, newValue); + } + } + } diff --git a/jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java b/jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java deleted file mode 100644 index 3be360707d9..00000000000 --- a/jabgui/src/test/java/org/jabref/gui/fieldeditors/FieldEditorsTest.java +++ /dev/null @@ -1,13 +0,0 @@ -package org.jabref.gui.fieldeditors; - -import org.junit.jupiter.api.Test; - -import static org.junit.jupiter.api.Assertions.assertNotNull; - -public class FieldEditorsTest { - - @Test - void testEditorCreationDoesNotCrash() { - assertNotNull(FieldEditors.class); - } -} diff --git a/jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java b/jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java index 58b1427fbda..e14d450b0ca 100644 --- a/jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java +++ b/jablib/src/main/java/org/jabref/logic/icore/ConferenceRankingEntry.java @@ -1,31 +1,15 @@ package org.jabref.logic.icore; -public class ConferenceRankingEntry { - public final String title; - public final String acronym; - public final String source; - public final String rank; - public final String note; - public final String dblp; - public final String primaryFor; - public final String comments; - public final String averageRating; - - public ConferenceRankingEntry(String title, String acronym, String source, String rank, - String note, String dblp, String primaryFor, - String comments, String averageRating) { - this.title = title; - this.acronym = acronym; - this.source = source; - this.rank = rank; - this.note = note; - this.dblp = dblp; - this.primaryFor = primaryFor; - this.comments = comments; - this.averageRating = averageRating; - } -// Printing the data of of the csv we got based on the acronym lookup in a orderky format in a new window - +public record ConferenceRankingEntry( + String title, + String acronym, + String source, + String rank, + String note, + String dblp, + String primaryFor, + String averageRating +) { @Override public String toString() { return String.format(""" @@ -36,8 +20,7 @@ public String toString() { Note: %s DBLP: %s Primary FoR: %s - Comments: %s Average Rating: %s - """, title, acronym, source, rank, note, dblp, primaryFor, comments, averageRating); + """, title, acronym, source, rank, note, dblp, primaryFor, averageRating); } } diff --git a/jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java b/jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java index 043bb461c57..603e8c73d5b 100644 --- a/jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java +++ b/jablib/src/main/java/org/jabref/logic/icore/ICoreRankingRepository.java @@ -1,6 +1,7 @@ package org.jabref.logic.icore; import java.io.BufferedReader; +import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; @@ -9,17 +10,18 @@ import java.util.Optional; import org.jabref.logic.util.strings.StringSimilarity; + import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ICoreRankingRepository { final Map acronymToRank = new HashMap<>(); - private final Map nameToRank = new HashMap<>(); - private final Map acronymMap = new HashMap<>(); - private final Map nameMap = new HashMap<>(); - private final StringSimilarity similarity = new StringSimilarity(); - private static final Logger LOGGER = LoggerFactory.getLogger(ICoreRankingRepository.class); + private Map nameToRank = new HashMap<>(); + private Map acronymMap = new HashMap<>(); + private Map nameMap = new HashMap<>(); + private StringSimilarity similarity = new StringSimilarity(); + private Logger LOGGER = LoggerFactory.getLogger(ICoreRankingRepository.class); public ICoreRankingRepository() { InputStream inputStream = getClass().getResourceAsStream("/ICORE.csv"); @@ -46,45 +48,40 @@ public ICoreRankingRepository() { parts[4].trim(), // note parts[5].trim(), // dblp parts[6].trim(), // primaryFor - parts[7].trim(), // comments parts[8].trim() // averageRating ); - acronymMap.put(entry.acronym.toLowerCase(), entry); - nameMap.put(entry.title.toLowerCase(), entry); + acronymMap.put(entry.acronym().toLowerCase(), entry); + nameMap.put(entry.title().toLowerCase(), entry); }); // System.out.println("Loaded entries:"); // acronymToRank.forEach((key, val) -> System.out.println("Acronym: " + key + " -> " + val)); // nameToRank.forEach((key, val) -> System.out.println("Name: " + key + " -> " + val)); - } catch (Exception e) { - LOGGER.error("Failed to load ICORE ranking data", e); + } catch (NullPointerException | IOException e) { + LOGGER.debug("Failed to load ICORE ranking data {}", e.getMessage()); } } public Optional getRankingFor(String acronymOrName) { String key = acronymOrName.trim().toLowerCase(); - // 1. Try exact acronym match if (acronymToRank.containsKey(key)) { return Optional.of(acronymToRank.get(key)); } - // 2. Try exact name match if (nameToRank.containsKey(key)) { return Optional.of(nameToRank.get(key)); } - // 3. Skip fuzzy matching for short strings (e.g., "icse") if (key.length() < 6) { - LOGGER.info("Skipped fuzzy fallback for short string: " + key); + LOGGER.debug("Skipped fuzzy fallback for short string: {}", key); return Optional.empty(); } - // 4. Fallback: fuzzy match with strict threshold - LOGGER.info("Fuzzy match fallback triggered for: " + key); + LOGGER.debug("Fuzzy match fallback triggered for: {}", key); return nameToRank.entrySet().stream() .filter(e -> similarity.editDistanceIgnoreCase(e.getKey(), key) < 0.01) - .peek(e -> LOGGER.info("Fuzzy match candidate: " + e.getKey())) + .peek(e -> LOGGER.debug("Fuzzy match candidate: {}", e.getKey())) .map(Map.Entry::getValue) .findFirst(); } diff --git a/jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java b/jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java index 1f7ccc9efec..a79bb137dc1 100644 --- a/jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java +++ b/jablib/src/main/java/org/jabref/logic/util/ConferenceUtil.java @@ -11,6 +11,5 @@ public static Optional extractAcronym(String title) { return Optional.of(matcher.group(1)); } return Optional.empty(); - } } diff --git a/jablib/src/main/java/org/jabref/model/entry/field/FieldFactory.java b/jablib/src/main/java/org/jabref/model/entry/field/FieldFactory.java index 2b7f2788d43..a6874f83d02 100644 --- a/jablib/src/main/java/org/jabref/model/entry/field/FieldFactory.java +++ b/jablib/src/main/java/org/jabref/model/entry/field/FieldFactory.java @@ -231,7 +231,7 @@ private static Set getAllFields() { * separate preferences object */ public static List getDefaultGeneralFields() { - List defaultGeneralFields = new ArrayList<>(Arrays.asList(StandardField.DOI, StandardField.CROSSREF, StandardField.KEYWORDS, StandardField.EPRINT, StandardField.URL, StandardField.FILE, StandardField.GROUPS, StandardField.OWNER, StandardField.TIMESTAMP)); + List defaultGeneralFields = new ArrayList<>(Arrays.asList(StandardField.DOI, StandardField.ICORERANKING, StandardField.CROSSREF, StandardField.KEYWORDS, StandardField.EPRINT, StandardField.URL, StandardField.FILE, StandardField.GROUPS, StandardField.OWNER, StandardField.TIMESTAMP)); defaultGeneralFields.addAll(EnumSet.allOf(SpecialField.class)); return defaultGeneralFields; } diff --git a/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java b/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java index cb57b2b3264..4dea3c8d973 100644 --- a/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java +++ b/jablib/src/main/java/org/jabref/model/entry/field/StandardField.java @@ -140,7 +140,7 @@ public enum StandardField implements Field { CREATIONDATE("creationdate", FieldProperty.DATE), MODIFICATIONDATE("modificationdate", FieldProperty.DATE), - ICORANKING("icoranking"); + ICORERANKING("icoreranking"); public static final Set AUTOMATIC_FIELDS = Set.of(OWNER, TIMESTAMP, CREATIONDATE, MODIFICATIONDATE); diff --git a/jablib/src/main/resources/ICORE.csv b/jablib/src/main/resources/ICORE.csv index 8e26f2550ad..2330bc3c499 100644 --- a/jablib/src/main/resources/ICORE.csv +++ b/jablib/src/main/resources/ICORE.csv @@ -1,6 +1,2201 @@ Title,Acronym,Source,Rank,Note,DBLP,Primary FoR,Comments,Average Rating -ACIS Conference on Software Engineering Research,SERA,CORE2023,C,none,view,4612,1,4.0 -AAAI Conference on Human Computation and Crowdsourcing,HCOMP,CORE2023,B,none,view,4608,0,N/A -TUGboat Journal,TUGBOAT,CORE2023,C,none,view,9999,1,3.5 -International Conference on Software Engineering,ICSE,CORE2023,A*,none,view,1001,2,4.8 -European Conference on Object-Oriented Programming,ECOOP,CORE2023,A,none,view,1002,2,4.2 +Information Retrieval Facility Conference,IRFC,CORE2018,Unranked,none,none,0806,0,N/A +International Conference on Advanced Communications and Computation,INFOCOMP,CORE2023,Unranked,none,none,46,0,N/A +"International Conference on Ambient Systems, Networks and Technologies",ANT,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/ant,4606,1,4.0 +1st International Conference on Building Energy and Environment,COBEE,ERA2010,,none,none,1202,0,N/A +1st International Conference on Engineering Management,ICEM,ERA2010,,none,none,09,0,N/A +2008 International Conference on Biomedical Robotics and Biomechatronics,BIO ROB,ERA2010,B,none,none,0903,0,N/A +3-D Digital Imaging and Modelling,3DIM,CORE2018,C,none,none,0801,0,N/A +A Satellite workshop on Formal Approaches to Testing of Software,FATES,CORE2018,C,none,none,0802,0,N/A +AAAI Conference on Human Computation and Crowdsourcing,HCOMP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/hcomp,4608,0,N/A +AAEE - Annual Conference of Australasian Association for Engineering Education,,ERA2010,B,none,none,09,1,4.0 +Accelerating excellence in the built environment World Conference,WCAEBE,ERA2010,C,none,none,1202,0,N/A +Accounting and Finance Association of Australia and New Zealand Conference,AFAANZ,CORE2018,Australasian,none,none,0806,0,N/A +"ACIS Conference on Software Engineering Research, Management and Applications",SERA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/sera,4612,1,4.0 +ACM Annual Computer Science Conference,CSC,CORE2018,C,none,none,08,0,N/A +"ACM Conference on Applications, Technologies, Architectures, and Protocols for Computer Communication",SIGCOMM,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sigcomm,4606,1,5.0 +ACM Conference on Computer and Communications Security,CCS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/ccs,4604,0,N/A +ACM Conference on Computer Supported Cooperative Work,CSCW,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/cscw,4608,1,5.0 +ACM Conference on Digital Libraries,JCDL,CORE2018,A*,none,https://dblp.uni-trier.de/db/conf/jcdl,0806,2,4.5 +ACM Conference on Economics and Computation,EC,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sigecom,4602,2,5.0 +ACM Conference on Embedded Networked Sensor Systems,SENSYS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sensys,4606,0,N/A +ACM Conference on Embedded Software,EMSOFT,CORE2023,Journal published,none,https://dblp.uni-trier.de/db/conf/emsoft,4606,0,N/A +ACM Conference on Hypertext and Social Media,Hypertext,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/ht,0805,0,N/A +ACM Conference on Object Oriented Programming Systems Languages and Applications,OOPSLA,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/oopsla,4612,0,N/A +ACM Conference on Security and Privacy in Wireless and Mobile Networks,ACM_WiSec,CORE2023,B,none,https://dblp.org/db/conf/wisec/index.html,4604,0,N/A +ACM Creativity and Cognition,CC,ERA2010,A,none,none,1203,1,5.0 +ACM Digital Rights Management Workshop,DRM,CORE2018,C,none,none,0803,0,N/A +ACM Information Technology Education,SIGITE,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/sigite,4608,1,N/A +ACM Int'l Symposium on Field Programmable Gate Arrays,FPGA,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/fpga/index.html,CSE,1,5.0 +"ACM International Conference on Advances in Computer Entertainment (merged with DIMEA, Digital Interactive Media in Entertainment and Arts, in 2009)",ACE,CORE2023,C,See note,none,4607,0,N/A +ACM International Conference on Advances in Geographic Information Systems,SIGSPATIAL,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/gis,4601,0,N/A +ACM International Conference on Emerging Networking Experiments and Technologies,CoNEXT,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/conext,4606,1,5.0 +ACM International Conference on Information and Knowledge Management,CIKM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/cikm,4605,0,N/A +ACM International Conference on Interactive Surfaces and Spaces (was International Workshop on Horizontal Interactive Human-Computer Systems: Tabletop),ISS,CORE2023,Journal Published,none,https://dblp.uni-trier.de/db/conf/tabletop,4608,1,4.0 +ACM International Conference on Knowledge Discovery and Data Mining,KDD,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/kdd,4605,1,N/A +ACM International Conference on Mobile Computing and Networking,MOBICOM,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/mobicom,4606,0,N/A +ACM International Conference on Recommender Systems,RecSys,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/recsys,4605,0,N/A +ACM International Conference on Research and Development in Information Retrieval,SIGIR,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sigir,4605,0,N/A +ACM International Conference on Supercomputing,ICS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ics,CSE,0,N/A +ACM International Conference on Systems for Energy-Efficient Built Environments,BuildSys,CORE2018,A,none,none,0805,0,N/A +"ACM International Conference on the Foundations of Software Engineering (was ESEC/FSE, changed 2024; duplicate previously listed as ESEC, removed from DB)",FSE,CORE2023,A*,none,https://dblp.org/db/conf/sigsoft,4612,6,5.0 +ACM International Conference on Web Search and Data Mining,WSDM,CORE2023,A,See note,https://dblp.uni-trier.de/db/conf/wsdm,4605,0,N/A +ACM International Joint Conference on Pervasive and Ubiquitous Computing (PERVASIVE and UbiComp combined from 2013),UbiComp,CORE2023,journal published,none,https://dblp.uni-trier.de/db/conf/huc,4608,0,N/A +ACM International Symposium on Computer Architecture,ISCA,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/isca,CSE,0,N/A +ACM International Symposium on High Performance Distributed Computing,HPDC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/hpdc,4606,0,N/A +ACM International Wireless Communications and Mobile Computing Conference,IWCMC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iwcmc,4606,1,N/A +ACM International Workshop On Multimedia Databases,MMDB,CORE2018,C,none,none,0804,0,N/A +ACM International Workshop on. Mobility Management and Wireless Access,MobiWac,ERA2010,B,none,none,1005,0,N/A +ACM Multimedia,ACMMM,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/mm,4603,3,5.0 +ACM SIG International Conference on Computer Graphics and Interactive Techniques,SIGGRAPH,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/siggraph,4607,1,5.0 +ACM SIGCHI_NZ Conference on Human-Computer Interaction,SIGCHI-NZ,CORE2018,Australasian,none,none,0806,0,N/A +ACM SIGCOMM Internet Measurement Conference,ACM IMC,ERA2010,A,none,none,1005,0,N/A +ACM SIGGRAPH/Eurographics Symposium on Computer Animation,SCA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sca,4607,1,4.0 +ACM SIGIR Workshop on XML and Information Retrieval,SIGIR/XML,CORE2018,C,none,none,0804,0,N/A +ACM SIGMIS Computers and People Research,ACM-SIGMIS CPR,CORE2018,B,none,https://dblp.uni-trier.de/db/conf/sigcpr,0806,0,N/A +"ACM SIGMOBILE International Conference on Mobile Systems, Applications and Services",Mobisys,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/mobisys,4606,5,5.0 +ACM SIGMOD-SIGACT-SIGART Conference on Principles of Database Systems,PODS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/pods,4605,0,N/A +ACM SIGOPS European Workshops,SIGOPS-EW,ERA2010,C,none,none,0803,0,N/A +ACM SIGOPS Symposium on Operating Systems Principles,SOSP,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sosp,4606,0,N/A +"ACM SIGPLAN Conference on Languages, Compilers and Tools for Embedded Systems",LCTES,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/lctrts,4606,0,N/A +ACM SIGPLAN Workshop on Partial Evaluation and Program Manipulation,PEPM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pepm,4612,0,N/A +ACM SIGPLAN Workshop on Types in Language Design and Implementation (was TIC),TLDI,CORE2018,C,none,none,0803,0,N/A +ACM SIGSIM Conference on Principles of Advanced Discrete Simulation (was Parallel and Distributed Simulation),PADS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/pads,4606,0,N/A +ACM SIGSOFT Workshop on Program Analysis for Software Tools and Engineering,PASTE,CORE2017,B,none,none,0803,0,N/A +ACM SIGUCCS Conference on User Services,SIGUCCS,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/siguccs,4601,0,N/A +ACM Special Interest Group on Computer Science Education Conference,SIGCSE,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/sigcse,4608,0,N/A +ACM Special Interest Group on Management of Data Conference,SIGMOD,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sigmod,4605,0,N/A +ACM Special Interest Group on Supporting Group Work (was SIGGRoup),Group,CORE2023,B,none,https://dblp.org/db/conf/group/index.html,4608,1,N/A +"ACM Symposium on Access Control Models and Technologies (previously ACM Workshop on Role-Based Access Control, RBAC, changed in 2000)",SACMAT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/sacmat,4604,1,4.0 +ACM Symposium on Applied Computing,SAC,CORE2023,Multiconference,none,https://dblp.uni-trier.de/db/conf/sac,4601,0,N/A +ACM Symposium on Document Engineering,DocEng,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/doceng,4605,0,N/A +ACM Symposium on Mobile Ad Hoc Networking and Computing,MOBIHOC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/mobihoc,4606,0,N/A +ACM Symposium on Principles of Database Systems,SPDS,CORE2018,C,none,none,0804,0,N/A +ACM Symposium on Principles of Distributed Computing,PODC,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/podc,4606,0,N/A +ACM Symposium on Software Reusability,SSR,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/ssr,0803,0,N/A +ACM Symposium on Solid and Physical Modelling,SPM,CORE2023,C,See note,none,4607,0,N/A +ACM Symposium on Theory of Computing,STOC,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/stoc,4613,1,5.0 +ACM Symposium on User Interface Software and Technology,UIST,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/uist,4608,1,5.0 +ACM Virtual Reality Software and Technology,VRST,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/vrst,4607,0,N/A +ACM Workshop on Formal Methods in Security Engineering: From Specifications to Code,FMSE,CORE2018,C,none,none,0803,0,N/A +ACM Workshop on Hot Topics in Networks,HOTNETS,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/hotnets,4606,0,N/A +ACM Workshop on Hot Topics in Software Upgrades,HotSWUp,CORE2018,C,none,none,0803,0,N/A +ACM Workshop on Role Based Access Control (now SACMAT),RBAC,CORE2014,C,none,none,0802,0,N/A +ACM Workshop on Scalable Trusted Computing,STC,CORE2018,B,none,none,0803,0,N/A +ACM Workshop on Secure Web Services,SWS,CORE2018,C,none,none,0801,0,N/A +ACM Workshop on Web Information and Data Management,WIDM,CORE2018,B,none,none,0806,0,N/A +ACM-SIGACT Symposium on Principles of Programming Languages,POPL,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/popl,4612,0,N/A +ACM-SIGPLAN Conference on Programming Language Design and Implementation,PLDI,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/pldi,4612,0,N/A +ACM-SIGRAPH Interactive 3D Graphics and Games,I3DG,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/si3d,4607,0,N/A +ACM/IEEE International Conference on Distributed Smart Cameras,ICDSC,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/icdsc,4606,0,N/A +ACM/IEEE International Conference on Human-Robot Interaction,HRI,CORE2023,A,none,https://dblp.org/db/conf/hri/index.html,4608,0,N/A +"ACM/IEEE International Conference on Modelling, Analysis and Simulation of Wireless and Mobile Systems",MSWIM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/mswim,4606,40,5.0 +ACM/IEEE Symposium on Edge Computing,SEC,CORE2023,unranked,none,http://dblp.org/db/conf/ieeesec/index.html,4606,0,N/A +ACM/IFIP/USENIX International Middleware Conference,Middleware,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/middleware,4606,1,4.0 +ACM/SIAM Symposium on Discrete Algorithms,SODA,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/soda,4613,0,N/A +ACM/SPEC International Conference on Performance Engineering,ICPE,CORE2023,B,none,https://dblp.org/db/conf/wosp,4612,0,N/A +ACM/SPIE Multimedia Computing and Networking,MMCN,CORE2018,A,none,none,0801,1,5.0 +ACS/IEEE International Conference on Computer Systems and Applications,AICCSA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/aiccsa,46,0,N/A +Active and Real-Time Database Systems,ARTDB,CORE2018,C,none,none,0804,0,N/A +Advanced Concepts for Intelligent Vision Systems,ACIVS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/acivs,4603,1,3.0 +Advanced Course on Artificial Intelligence,ACAI,CORE2018,C,none,none,0801,0,N/A +Advanced Research in VLSI,ARVLSI,CORE2018,C,none,none,0805,0,N/A +Advanced Visual Interfaces,AVI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/avi,4608,1,5.0 +Advances in Cryptology,CRYPTO,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/crypto,4604,0,N/A +Advances in Information Systems,ADVIS,CORE2018,C,none,none,0806,0,N/A +Advances in Intelligent Systems,AIS,CORE2018,C,none,none,0801,0,N/A +Advances in Modal Logic,AiML,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/aiml,4613,0,N/A +Advances in Neural Information Processing Systems (was NIPS),NeurIPS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/nips,4611,0,N/A +Advances in the Theory of Computing,AITC,CORE2018,C,none,none,0802,0,N/A +Agent-Oriented Information Systems Workshop,AOIS,CORE2014,B,none,none,0801,0,N/A +Agent-Oriented Software Engineering Workshop (merged into EMAS in 2013),AOSE,ERA2010,C,none,none,0801,0,N/A +AIAA Aerospace Sciences Meeting,,ERA2010,B,none,none,0901,0,N/A +AIChE Annual Meeting,,ERA2010,C,none,none,09,0,N/A +AISB Convention (Society for the Study of Artificial Intelligence and Simulation of Behaviour),AISB,ERA2010,B,none,none,1203,0,N/A +Algebraic Methodology and Software Technology,AMAST,CORE2018,C,none,none,0802,0,N/A +Algorithmic Learning Theory,ALT,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/alt,4611,0,N/A +Algorithms and Complexity in Durham,ACID,CORE2018,C,none,none,0802,0,N/A +Algorithms and Data Structures Symposium (was Workshop on Algorithms and Data Structures),WADS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/wads,4613,0,N/A +Algorithms and Experiments,ALEX,CORE2018,B,none,none,,0,N/A +Ambient Information Systems,AIS,ERA2010,B,none,none,1203,0,N/A +Ambient Intelligence Developments,Aml.d,CORE2018,C,none,none,0801,0,N/A +American Association of Cost Engineers Annual Meeting,AACE,ERA2010,A,none,none,1202,0,N/A +American Federation of Information Processing Societies,AFIPS,CORE2018,A,none,none,0801,0,N/A +American Medical Informatics Annual Fall Symposium,AMIA,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/amia,4601,2,5.0 +"American Society for Heating, Refrigeration and Air Conditioning",ASHRAE,ERA2010,A,none,none,1202,0,N/A +American Society of Mechanical Engineering,,ERA2010,A,none,none,0913,0,N/A +Americas Conference on Information Systems,AMCIS,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/amcis,0806,1,4.0 +Americas Conference on Wind Engineering,,ERA2010,B,none,none,0905,0,N/A +Annual Computer Security Applications Conference,ACSAC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/acsac,4604,4,4.0 +Annual conference of American Society for Information Science and Technology,ASIS&T,CORE2008,A,none,none,,0,N/A +Annual Conference of the Australasian Society for Computers in Learning in Tertiary Education,ASCILITE,CORE2018,Australasian,none,none,0899,0,N/A +Annual Conference of the Australian Acoustical Society,,ERA2010,A,none,none,0913,0,N/A +Annual Conference of the International Academy for Information Management,IAIM,CORE2018,C,none,none,0806,0,N/A +Annual Conference of the International Speech Communication Association (was Eurospeech),Interspeech,CORE2014,A,none,none,0801,0,N/A +Annual Conference on Computer Science Logic,CSL,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/csl,4613,1,N/A +Annual Conference on Evolutionary Programming,EP,CORE2018,C,none,none,0801,0,N/A +Annual Conference on Innovation and Technology in Computer Science Education,ITiCSE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iticse,4608,0,N/A +"Annual Conference on Privacy, Security and Trust",PST,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pst,4604,0,N/A +"Annual Convention for Survey, Mapping and Remote Sensing",RS,CORE2018,C,none,none,0909,0,N/A +Annual Fall Workshop on Computational Geometry,CGW,CORE2018,C,none,none,0802,0,N/A +"Annual IASTED International Conference on Networks, Parallel and Distributed Processing and Applications",NPDP,CORE2014,C,none,none,,0,N/A +Annual International Conference of the IEEE Engineering in Medicine and Biology Society,,ERA2010,A,none,none,0903,0,N/A +Annual International Conference on Ada,TRI-Ada,CORE2018,C,none,none,0803,0,N/A +Annual International Workshop on Presence,ISPR,CORE2023,C,See note,none,4607,0,N/A +Annual Meeting of the Cognitive Science Society,CogSci,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/cogsci,4602,0,N/A +Annual Meeting of the Decision Sciences Institute,DSI,CORE2018,C,none,none,0806,0,N/A +Annual Meeting of the Special Interest Group on Discourse and Dialog,SIGdial,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sigdial,4602,0,N/A +Annual PKI R&D Workshop,PKI,CORE2018,C,none,none,0803,0,N/A +Annual PPIG Workshop,PPIG,CORE2018,B,none,https://dblp.uni-trier.de/db/conf/ppig,0806,0,N/A +Annual Simulation Symposium,ANSS,CORE2018,B,none,none,0802,0,N/A +"Annual Water Distribution Systems Analysis Conference, WDSA 2008",,ERA2010,A,none,none,0905,0,N/A +AoM Organizational Communication and Information Systems,OCIS,CORE2018,A,none,none,0806,0,N/A +Apple University Consortium Academic and Developers Conference,AUCADC,CORE2018,C,none,none,0899,0,N/A +Application of Computers and Operations Research in the Minerals Industries,APCOMin,CORE2018,A,none,none,0909,0,N/A +Application of Concurrency to System Design,ACSD,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/acsd,4606,0,N/A +Applications of Information Visualization,IV-App,CORE2023,C,none,none,4608,0,N/A +Applications of Natural Language to Data Bases,NLDB,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/nldb,4602,0,N/A +Applied Computing Conference,ACC,CORE2023,C,none,none,4601,0,N/A +Applied Perception in Graphics and Visualization,APGV,CORE2018,C,none,none,0801,0,N/A +Architectural Support for Programming Languages and Operating Systems,ASPLOS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/asplos,4612,0,N/A +Argentine Symposium on Artificial Intelligence,ASAI,CORE2017,C,none,none,0801,0,N/A +Argentine Workshop on Theoretical Informatics,AWTI,CORE2008,B,none,none,,0,N/A +Artificial Intelligence and Applications Conference,AIA,CORE2018,C,none,none,,0,N/A +Artificial Intelligence Applications and Innovations,AIAI,CORE2023,C,none,https://dblp.org/db/conf/aiai,4601,0,N/A +Artificial Intelligence in Knowledge Management,AIKM,CORE2018,C,none,none,0801,0,N/A +Artificial Intelligence in Medicine,AIIM,CORE2018,A,none,none,0801,0,N/A +Artificial Neural Networks in Engineering Conference,ANNIE,CORE2018,B,none,none,0801,0,N/A +"ArtsIT, Interactivity & Game Creation (was International Conference on Arts and Technology)",ArtsIT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/artsit,4607,0,N/A +ASCCS International Conference on Steel-Concrete Composite and Hybrid Structures,,ERA2010,A,none,none,0905,0,N/A +ASEE Annual Conference and Exposition,,ERA2010,B,none,none,09,0,N/A +ASEE Global Colloquium of Engineering Education,,ERA2010,B,none,none,09,0,N/A +Asia and South Pacific Design Automation Conference,ASPDAC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/aspdac,4606,0,N/A +"Asia Conference on Information, Computer and Communications Security",AsiaCCS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/asiaccs,4604,0,N/A +Asia Information Retrieval Symposium,AIRS,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/airs,4605,0,N/A +Asia International Conference on Modelling and Simulation,AMS,CORE2018,C,none,none,0802,1,4.0 +Asia Pacific Association for Medical Informatics Conference,APAMI,CORE2008,B,none,none,,0,N/A +Asia Pacific Conference on Combustion,,ERA2010,B,none,none,0913,0,N/A +Asia Pacific Conference on Communications,APCC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/apcc,4606,0,N/A +Asia Pacific Conference on Hardware Description Languages (was Asia Pacific CHipDesign Languages),APCHDL,CORE2018,C,none,none,1006,0,N/A +Asia Pacific Decision Science Institute Conference,APDSI,CORE2018,C,none,none,0802,0,N/A +Asia Pacific Industrial Engineering and Management Systems and Chinese Institute of Industrial Engineers Conference,APIEMS CIIEC,ERA2010,C,none,none,1203,0,N/A +Asia Pacific Research Symposium on Accounting Information Systems,APRSAIS,CORE2018,C,none,none,0806,0,N/A +Asia Pacific Symposium on Intelligent and Evolutionary Systems (was Australia-Japan Joint Workshop on Intelligent and Evolutionary Systems),IES,CORE2023,C,none,none,4602,0,N/A +Asia-Pacific Bioinformatics Conference,APBC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/apbc,4601,0,N/A +Asia-Pacific Computer Human Interaction Conference,APCHI,CORE2018,C,none,none,1203,0,N/A +Asia-Pacific Conference on Complex Systems,Complex,CORE2018,C,none,none,0801,0,N/A +Asia-Pacific Conference on Conceptual Modelling,APCCM,CORE2023,Australasian C,none,none,4605,0,N/A +Asia-Pacific Conference on Engineering Plasticity and Its Applications,,ERA2010,A,none,none,0910,0,N/A +Asia-Pacific Conference on Materials Processing,,ERA2010,A,none,none,0910,0,N/A +Asia-Pacific Conference on Simulated Evolution and Learning,SEAL,CORE2020,B,none,https://dblp.uni-trier.de/db/conf/seal,4611,0,N/A +Asia-Pacific Conference on Wind Engineering,,ERA2010,B,none,none,0905,0,N/A +Asia-Pacific Forum on Engineering and Technology Education,AFETE,CORE2018,C,none,none,0999,0,N/A +Asia-Pacific Network Operations and Management Symposium,APNOMS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/apnoms,4606,0,N/A +Asia-Pacific Services Computing Conference,APSCC,CORE2023,C,none,none,4606,0,N/A +Asia-Pacific Software Engineering Conference,APSEC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/apsec,4612,0,N/A +Asia-Pacific Vibration Conference,,ERA2010,B,none,none,0913,0,N/A +Asian Computing Science Conference,ASIAN,CORE2018,B,none,none,08,0,N/A +Asian Conference on Computer Vision,ACCV,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/accv,4603,0,N/A +Asian Conference on Intelligent Information and Database Systems,ACIIDS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/aciids,4605,133,4.6 +Asian Conference on Machine Learning,ACML,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/acml,4611,12,4.7 +Asian Congress of Fluid Mechanics,,ERA2010,A,none,none,0901,0,N/A +Asian International Mobile Computing Conference,AMOC,CORE2018,C,none,none,0805,0,N/A +Asian Symposium on Computer Mathematics,ASCM,CORE2018,C,none,none,0802,0,N/A +ASIAN Symposium on Programming Languages and Systems,APLAS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/aplas,4612,0,N/A +Asian Symposium on Visualization,,ERA2010,B,none,none,0901,0,N/A +Asian-Pacific Conference on Computational Mechanics,APCOM,ERA2010,A,none,none,0905,0,N/A +Asian-Pacific conferences on unsaturated soils,Unsat-Asian,ERA2010,A,none,none,0905,0,N/A +"Asilomar Conference on Signals, Systems and Computing",ACSSC,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/acssc,4606,0,N/A +Aspect-Orientation Asia,AO-Asia,CORE2018,C,none,none,0803,0,N/A +Aspect-Oriented Software Development,AOSD,CORE2018,A,none,none,0803,0,N/A +Association for Computational Linguistics,ACL,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/acl,4602,0,N/A +Association for Computer Aided Design in Architecture (ACADIA) Conference,ACADIA,ERA2010,A,none,none,1201,0,N/A +Association for Computer-Aided Architectural Design Research in Asia (CAADRIA) annual conference,CAADRIA,CORE2023,C,See note,none,4601,0,N/A +Association of Architecture Schools of Australasia Annual Conference (AASA),AASA,ERA2010,C,none,none,1201,0,N/A +Association of Collegiate Schools of Architecture (ACSA) Annual Meeting,ACSA,ERA2010,B,none,none,1201,0,N/A +Association of Researchers in Construction Management Annual Conference,ARCOM,ERA2010,A,none,none,1202,0,N/A +Athens Colloquium on Algorithms and Complexity,ACAC,ERA2010,C,none,none,0802,0,N/A +AUSIMM Orebody Modelling and Strategic Mine Planning Conference,,ERA2010,A,none,none,0914,0,N/A +AUSIMM Project Evaluation,,ERA2010,A,none,none,0914,0,N/A +Australasia Conference on Information Security and Privacy,AISP,CORE2018,Australasian,none,none,0806,0,N/A +Australasian Coasts and Ports Conference,,ERA2010,A,none,none,0911,0,N/A +Australasian Cognitive Science Society Conference,AuCSS,CORE2018,Australasian,none,none,0801,0,N/A +Australasian Compumod Users' Conference,COMPUMOD,CORE2018,Australasian,none,none,0803,0,N/A +Australasian Computer Architecture Conference,ACAC,CORE2018,Australasian,none,none,0803,0,N/A +Australasian Computer Music Conference,ACMA,CORE2018,Australasian,none,none,0899,0,N/A +Australasian Computer Science Conference,ACSC,CORE2018,Australasian,none,none,08,0,N/A +Australasian Computer Systems Architecture Conference (now Asia-Pacific Computer Systems Architecture Conference),ACSAC,CORE2018,Australasian,none,none,0803,0,N/A +Australasian Computers in Education Conference,ACEC,CORE2018,Australasian,none,none,0899,0,N/A +Australasian Computing Education Conference (ACE),ACE,CORE2023,Australasian B,none,https://dblp.uni-trier.de/db/conf/ace,4608,1,4.0 +Australasian Conference on Combinatorial Mathematics and Combinatorial Computing,ACCMCC,CORE2023,Australasian C,none,none,4613,0,N/A +Australasian Conference on Information Security and Privacy,ACISP,CORE2023,Australasian B,none,https://dblp.uni-trier.de/db/conf/acisp,4604,1,4.0 +Australasian Conference on Information Systems,ACIS,CORE2018,Australasian,none,none,0806,0,N/A +Australasian Conference on Parallel and Real-Time Systems,APRTS,CORE2018,Australasian,none,none,0805,0,N/A +Australasian Conference on Pattern Languages of Programs,KoalaPLoP,CORE2018,Australasian,none,none,0803,0,N/A +Australasian Conference on Robotics and Automation,ACRA,CORE2023,Australasian C,none,none,4602,0,N/A +Australasian Conference on the Mechanics of Structures and Materials,,ERA2010,B,none,none,0905,0,N/A +Australasian Congress on Applied Mechanics,,ERA2010,A,none,none,0910,0,N/A +Australasian Database Conference,ADC,CORE2023,Australasian B,none,https://dblp.uni-trier.de/db/conf/adc,4605,0,N/A +Australasian Document Computing Symposium,ADCS,CORE2023,Australasian B,none,https://dblp.uni-trier.de/db/conf/adcs,4605,0,N/A +Australasian Fluid Mechanics Conference,,ERA2010,A,none,none,0913,0,N/A +Australasian Housing Researchers Conference,AHRC,ERA2010,A,none,none,1205,0,N/A +Australasian Information Security Conference,AISC,CORE2023,Australasian C,See note,none,4604,0,N/A +Australasian Information Security Workshop 2007 (Privacy Enhancing Technologies),AISW-PET,CORE2018,Australasian,none,none,0803,0,N/A +Australasian Joint Conference on Artificial Intelligence,AI,CORE2023,Australasian B,See note,https://dblp.uni-trier.de/db/conf/ausai/index.html,4602,0,N/A +Australasian Language Technology Workshop,ALTA,CORE2023,Australasian C,none,https://dblp.uni-trier.de/db/conf/acl-alta,4602,0,N/A +Australasian Port and Harbour Conference,,ERA2010,A,none,none,0911,0,N/A +Australasian Refinement Workshop,AuRW,CORE2018,Australasian,none,none,0803,0,N/A +Australasian Remote Sensing Conference,ARSC,CORE2018,Australasian,none,none,,0,N/A +Australasian Remote Sensing Conference and Photogrammetry Conference,ARSPC,ERA2010,C,none,none,1005,0,N/A +"Australasian Road Safety Research, Policing and Education Conference",,ERA2010,C,none,none,0902,0,N/A +Australasian Speech Science and Technology,SST,CORE2023,Australasian C,none,none,4602,0,N/A +Australasian Symposium on Grid Computing and e-Research (now AusPDC),AusGrid,CORE2018,Australasian,none,none,0805,0,N/A +Australasian Symposium on Parallel and Distributed Computing (was AusGrid),AusPDC,CORE2023,Australasian C,none,none,4606,0,N/A +Australasian Transport Research Forum,ATRF,ERA2010,A,none,none,1205,0,N/A +Australasian Urban and Regional Information Systems Association Conference,AURISA,CORE2018,Australasian,none,none,0806,0,N/A +Australasian User Interface Conference,AUIC,CORE2018,Australasian,none,none,0806,0,N/A +Australasian Wind Engineering Society Workshop in Wind Engineering,,ERA2010,C,none,none,0905,0,N/A +Australasian Women in Computing Workshop,WIC,CORE2018,Australasian,none,none,0899,0,N/A +Australasian Workshop on Combinatorial Algorithms,AWOCA,CORE2018,Australasian,none,none,0802,0,N/A +Australasian Workshop on Health Data and Knowledge Management,HDKM,CORE2018,Australasian,none,none,0804,2,4.0 +Australia New Zealand Geomechanics conference,,ERA2010,B,none,none,0905,0,N/A +Australian and New Zealand Academy of Management Conference,ANZAM,CORE2018,Australasian,none,none,0806,0,N/A +Australian and New Zealand Architectural Science Association (ANZAScA) Annual Conference,ANZAScA,ERA2010,B,none,none,1201,0,N/A +Australian and New Zealand Association of Planning schools,ANZAPS,ERA2010,B,none,none,1202,0,N/A +Australian and New Zealand Intelligent Information Systems Conference,ANZIIS,CORE2018,Australasian,none,none,0806,0,N/A +Australian and New Zealand Marketing Academy Conference,ANZMAC,CORE2018,Australasian,none,none,0806,0,N/A +Australian Combustion Symposium,,ERA2010,C,none,none,0913,0,N/A +Australian Computer Human Interaction Conference,OZCHI,CORE2023,Australasian B,none,https://dblp.uni-trier.de/db/conf/ozchi,4608,13,5.0 +Australian Conference for Knowledge Management and Intelligent Decision Support,ACKMIDS,CORE2018,Australasian,none,none,0801,0,N/A +Australian Conference on Artificial Life and Computational Intelligence,ACALCI,CORE2020,Australasian B,none,https://dblp.uni-trier.de/db/conf/acalci,4602,0,N/A +Australian Conference on Laser Diagnostics in Fluid Mechanics and Combustion,,ERA2010,B,none,none,0913,0,N/A +Australian Conference on Mathematics and Computers in Sport,MCSpo,CORE2018,Australasian,none,none,,0,N/A +Australian Conference on Neural Networks,ACNN,CORE2018,Australasian,none,none,0801,0,N/A +Australian Conference on Software Metrics,ACOSM,CORE2018,Australasian,none,none,0803,0,N/A +Australian Data Mining Conference,AusDM,CORE2023,Australasian C,See note,https://dblp.uni-trier.de/db/conf/ausdm,4605,0,N/A +Australian Digital Forensics Conference,,CORE2018,Australasian,none,none,0804,0,N/A +Australian Earthquake Engineering Conference,,ERA2010,B,none,none,0905,0,N/A +Australian Game Developers Conference,AGDC,CORE2018,Australasian,none,none,0806,0,N/A +Australian Geothermal Energy Conference,,ERA2010,C,none,none,0913,0,N/A +Australian Information Security Management Conference,ISM,CORE2018,Australasian,none,none,0804,0,N/A +Australian Information Warfare and Security Conference,WarSec,CORE2018,Australasian,none,none,0806,0,N/A +Australian Institute of Building Surveyors International Refereed Conference,AIBS,ERA2010,B,none,none,1202,0,N/A +Australian Institute of Computer Ethics Conference,AICE,CORE2023,Australasian C,none,none,4608,0,N/A +Australian Institute of Computer Ethics Conference,AICEC,CORE2018,Australasian,none,none,,0,N/A +Australian Joint Conference on Artificial Intelligence,AusAI,CORE2018,Australasian,none,https://dblp.uni-trier.de/db/conf/ausai,,0,N/A +Australian Knowledge Acquisition Workshop,AKAW,CORE2018,Australasian,none,none,0801,0,N/A +Australian MADYMO Users Meeting,MADYMO,CORE2018,Australasian,none,none,0801,0,N/A +Australian MATLAB Conference,MATLAB,CORE2018,Australasian,none,none,0802,0,N/A +Australian Pattern Recognition Society Conference,DICTA,CORE2017,Australasian,none,none,,0,N/A +Australian Road Research Board Annual Conference,,ERA2010,B,none,none,0905,0,N/A +Australian Software Engineering Conference,ASWEC,CORE2020,Australasian B,none,https://dblp.uni-trier.de/db/conf/aswec,4612,0,N/A +Australian Supercomputing Conference,ACS,CORE2018,Australasian,none,none,0805,0,N/A +Australian Symposium on Information Visualisation,ASIV,CORE2018,Australasian,none,none,0801,0,N/A +Australian Universities Building Education Association Annual Conference,AUBEA,ERA2010,B,none,none,1202,0,N/A +Australian UNIX Users Group National Conference,AUUG,CORE2018,Australasian,none,none,0803,0,N/A +Australian Water Association Convention - Ozwater,,ERA2010,C,none,none,0907,0,N/A +Australian Women in IT Conference,AusWIT,CORE2018,Australasian,none,none,,0,N/A +Australian Women in IT Conference,OzWIT,CORE2018,Australasian,none,none,0899,0,N/A +"Australian Workshop on Mobile Computing, Databases and Applications",MCDA,CORE2018,Australasian,none,none,0806,0,N/A +Australian Workshop on Requirements Engineering,AWRE,CORE2018,Australasian,none,none,0803,0,N/A +Australian Workshop on Safety Critical Systems and Software,SCSS,CORE2018,Australasian,none,none,1005,0,N/A +Australian Workshop on Software Architecture,AWSA,CORE2018,Australasian,none,none,0803,0,N/A +Australian World Wide Web Conference,AusWeb,CORE2018,Australasian,none,none,0805,0,N/A +Automated Software Engineering Conference,ASE,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/kbse,4612,2,5.0 +Automation and Robotics International Symposium,ISARC,ERA2010,B,none,none,10,0,N/A +Automation of Software Test,AST,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ast,4612,0,N/A +Baosteel Academic Conference,,ERA2010,B,none,none,0910,0,N/A +Benelux Workshop on Information and System Security,WISSec,ERA2010,C,none,none,0803,0,N/A +Bioinformatics Visualization,BioViz,CORE2018,C,none,none,0801,0,N/A +Bled Electronic Commerce Conference,BECC,ERA2010,B,none,none,0806,0,N/A +Bluff Body Aerodynamics and Applications,,ERA2010,A,none,none,0905,0,N/A +Body Sensor Networks,BSN,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/bsn,4601,0,N/A +Brazilian Symposium on Computer Graphics and Image Processing,SIBGRAPI,ERA2010,C,none,none,0801,0,N/A +Brazilian Symposium on Databases,SBBD,ERA2010,C,none,none,0804,0,N/A +"Brazilian Symposium on Graphs, Algorithms and Combinatorics",GRACO,ERA2010,C,none,none,0802,0,N/A +Brazilian Symposium on Information and Computer Systems Security,SBSEG,ERA2010,C,none,none,0803,0,N/A +British Colloquium for Theoretical Computer Science,BCTCS,ERA2010,C,none,none,0802,0,N/A +British Computer Society Conference on Human-Computer Interaction,HCI,CORE2023,National,none,none,4608,0,N/A +British Computer Society Formal Aspects of Computing Science Specialist Group Workshop,BCS-FMW,ERA2010,C,none,none,0802,0,N/A +British Machine Vision Conference,BMVC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/bmvc,4603,0,N/A +British National Conference on Databases,BNCOD,ERA2010,B,none,none,0804,0,N/A +Built Environment Education Conference,BEECON,ERA2010,B,none,none,12,0,N/A +CAADFutures Biennial conference,CAADFutures,ERA2010,A,none,none,1201,0,N/A +Canadian Artificial Intelligence Conference,CAAI,ERA2010,B,none,none,0801,0,N/A +Canadian Conference on Computational Geometry,CCCG,ERA2010,C,none,none,0802,0,N/A +Canadian Conference on Computer and Robot Vision,CRV,ERA2010,C,none,none,0801,0,N/A +Canadian Conference on Electrical and Computer Engineering,CCECE,ERA2010,C,none,none,0905,0,N/A +Canadian Discrete and Algorithmic Mathematics Conference,CanaDAM,ERA2010,C,none,none,0802,0,N/A +Canadian Geotechnical Society Conference,,ERA2010,B,none,none,0905,0,N/A +"Canadian Society for Civil Engineering, International Construction Specialty Conference",ICSC,ERA2010,C,none,none,0905,0,N/A +CENTERIS - Conference on ENTERprise Information Systems,CENTERIS,CORE2018,Unranked,none,none,0806,0,N/A +Centre for Asian and Middle Eastern Architecture conference,CAMEA,ERA2010,A,none,none,1201,0,N/A +CGAL User Workshop,CGAL,CORE2018,C,none,none,0802,0,N/A +Challenges of Large Applications in Distributed Environments,CLADE,CORE2018,C,none,none,0805,0,N/A +Chemeca: Australasian Conference on Chemical Engineering,,ERA2010,B,none,none,0914,0,N/A +CHI PLAY: The Annual Symposium on Computer-Human Interaction in Play,CHI PLAY,CORE2023,Journal Published,none,https://dblp.org/db/conf/chiplay,4608,0,N/A +Chicago ASA Data Mining Conference- A Hard Look at DM,ASADM,CORE2008,B,none,none,,0,N/A +Chilean Database Workshop,JCC/WBD(CDW),ERA2010,C,none,none,0804,0,N/A +ChinaGrid Annual Conference,ChinaGrid,ERA2010,C,none,none,0805,0,N/A +CIRP Life Cycle Engineering Conference,,ERA2010,A,none,none,0910,0,N/A +Coastal Environment,,ERA2010,C,none,none,0911,0,N/A +Collaborative Electronic Commerce Technology and Research,CollECTeR,CORE2018,B,none,none,0806,0,N/A +"Colloquium on Mathematics and Computer Science: Algorithms, Trees, Combinatorics and Probabilities",MathInfo,CORE2018,C,none,none,0802,0,N/A +Cologne-Twente Workshop on Graphs and Combinatorial Optimization,CTW,CORE2023,C,none,none,4613,0,N/A +CombinaTexas: Combinatorics in the South-Central U.S.,Combina Texas,ERA2010,C,none,none,0802,0,N/A +Combinatorial Pattern Matching,CPM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cpm,4603,1,4.0 +Committee on Data for Science and Technology,CODATA,CORE2018,C,none,none,0804,0,N/A +Complex Objects Visualization Workshop,COV,CORE2018,C,none,none,0801,0,N/A +Complexity and information-theoretic approaches to biology,CITB,CORE2018,B,none,none,0803,0,N/A +"Composite Construction V, Kruger National Park, South Africa, American Society of Civil Engineers",,ERA2010,A,none,none,0905,0,N/A +Computability in Europe: Logic and Theory of Algorithms,CiE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cie,4613,0,N/A +Computational Intelligence in Security for Information Systems,CISIS,CORE2023,National: Spain,none,https://dblp.org/db/conf/cisis-spain,4604,0,N/A +Computational Techniques and Applications Conference,CTAC,CORE2018,C,none,none,0802,0,N/A +Computational Topology Workshop,CT,CORE2018,C,none,none,0802,0,N/A +Computational Wind Engineering,,ERA2010,B,none,none,0905,0,N/A +Computer Aided Verification,CAV,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/cav,4612,0,N/A +Computer Algebra in Scientific Computing,CASC,CORE2023,B,none,https://dblp.org/db/conf/casc,4613,0,N/A +"Computer Animation, Information Visualisation, and Digital Effects",CAivDE,CORE2023,C,none,none,4607,0,N/A +Computer Applications in The Mineral Industries,APCOM,ERA2010,A,none,none,0914,0,N/A +Computer Graphics International,CGI,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/cgi,4607,0,N/A +Computer Science Research Conference,CSRC,CORE2018,C,none,none,08,0,N/A +Computer Sciences and Information Technologies,CSIT,CORE2023,National,none,none,4602,0,N/A +Computer Supported Collaborative Learning,CSCL,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/cscl,4608,1,5.0 +Computers in Cardiology,,ERA2010,A,none,none,0903,0,N/A +Computing and Control in the Water Industry 2009,,ERA2010,B,none,none,0905,0,N/A +Computing in Civil Engineering and Building International Conference,ICCCBE,ERA2010,C,none,none,0905,0,N/A +Computing in Education Group of Victoria Conference,CEG,CORE2018,C,none,none,0899,0,N/A +Computing: The Australasian Theory Symposium,CATS,CORE2018,Australasian,none,none,0802,0,N/A +Conference and Symposium of the International Committee on Aeronautical Fatigue,,ERA2010,A,none,none,0901,0,N/A +Conférence en Recherche d'information et Applications,CORIA,ERA2010,C,none,none,08,0,N/A +Conference for the International Simulation and Gaming Association,ISAGA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isaga,4607,0,N/A +Conference in Uncertainty in Artificial Intelligence,UAI,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/uai,4602,1,N/A +Conference of South African Institute of Computer Scientists and Information Technologists,SAICSIT,ERA2010,C,none,none,08,0,N/A +Conference of the Association for Machine Translation in the Americas,AMTA,CORE2023,National/Regional,none,https://dblp.uni-trier.de/db/conf/amta,4602,0,N/A +Conference of the Association of Asian-Pacific Operational Research Societies,APORS,CORE2023,C,none,none,4602,0,N/A +Conference of the Australian Institutes of Transport Research,CAITR,ERA2010,C,none,none,1205,0,N/A +Conference of the Commission Internationale pour l'Etude et l'Amelioration de l'Enseignement des Mathematiques,CIEAEM,CORE2018,C,none,none,0802,0,N/A +Conference of the European Association for Machine Translation,EAMT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/eamt,4602,0,N/A +Conference of the European Society for Fuzzy Logic and Technologies,EUSFLAT,CORE2023,C,none,https://dblp.org/db/conf/eusflat,4602,0,N/A +Conference of the International Society for Decision Support Systems,ISDSS,CORE2018,C,none,none,0801,1,N/A +Conference of the Pacific Association for Computational Linguistics,PACLING,CORE2021,B,See note,https://dblp.uni-trier.de/db/conf/pacling,4602,1,5.0 +Conference on Agile Software Development,XP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/xpu,4612,0,N/A +Conference on Algebra and Coalgebra in Computer Science,CALCO,CORE2023,B,none,https://dblp.org/db/conf/calco,4613,0,N/A +Conference on Algorithmic Aspects in Information and Management,AAIM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/aaim,4613,0,N/A +Conference on Algorithms and Hardware for Parallel Processing,CONPAR,CORE2018,C,none,none,0805,0,N/A +Conference on Artificial Intelligence for Applications,CAIA,CORE2018,B,none,none,0801,0,N/A +Conference on Artificial Neural Networks and Expert systems,ANNES,CORE2018,C,none,none,0801,0,N/A +Conference on Combinatorial Optimization and Applications,COCOA,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/cocoa,4602,1,N/A +Conference on Computational Natural Language Learning,CoNLL,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/conll,4602,0,N/A +CONFERENCE ON COMPUTER SCIENCE AND INTELLIGENCE SYSTEMS,FedCSIS,CORE2023,Multi-conference,none,https://dblp.org/db/conf/fedcsis,4602,0,N/A +"Conference on Computers, Freedom, and Privacy",CFP,CORE2018,C,none,none,0803,0,N/A +Conference on Construction Partnering,CII-HK,ERA2010,C,none,none,1202,0,N/A +"Conference on Discrete Mathematics, Algebra and their Application",DIMA,CORE2018,C,none,none,0802,0,N/A +Conference on File and Storage Technologies,FAST,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/fast,4605,0,N/A +Conference on Fun with Algorithms,FUN,CORE2023,National: Italy,none,https://dblp.uni-trier.de/db/conf/fun,4613,0,N/A +Conference on Games (was Computational Intelligence and Games CIG),COG,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cig,4607,0,N/A +Conference on Graph Theory and Discrete Geometry,CGTDG,CORE2018,C,none,none,0802,0,N/A +"Conference on Information Science, Technology and Management",CISTM,CORE2018,B,none,none,0806,0,N/A +Conference on Information Sciences and Systems,CISS,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/ciss,4606,0,N/A +"Conference on Innovation in Clouds, Internet and Networks",ICIN,CORE2023,National: France,none,https://dblp.uni-trier.de/db/conf/icin,4606,0,N/A +Conference on Innovative Data Systems Research,CIDR,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/cidr,4605,0,N/A +Conference on Integer Programming and Combinatorial Optimization,IPCO,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ipco,4613,0,N/A +Conference on Intelligent Computer Mathematics,CICM,CORE2023,C,none,https://dblp.org/db/conf/mkm,4613,0,N/A +"Conference on Interactive Theorem Proving (previously TPHOLs, changed in 2009)",ITP,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/itp,4613,0,N/A +Conference on Learning Theory,COLT,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/colt,4611,2,5.0 +Conference on Office Information Systems,SIGOA,CORE2018,C,none,none,0806,0,N/A +Conference on Operational Research Practice in Africa,ORPA,ERA2010,C,none,none,0802,0,N/A +"Conference on Orders, Algorithms and Applications",Ordal,CORE2018,C,none,none,0802,0,N/A +Conference on Railway Engineering,,ERA2010,A,none,none,0905,0,N/A +Conference on RFID Security,RFIDSec,CORE2018,C,none,https://dblp.uni-trier.de/db/conf/rfidsec,0803,0,N/A +Conference on Robot Learning,CoRL,CORE2023,Unranked,none,https://dblp.org/db/conf/corl/index.html,4602,0,N/A +Conference on Security and Cryptography for Networks,SCN,CORE2023,National: Italy,none,https://dblp.uni-trier.de/db/conf/scn,4604,0,N/A +Conference on Security in Network Architectures and Information Systems,SAR-SSI,CORE2018,C,none,none,0803,0,N/A +"Conference on Software Engineering Education and Training (previously Conference is Software Engineering Education, CSEE, changed in 1997)",CSEET,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/csee/index.html,4608,0,N/A +Conference on Software in Telecommunications and Computer Networks,SOFTCOM,CORE2023,National: Croatia,none,https://dblp.uni-trier.de/db/conf/softcom,4606,0,N/A +Conference on Spatial Information Theory,COSIT,ERA2010,C,none,none,1201,0,N/A +Conference on the Quality of Software Architectures,QoSA,CORE2017,B,none,none,0803,0,N/A +Conference on Theory and Applications of Models of Computation,TAMC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/tamc,4613,0,N/A +Conference on Visualization and Data Analysis,VDA,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/vda,4608,0,N/A +Congress of the Italian Assoc for AI,AI*IA,ERA2010,B,none,none,0801,0,N/A +Congress of the Modelling and Simulation Society of Australia and New Zealand,Modsim 03,ERA2010,A,none,none,0907,0,N/A +ConnectED: International Conference on Design Education,ConnectED,ERA2010,C,none,none,1201,0,N/A +Constraint Databases and Applications,CDB,CORE2018,C,none,none,0804,0,N/A +Constraint Programming Day,CPD,CORE2018,C,none,none,0802,0,N/A +"Construction Applications of Virtual Reality, International Conference",CAVR,ERA2010,C,none,none,1202,0,N/A +Construction Applications to Virtual Reality Conference,CONVR,ERA2010,C,none,none,1201,0,N/A +Construction Automation Conference,,ERA2010,B,none,none,1202,0,N/A +Construction in the Twenty-first Century Conferences,CITC,ERA2010,B,none,none,1202,0,N/A +Construction Management and Economics Conference,CME 25,ERA2010,A,none,none,1202,0,N/A +Construction Management and Real Estate International Symposium,CRIOCM,ERA2010,B,none,none,1202,0,N/A +Contact Mechanics,,ERA2010,A,none,none,1299,0,N/A +"Cooperative Design, Visualization, and Engineering",CDVE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cdve,4608,0,N/A +Cooperative Research Centre for Construction Innovation International Conference,CRCCI,ERA2010,B,none,none,1202,0,N/A +Coordinated and Multiple Views in Exploratory Visualization,CMV,CORE2018,C,none,none,0801,0,N/A +Corrosion and Prevention,,ERA2010,A,none,none,0913,0,N/A +Crypto'Puces,Crypto'Puces,ERA2010,C,none,none,0804,0,N/A +Cryptographers Track at RSA Conference,CT-RSA,CORE2023,B,See note,https://dblp.org/db/conf/ctrsa,4604,0,N/A +Cryptography Policy and Algorithms Conference,CryPAC,CORE2018,C,none,none,0804,0,N/A +Cultural Attitudes towards Technology and Communications,CATAC,CORE2018,B,none,none,0806,0,N/A +Cultural Heritage Knowledge Visualisation,CHKV,CORE2018,C,none,none,0801,0,N/A +"Cumulus - International Association of Universities and Colleges of Art, Design and Media",CUMULUS,ERA2010,C,none,none,1203,0,N/A +Current Trends in Theory and Practice of Computer Science,SOFSEM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sofsem,46,0,N/A +Data Compression Conference,DCC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/dcc,4605,0,N/A +Data Semantics in Web Information Systems,DASWIS,CORE2018,C,none,none,0806,0,N/A +Data Warehousing and Knowledge Discovery,DaWaK,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/dawak,4605,0,N/A +Database Programming Languages,DBPL,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/dbpl,4605,1,N/A +"Datenbanksysteme für Business, Technologie und Web",BTW,CORE2023,National:Germany,none,https://dblp.org/db/conf/btw,4605,0,N/A +Declarative Agent Languages and Technologies (merged into EMAS in 2013),DALT,ERA2010,B,none,none,0804,0,N/A +Deductive and Object-Oriented Databases,DOOD,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/dood,0806,0,N/A +Design and Aesthetics in Visualisation,DAViz,CORE2018,C,none,none,0801,0,N/A +Design and Emotion Society Conferences,D&E,ERA2010,A,none,none,1203,0,N/A +Design and Management of Data Warehouses,DMDW,CORE2018,C,none,none,0804,0,N/A +Design Automation Conf,DAC,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/dac,CSE,2,5.0 +Design Computing and Cognition,DCC,ERA2010,A,none,none,1201,0,N/A +Design for User Experience,DUX,CORE2018,B,none,none,0806,0,N/A +Design Research Society (UK) International Conference,DRS,ERA2010,B,none,none,1203,0,N/A +Design Society Conferences,,ERA2010,B,none,none,1203,0,N/A +"Design, Automation and Test in Europe Conference",DATE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/date,CSE,6,5.0 +Designing Interactive Systems,DIS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ACMdis,4608,0,N/A +Designing Pleasurable Products And Interfaces,DPPI,ERA2010,B,none,none,1203,0,N/A +Deutsche Arbeitsgemeinschaft für Mustererkennung DAGM e.V,DAGM,ERA2010,B,none,none,0801,0,N/A +Developments in eSystems Engineering,DeSE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/dese,46,0,N/A +Developments in Language Theory,DLT,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/dlt,4613,0,N/A +Digital Arts and Culture,DAC,CORE2018,C,none,none,0806,0,N/A +Digital Audio Effects Conference,DAFX,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/dafx,4603,0,N/A +Digital Games Research Conference,DIGRA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/digra,4607,0,N/A +Digital Image Computing Techniques and Applications,DICTA,CORE2023,Australasian C,See note,https://dblp.uni-trier.de/db/conf/dicta,4603,0,N/A +DIMACS Workshop on Intrinsic Complexity of Computation,DIMACS Intrinsic,CORE2018,C,none,none,0802,0,N/A +Discourse Anaphora and Anaphor Resolution Colloquium,DAARC,CORE2018,C,none,none,0801,0,N/A +Discovery Science,DS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/dis,4611,0,N/A +Discrete and Algorithmic Geometry,DAG,CORE2018,C,none,none,0802,0,N/A +"Discrete Models: Combinatorics, Computation and Geometry",DM-CCG,CORE2018,C,none,none,0802,0,N/A +Distributed Communities on the Web Workshop,Dcw,CORE2018,C,none,none,0806,0,N/A +Distributed Simulation Symposium,DSS,CORE2018,B,none,none,,0,N/A +DNA Computing and Molecular Programming,DNA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/dna,4601,0,N/A +Doing IT at Melbourne,DITAM,CORE2017,L,none,none,,0,N/A +Domain - Specific Languages for Software Engineering,DSLSE,CORE2018,C,none,none,0803,0,N/A +Domain Specific Aspect Languages,DSAL,CORE2018,C,none,none,0803,0,N/A +Durability of Building Materials and Components Conference,DBMC,ERA2010,C,none,none,0905,0,N/A +Dutch Computational Geometry Day,DutchCG,CORE2018,C,none,none,0802,0,N/A +Dynamic Graph Workshop,DGW,CORE2018,C,none,none,0802,0,N/A +Dynamic Languages Symposium,DLS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/dls,4612,0,N/A +East Asia Society for Transportation Studies Conference (biennial),EASTS,ERA2010,C,none,none,1205,0,N/A +East Asia-Pacific Conference on Structural Engineering and Construction,,ERA2010,B,none,none,0905,0,N/A +Ecopolitics,,ERA2010,B,none,none,1205,0,N/A +ECRYPT Workshop on Cryptographic Hash Functions,ECRYPT,CORE2018,C,none,none,0804,0,N/A +ECRYPT Workshop on Tools for Cryptanalysis,ECRYPT,CORE2018,C,none,none,0804,0,N/A +Education and Research in Computer Aided Architectural Design in Europe,eCAADe,ERA2010,B,none,none,1201,0,N/A +Educational Data Mining,EDM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/edm,4601,2,4.5 +"EMAS (merger of DALT, AOSE and PROMAS)",EMAS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/emas,4602,0,N/A +Embedded Sensor Networks Workshop,Emnets,CORE2018,C,none,none,1005,0,N/A +Empirical Methods in Natural Language Processing,EMNLP,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/emnlp,4602,2,5.0 +Enabling Grids for E-Science European Conference,EGEE,CORE2018,C,none,none,0805,0,N/A +Engineering Applications of Artifical Intelligence,EAAI,CORE2018,A,none,none,0801,0,N/A +Engineering Education series (organised by Higher Education Academy Engineering Subject Centre UK),,ERA2010,B,none,none,09,0,N/A +Engineering Federated Information (Database) Systems,EFIS/EFDBS,CORE2018,C,none,none,,0,N/A +Engineering Interactive Computing Systems,EICS,CORE2023,Journal Published,none,https://dblp.uni-trier.de/db/conf/eics,4608,3,5.0 +Entertainment and media in the ubiquitous era (ACM),MINDTREK,ERA2010,B,none,none,1203,0,N/A +ENVI and IDL Data Analysis and Visualization Symposium,VISualize,CORE2018,C,none,none,0801,0,N/A +Environmental Design Research Association,EDRA,ERA2010,B,none,none,1203,0,N/A +ERATO Conference on Quantum Information Science,EQIS,CORE2018,C,none,none,0802,0,N/A +ERCIM Annual Workshop on Constraint Solving and Constraint Logic Programming,ERCIM/CSCLP,CORE2018,B,none,none,0802,0,N/A +Ershov Conference,PSI,CORE2020,National: Russia,none,https://dblp.uni-trier.de/db/conf/ershov,4612,0,N/A +ETHICOMP Conference,ETHICOMP,CORE2023,C,See note,none,4608,0,N/A +EURO AMERICAN CONFERENCE ON TELEMATICS AND INFORMATION SYSTEMS,EATIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/eatis,4606,0,N/A +Euro XR International Conference (was Euro VR),Euro XR,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/eurovr,4607,0,N/A +"EuroConference on Combinatorics, Graph Theory and Applications",EUroComb,CORE2023,C,none,none,4613,0,N/A +Eurographics Symposium on Parallel Graphics and Visualization,EGPGV,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/egpgv,4607,0,N/A +Eurographics/IEEE Symposium on Visualization,EuroVis,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/vissym,4607,1,5.0 +Euromicro Conference on Real-Time Systems,ECRTS,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/ecrts,4606,0,N/A +Euromicro Conference on Software Engineering and Advanced Applications,SEAA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/euromicro,4612,0,N/A +"Euromicro International Conference on Parallel, Distributed and Network Based Processing",PDP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pdp,4606,0,N/A +Europe-Africa Conference on Wind Engineering,,ERA2010,B,none,none,0905,0,N/A +European Academy of Design conferences,EAD,ERA2010,C,none,none,1203,0,N/A +European Association for Computational Linguistics,EACL,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/eacl,4602,1,5.0 +European Chapter on Combinatorial Optimization,ECCO,CORE2023,C,none,none,4613,0,N/A +European Computing Conference,ECC,CORE2018,C,none,none,08,0,N/A +European Conference of Information Warfare,ECIW,CORE2018,C,none,none,0806,0,N/A +European Conference on Ambient Intelligence,AmI,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/ami,4606,1,4.0 +European Conference on Artificial Intelligence,ECAI,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ecai,4602,0,N/A +European Conference on Artificial Life,ECAL,CORE2018,B,none,none,0801,0,N/A +European Conference on Computational Biology,ECCB,CORE2023,C,See note,none,4601,0,N/A +European Conference on Computational Learning Theory (Now in COLT),EuroCOLT,CORE2018,C,none,none,0801,0,N/A +European Conference on Computational Mechanics,ECCM,ERA2010,A,none,none,0905,0,N/A +European Conference on Computer Supported Cooperative Work,ECSCW,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ecscw,4608,0,N/A +European Conference on Computer Vision,ECCV,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/eccv,4603,4,5.0 +European Conference on Digital Government (was European Conference on e-Government ECEG),ECDG,CORE2023,C,none,none,4601,0,N/A +European Conference on Evolutionary Computation in Combinatorial Optimisation,EvoCOP,CORE2023,B,none,https://dblp.org/db/conf/evoW/evocop2019.html,4602,0,N/A +European Conference on Genetic Programming,EUROGP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/eurogp,4602,0,N/A +European Conference on Information Management and Evaluation,ECIME,CORE2018,C,none,none,0806,0,N/A +European Conference on Information Retrieval,ECIR,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ecir,4605,1,3.0 +European Conference on Information Systems,ECIS,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/ecis,0806,0,N/A +European Conference on Knowledge Management,EKM,CORE2018,B,none,none,0806,0,N/A +European Conference on Machine Learning (Joined with PKDD from 2008),ECML,CORE2014,A,none,none,0801,0,N/A +European Conference on Machine Learning and Principles and Practice of Knowledge Discovery in Database (PKDD and ECML combined from 2008),ECML PKDD,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/pkdd,4611,2,5.0 +European Conference on Modelling Foundations and Applications,ECMFA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ecmdafa,4612,0,N/A +European Conference on Multi-Agent Systems,EUMAS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/eumas,4602,1,3.0 +European Conference on Numerical Methods in Geotechnical Engineering,NUMGE,ERA2010,A,none,none,0905,0,N/A +European Conference on Object-Oriented Programming,ECOOP,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ecoop,4612,0,N/A +European Conference on Operations Research,EURO,CORE2023,C,none,none,4602,0,N/A +European Conference on Pattern Languages of Programs,EuroPLop,CORE2023,National: Germany,none,https://dblp.uni-trier.de/db/conf/europlop,4612,5,5.0 +European Conference on Research Methodology for Business and Management Studies,ECRM,CORE2018,C,none,none,0806,0,N/A +European Conference on Software Architecture,ECSA,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ecsa,4612,0,N/A +European Conference on Software Maintenance and Reengineering,CSMR,CORE2018,C,none,none,0803,1,4.0 +European Conference on Symbolic and Quantitative Approaches to Reasoning with Uncertainty,ECSQARU,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ecsqaru,4602,0,N/A +European Conference on Technology Enhanced Learning,EC-TEL,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ectel,4601,7,4.7 +European Conference on Universal Multiservice Networks,ECUMN,CORE2018,C,none,none,0805,0,N/A +European Congress on Intelligent Techniques and Soft Computing,EUFIT,CORE2018,C,none,none,0801,0,N/A +European Dependable Computing Conference,EDCC,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/edcc,4604,0,N/A +European Graphics Conference,EUROGRAPH,CORE2018,A,none,none,0801,1,5.0 +European Grid Conference,EGC,CORE2018,B,none,none,,0,N/A +European Institute for Computer Anti-Virus Research EICAR Conference,EICAR,CORE2018,C,none,none,0804,0,N/A +European Lisp Workshop,ELW,CORE2018,C,none,none,0803,0,N/A +European Metallurgical Congress,,ERA2010,B,none,none,0914,0,N/A +European MPI Users' Group Conference,EuroMPI,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pvm,4606,0,N/A +European Natural Language Generation Workshop,EuroNLG,CORE2018,B,none,none,0806,0,N/A +European PKI Workshop: Theory and Practice,EUROPKI,CORE2018,B,none,none,0803,0,N/A +European Signal Processing Conference,EUSIPCO,CORE2018,B,none,https://dblp.uni-trier.de/db/conf/eusipco,1006,0,N/A +European Simulation Symposium,ESS,CORE2018,B,none,none,0801,0,N/A +European SPI,EuroSPI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/eurospi,4612,32,5.0 +European Symposium on Algorithms,ESA,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/esa,4613,1,5.0 +European Symposium on Artificial Neural Networks,ESANN,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/esann,4611,0,N/A +European Symposium on Gender and ICT,ESGICT,CORE2018,C,none,none,0899,0,N/A +European Symposium on Programming,ESOP,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/esop,4612,1,4.0 +European Symposium On Research In Computer Security,ESORICS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/esorics,4604,0,N/A +European Transport Conference,ETC,ERA2010,B,none,none,1205,0,N/A +European Turbulence Conference,,ERA2010,A,none,none,0901,0,N/A +European Workshop on Advanced Mobile Robots,EuroBot,CORE2018,C,none,none,0910,0,N/A +European Workshop on Computational Geometry,EuroCG,CORE2023,C,none,none,4613,0,N/A +European Workshop on Learning Robots,EWLR,CORE2018,B,none,none,,0,N/A +European Workshop on Modelling Autonomous Agents in a Multi-Agent World,MAAMAW,CORE2018,C,none,none,0801,0,N/A +European Workshop on Security and Privacy in Ad -Hoc and Sensor Networks,ESAS,CORE2018,C,none,none,0803,0,N/A +European-Japanese Conference on Information Modelling and Knowledge Bases,EJC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ejc,4605,0,N/A +"European, Mediterranean and Middle Eastern Conference on Information Systems",EMCIS,CORE2018,B,none,none,0806,0,N/A +Eurosys Conference,EuroSys,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/eurosys,4606,1,5.0 +"Experiential Knowledge SIG conferences (Design Research Society (DRS) SIG,UK)",,ERA2010,A,none,none,1203,0,N/A +Exploring Modelling Methods in Systems Analysis and Design,EMMSAD,CORE2023,C,none,https://dblp.org/db/conf/emmsad/index.html,4612,0,N/A +Extended Semantic Web Conference (was European Semantic Web Conference),ESWC,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/esws,4605,2,5.0 +Extending Database Technology,EDBT,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/edbt,4605,0,N/A +Extreme Markup Languages,Extreme,CORE2018,C,none,none,0803,0,N/A +Eye Tracking Research and Applications,ETRA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/etra,4608,0,N/A +Far East Workshop on Future DB Systems,FEWFDB,ERA2010,C,none,none,0804,0,N/A +FIE Frontiers in Education,,ERA2010,A,none,none,09,0,N/A +Field Programmable Logic and Applications,FPL,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/fpl/index.html,CSE,1,5.0 +Financial Cryptography and Data Security Conference,FC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/fc,4604,1,5.0 +Finite Differences-Finite Elements-Finite Volumes-Boundary Elements,F-and-B,CORE2018,C,none,none,0801,0,N/A +FIRA Robot World Congress,FIRA,CORE2018,C,none,none,0910,0,N/A +FISITA World Automotive Congress,,ERA2010,B,none,none,0902,0,N/A +Flexible Query-Answering Systems,FQAS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/fqas,4605,0,N/A +Florida Artificial Intelligence Research Society Conference,FlAIRS,CORE2023,National: USA,none,none,4602,3,3.7 +Formal and Computational Cryptography,FCC,CORE2018,C,none,none,0804,0,N/A +Formal Methods in Computer-Aided Design,FMCAD,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/fmcad,4612,2,4.5 +Formal Methods in Software Engineering and Defence Systems Workshop,FMSEDS,CORE2018,C,none,none,0803,0,N/A +Formal Methods Pacific,FMP,CORE2018,C,none,none,0802,0,N/A +Formal Power Series and Algebraic Combinatorics,FPSAC,CORE2018,B,none,none,0802,0,N/A +Formal Techniques in Real-Time and Fault Tolerant Systems,FTRTFT,CORE2018,B,none,none,,0,N/A +Forum on Specification and Design Languages,FDL,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/fdl,4612,0,N/A +Foundations of Aspect-Oriented Languages,FOAL,CORE2018,C,none,none,0803,0,N/A +Foundations of Genetic Algorithms,FOGA,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/foga,4602,1,5.0 +Foundations of Software Science and Computational Structures,FOSSACS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/fossacs,4613,0,N/A +Foundations of Software Technology and Theoretical Computer Science,FST&TCS,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/fsttcs,4613,2,5.0 +Franco-Canadian Workshop on Combinatorial Algorithms,ComAI,ERA2010,C,none,none,0802,0,N/A +French Conference on Knowledge Acquisition and Machine Learning,FCKAML,ERA2010,B,none,none,0801,0,N/A +French Journées de Géométrie Algorithmique,JGA,ERA2010,C,none,none,0802,0,N/A +French Speaking Conference on the Extraction and Management of Knowledge,EGC,ERA2010,C,none,none,0801,0,N/A +Frontiers in Education,FIE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/fie,4608,1,N/A +Functional and Declarative Programming in Education,FDPE,CORE2018,C,none,none,0803,0,N/A +Fundamental Approaches to Software Engineering,FASE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/fase,4612,0,N/A +Game Developers Conference,GDC,CORE2018,C,none,none,0806,0,N/A +Genetic and Evolutionary Computations,GECCO,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/gecco,4602,3,5.0 +Geo congress of the Geo-Institute of ASCE,,ERA2010,A,none,none,0905,0,N/A +"Geometric Modelling and Imaging, International Conference (IEEE)",GMAI,ERA2010,B,none,none,1203,0,N/A +Geometry Festival: An international workshop on Discrete Geometry and Rigidity,GeomFest,CORE2018,C,none,none,0802,0,N/A +Geometry Modeling and Processing,GMP,CORE2023,C,See note,none,4613,0,N/A +GeoShanghai International Conferences,GeoShanghai,ERA2010,A,none,none,0905,0,N/A +GeoVisualization and Information Visualization,GeoViz,CORE2018,C,none,none,0801,0,N/A +German Conference on Artificial Intelligence,KI,ERA2010,C,none,none,0801,0,N/A +German Conference on Multi-Agent system Technologies,MATES,ERA2010,B,none,none,0801,0,N/A +"GI International Conference on Detection of Intrusions and Malware, and Vulnerability Assessment",DIMVA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/dimva,4604,2,4.0 +GIS Planet Conference,GISPlanet,CORE2018,C,none,none,0806,0,N/A +Global Chinese Conference on Computers in Education,GCCCE,CORE2018,C,none,none,0899,0,N/A +Global Conference on Sustainable Product Development and Life Cycle Engineering,,ERA2010,B,none,none,0910,0,N/A +Global Information Technology Management Association World Conference,GITMA,CORE2018,B,none,none,0806,0,N/A +Globalisation and Landscape Architecture: Issues for Education and Practice,,ERA2010,,none,none,1201,0,N/A +Grace Hopper Celebration of Women in Computing,GHC,CORE2018,C,none,none,0899,0,N/A +Graph Drawing,GD,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/gd,4613,0,N/A +Graphics Interface,GI,CORE2023,B,none,https://dblp.org/db/conf/graphicsinterface,4607,0,N/A +Haskell Workshop,HASKELL,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/haskell,4612,0,N/A +Hawaii International Conference on System Sciences,HICSS,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/hicss,0806,3,3.3 +HCist - International Conference on Health and Social Care Information Systems and Technologies,HCist,CORE2023,Unranked,none,none,4601,0,N/A +Health Informatics Conference,HIC,CORE2023,Australasian C,none,none,4601,1,N/A +Healthy Buildings,HB,ERA2010,A,none,none,1202,0,N/A +Hellenic Conference on Artificial Intelligence,SETN,ERA2010,C,none,none,0801,0,N/A +Heterogeneity in Computing Workshop,HCW,CORE2023,C,See note,none,4606,0,N/A +High Performance Computing Symposium Canada,HPCS-Canada,ERA2010,C,none,none,0805,0,N/A +High-Performance Grid Computing Workshop (part of IPDPS Conference),HPGrid,CORE2018,C,none,none,0805,0,N/A +Hong Kong Institute of Value Management Conference,HKIVM,ERA2010,A,none,none,1202,0,N/A +Human Factors and Ergonomics Conference (Human Factors and Ergonomics Society of Australia),HFESA,ERA2010,C,none,none,1203,0,N/A +Human Language Technologies,HLT,CORE2018,B,none,none,,0,N/A +Human System Interaction,HSI,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/hsi,4608,0,N/A +Human-Agent Interaction,HAI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/hai,4608,0,N/A +Hungarian National Conference on Agent Based Computation,HUNABC,ERA2010,C,none,none,0801,0,N/A +Hydraulics in Civil Engineering,,ERA2010,C,none,none,0905,0,N/A +Hydrology and Water Resources Symposium,,ERA2010,B,none,none,0905,0,N/A +IADIS International Conference Applied Computing,IADIS AC,CORE2023,C,none,none,4601,3,5.0 +IASTED International conference Law and Technology,LawTech,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Applied Informatics,AI,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Applied Simulation and Modelling,ASM,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Artificial Intelligence and Soft Computing,ASC,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Biomedical Engineering,,ERA2010,A,none,none,0903,0,N/A +IASTED International Conference on Computers and Advanced Technology in Education,CATE,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Intelligent Systems and Control,ISC,CORE2014,C,none,none,,0,N/A +"IASTED International Conference on Internet, Multimedia Systems and Applications",IMSA,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Modelling and Simulation,MS,CORE2014,C,none,none,,0,N/A +"IASTED International Conference on Modelling, Identification, and Control",MIC,CORE2014,C,none,none,,0,N/A +"IASTED International Conference on Modelling, Simulation and Optimisation",ICMSO,CORE2014,C,none,none,0801,0,N/A +IASTED International Conference on Parallel and Distributed Computing and Networks,PDCN,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Parallel and Distributed Computing and Systems,PDCS,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Robotics and Manufacturing,RM,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Signal and Image Processing,SIP,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Software Engineering,SE,CORE2014,C,none,none,,0,N/A +IASTED International Conference on Software Engineering and Applications,SEA,CORE2014,C,none,none,,0,N/A +"IASTED International Conference on Visualization, Imaging, and Image Processing",VIIP,CORE2014,C,none,none,,0,N/A +"IASTED International Conferenceon AI, Exp Sys & Neural Networks",AEN,CORE2014,C,none,none,,0,N/A +IASTED Telehealth and Assistive Technology,,ERA2010,A,none,none,0903,1,N/A +IAVoSS Workshop On Trustworthy Elections,WOTE,CORE2018,C,none,none,0802,0,N/A +Iberian Conference on Information Systems and Technologies,CISTI,CORE2018,Regional,none,none,0806,5,3.7 +Iberian Conference on Pattern Recognition and Image Analysis,IBPRIA,ERA2010,C,none,none,0801,0,N/A +IberoAmerican Congress on Pattern Recognition,CIARP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ciarp,4603,0,N/A +ICEE- ICEER - International Conference for Engineering Education and Research,,ERA2010,C,none,none,09,0,N/A +"ICT in Education, Research, and Industrial Applications",ICTERI,CORE2023,National: Ukraine,none,https://dblp.uni-trier.de/db/conf/icteri,4601,0,N/A +Identity and Globalisation: Design for the City,,ERA2010,,none,none,1201,0,N/A +IDF Congress,IDFC,CORE2018,C,none,none,,0,N/A +IEEE Automatic Speech Recognition and Understanding Workshop,ASRU,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/asru,4602,0,N/A +IEEE Bioinformatics and Bioengineering,BIBE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/bibe,4601,0,N/A +IEEE Computational Systems Bioinformatics Conference,CSB,CORE2018,A,none,none,0803,0,N/A +IEEE Computer Communications Workshop,CCW,CORE2018,B,none,none,1005,0,N/A +IEEE Computer Security Foundations Symposium (was CSFW),CSF,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/csfw,4604,0,N/A +IEEE Computer Security Foundations Workshop,CSFW,CORE2008,A,none,none,,0,N/A +IEEE Conference in Industrial Electronics and Applications,,ERA2010,A,none,none,0910,0,N/A +IEEE Conference of the Open Innovations Association FRUCT,FRUCT,CORE2023,Regional,none,https://dblp.org/db/conf/fruct,4606,0,N/A +IEEE Conference on Automation Science and Engineering,,ERA2010,B,none,none,0913,1,3.0 +IEEE Conference on Cognitive and Computational Aspects of Situation Management,CogSIMA,CORE2023,National:USA,none,https://dblp.uni-trier.de/db/conf/cogsima,4606,0,N/A +IEEE Conference on Computational Complexity,CCC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/coco,4613,0,N/A +IEEE Conference on Computer Vision and Pattern Recognition,CVPR,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/cvpr,4603,1,5.0 +IEEE Conference on Decision and Control,CDC,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/cdc,1005,0,N/A +IEEE Conference on Electronic Commerce Technology (merger of CEC and EEE),CEC,CORE2014,C,none,none,0806,0,N/A +"IEEE Conference on Electronic Commerce Technology and Enterprise Computing, e_Commerce and e-Services",CBI (was CEC/EEE),CORE2018,B,none,none,,0,N/A +"IEEE Conference on Information, Decision and Control",IDC,CORE2018,C,none,none,,0,N/A +IEEE Conference on Local Computer Networks,LCN,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/lcn,4606,1,4.0 +IEEE Conference on Mass Storage Systems and Technologies,MSST,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/mss,4606,0,N/A +IEEE Conference on Open Architecture and Network Programming,OPENARCH,CORE2018,A,none,none,0805,0,N/A +"IEEE Conference on Robotics, Automation and Mechatronics",,ERA2010,A,none,none,0913,0,N/A +"IEEE Conference on Systems, Man and Cybernetics",SMC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/smc,4608,6,4.8 +IEEE Conference on Ultra Wideband Systems and Technologies,ICUWB,ERA2010,C,none,none,1005,0,N/A +IEEE Conference on Virtual Reality and 3D User Interfaces,VR,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/vr,4607,0,N/A +IEEE Conference on Wireless Communication and Sensor Networks,WCSN,ERA2010,C,none,none,1005,0,N/A +IEEE Congress on Evolutionary Computation,CEC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cec,4602,6,4.8 +IEEE Congress on Services,SERVICES,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/services,4606,0,N/A +IEEE Consumer Communications and Networking Conference,IEEE CCNC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ccnc,4606,0,N/A +IEEE Dynamic Spectrum Access Networks,DYSPAN,CORE2018,B,none,none,,0,N/A +IEEE EMBS Neural Engineering Conference,,ERA2010,A,none,none,0903,0,N/A +IEEE European Conference on Web Services,ECOWS,CORE2018,C,none,none,0806,0,N/A +IEEE European Symposium on Security and Privacy,EuroS&P,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/eurosp,4604,1,5.0 +IEEE European Test Symposium,ETS,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/ets/index.html,CSE,0,N/A +IEEE Global Information Infrastructure Symposium,GIIS,ERA2010,C,none,none,1005,0,N/A +IEEE Global Internet Symposium,GI,CORE2023,C,none,none,4606,0,N/A +IEEE Global Telecommunications Conference,GLOBECOM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/globecom,4606,3,5.0 +IEEE Global Telecommunications Conference,IEEE GLOBECOM,ERA2010,B,none,none,1006,0,N/A +IEEE Industrial Electronics Society,IECON,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/iecon/index.html,CSE,0,N/A +IEEE Industry Applications Society Annual Conference,IAS,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/iasam,4601,0,N/A +"IEEE Information Theory Workshop on Detection, Estimation, Classification and Imaging",DECI,CORE2018,C,none,none,0802,0,N/A +IEEE Information Visualization Conference,IEEE InfoVis,CORE2020,A*,none,https://dblp.org/db/conf/infovis,4608,0,N/A +IEEE Intell Network Workshop,IN,CORE2018,B,none,none,,0,N/A +IEEE International Augmented Reality Toolkit Workshop,IARTW,CORE2018,C,none,none,0806,0,N/A +IEEE International Conference and Workshop on the Engineering of Computer Based Systems,ECBS,CORE2018,B,none,none,1005,0,N/A +IEEE International Conference on 3D Systems Integration (combines ASET & 3D),IEEE 3D IC,ERA2010,C,none,none,0905,0,N/A +"IEEE International Conference on Acoustics, Speech and Signal Processing",ICASSP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icassp,4603,4,4.5 +IEEE International Conference on Adaptive and Intelligent Systems,ICAIS,CORE2018,C,none,none,0801,0,N/A +IEEE International Conference on Advanced Learning Technologies,ICALT,CORE2023,B,none,https://dblp.org/db/conf/icalt,4601,0,N/A +IEEE International Conference on Advanced Video and Signal Based Surveillance,AVSS,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/avss,4603,0,N/A +IEEE International Conference on Automatic Face and Gesture Recognition,FG,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/fgr,4603,0,N/A +IEEE International Conference on Automation Science and Engineering,CASE,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/case/index.html,CSE,0,N/A +IEEE International Conference on Autonomic Computing,ICAC,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/icac,4606,0,N/A +IEEE International Conference on Big Data,BigData,CORE2023,B,none,https://dblp.org/db/conf/bigdataconf,4605,0,N/A +IEEE International Conference on Blockchain and Cryptocurrency,ICBC,CORE2023,C,none,https://dblp.org/db/conf/icbc2/index.html,4606,1,5.0 +IEEE International Conference on Cloud Computing,CLOUD,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/IEEEcloud,4606,1,5.0 +IEEE International Conference on Cloud Computing in Emerging Markets,CCEM,CORE2023,National:India,none,none,4606,0,N/A +IEEE International Conference on Cloud Computing Technology and Science (International Conference on Cloud Computing pre 2010),CloudCom,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cloudcom,4606,2,4.5 +IEEE International Conference on Cluster Computing,CLUSTER,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cluster,4606,0,N/A +IEEE International Conference on Cognitive Informatics,ICCI,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/IEEEicci,4602,0,N/A +IEEE International Conference on Communications,ICC,CORE2018,B,none,https://dblp.uni-trier.de/db/conf/icc,1006,2,3.0 +IEEE International Conference on Computational Cybernetics,ICCC,CORE2018,C,none,none,0801,0,N/A +IEEE International Conference on Computational Intelligence for Measurement Systems and Applications,CIMSA,CORE2018,C,none,none,0801,0,N/A +IEEE International Conference on Computer and Information Technology,CIT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cit,46,1,4.0 +IEEE International Conference on Computer Communications,INFOCOM,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/infocom,4606,8,4.9 +IEEE International Conference on Computer Design,ICCD,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/iccd/index.html,CSE,0,N/A +IEEE International Conference on Computer Languages,ICCL,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/iccl,0803,0,N/A +IEEE International Conference on Computer Vision,ICCV,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/iccv,4603,3,5.0 +IEEE International Conference on Control Applications,CCA,CORE2018,B,none,none,1006,0,N/A +IEEE International Conference on COTS-Based Software Systems,ICCBSS,CORE2018,C,none,none,0803,0,N/A +IEEE International Conference on Cybernetics and Intelligent Systems,CIS,CORE2023,C,none,none,4602,0,N/A +IEEE International Conference on Data Mining,ICDM,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/icdm,4605,1,5.0 +IEEE International Conference on Data Science and Advanced Analytics,DSAA,CORE2023,B,none,https://dblp.org/db/conf/dsaa,4605,0,N/A +IEEE International Conference on Data Science and Engineering,ICDSE,CORE2023,National:India,none,none,4605,0,N/A +IEEE International Conference on Digital EcoSystems and Technologies Conference,IEEE DEST,CORE2018,C,none,none,0806,0,N/A +IEEE International Conference on Distributed Computing in Sensor Systems,DCOSS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/dcoss,4606,0,N/A +IEEE International Conference on Document Analysis and Recognition,ICDAR,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icdar,4605,2,5.0 +IEEE International Conference on e-Business Engineering,ICEBE,CORE2018,B,none,none,0804,0,N/A +IEEE International Conference on e-Science and Grid Computing,e-Science,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/eScience,4606,0,N/A +IEEE international conference on ehealth networking applications and services (was International Workshop on Enterprise Networking and Computing in Health Care Industry; changed 2006),HealthCom,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/healthcom,4601,1,N/A +IEEE International Conference on Emerging Technologies and Factory Automation,ETFA,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/etfa/index.html,CSE,0,N/A +IEEE International Conference on Engineering of Complex Computer Systems,ICECCS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iceccs,4612,0,N/A +"IEEE International Conference on Enterprise Computing, E-Commerce and E-Services",EEE,CORE2018,C,none,none,0806,0,N/A +IEEE International Conference on Fog and Edge Computing,ICFEC,CORE2023,C,none,https://dblp.org/db/conf/icfec,4606,0,N/A +IEEE International Conference on Fuzzy Systems,FUZZ-IEEE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/fuzzIEEE,4602,1,5.0 +IEEE International Conference on Global Software Engineering,ICGSE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icgse,4612,0,N/A +IEEE International Conference on Granular Computing,GrC,CORE2018,C,none,none,0801,0,N/A +IEEE International Conference on High Performance Computing and Communications,HPCC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/hpcc,4606,1,4.0 +IEEE International Conference on High Performance Computing and Simulation,IEEE HPCS,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/ieeehpcs,4606,0,N/A +IEEE International Conference on Image Processing,ICIP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icip,4603,2,1.0 +IEEE International Conference on Industrial and Information Systems,ICIIS,ERA2010,C,none,none,1005,0,N/A +IEEE International Conference on Industrial Informatics,INDIN,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/indin/index.html,CSE,0,N/A +IEEE International Conference on Information and Automation,IEEE ICIA,CORE2021,National: China,none,https://dblp.uni-trier.de/db/conf/icinfa,4602,0,N/A +IEEE International Conference on Information Reuse and Integration,IRI,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/iri,4605,0,N/A +IEEE International Conference on Intelligence and Security Informatics,ISI,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isi,4604,0,N/A +IEEE International Conference on Intelligence for Homeland Security and Personal Safety,CIHSPS,CORE2018,C,none,none,0801,0,N/A +IEEE International Conference on Intelligent Computer Communication and Processing,ICCP,CORE2023,National: Romania,none,https://dblp.uni-trier.de/db/conf/iccp2,4602,0,N/A +IEEE International Conference on Intelligent Processing Systems,IPS,CORE2018,C,none,none,,0,N/A +IEEE International Conference on Intelligent Systems,IEEE IS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/is,4602,0,N/A +IEEE International Conference on Mechatronics and Automation,,ERA2010,B,none,none,0913,0,N/A +IEEE International Conference on Mobile Ad-hoc and Sensor Systems,MASS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mass,4606,0,N/A +IEEE International Conference on Multimedia and Expo,ICME,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icmcs,4603,0,N/A +IEEE International Conference on Multimedia Computing and Systems,ICMCS,CORE2018,A,none,none,0806,0,N/A +IEEE International Conference on Multimedia in Education,MME,CORE2018,C,none,none,,0,N/A +IEEE International Conference on Networks,ICON,CORE2018,B,none,none,1006,0,N/A +IEEE International Conference on Neural Networks,ICNN,CORE2018,B,none,none,0801,0,N/A +IEEE International Conference on Parallel Processing Workshops,WoPP,CORE2018,C,none,none,0805,0,N/A +IEEE International Conference on Peer to Peer Computing,P2P,CORE2018,C,none,none,0806,1,4.0 +IEEE International Conference on Pervasive Computing and Communications,PERCOM,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/percom,4608,48,5.0 +"IEEE International Conference on Program Comprehension (previously IWPC, changed in 2006)",ICPC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/iwpc,4612,1,5.0 +IEEE International Conference on Quantum Computing and Engineering,QCE,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/qce/index.html,CSE,0,N/A +IEEE International Conference on Radio Frequency Identification,IEEE RFID,CORE2018,B,none,none,1006,3,4.0 +IEEE International Conference on Robotics and Automation,ICRA,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/icra,4602,6,4.5 +IEEE International Conference on Robotics and Biomimetics,,ERA2010,B,none,none,0903,0,N/A +IEEE International Conference on Robots and Automation,,ERA2010,A,none,none,0913,0,N/A +"IEEE International Conference on Sensing, Communication and Networking",SECON,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/secon,4606,0,N/A +IEEE International Conference on Service-Oriented Computing and Applications,SOCA,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/soca,4606,0,N/A +IEEE International Conference on Signal Processing and Communication,ICSPC,ERA2010,C,none,none,1005,0,N/A +"IEEE International Conference on Software Analysis, Evolution and Reengineering",SANER,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/saner,4612,0,N/A +"IEEE International Conference on Software Maintenance and Evolution (prior to 2014 was ICSM, IEEE International Conference on Software Maintenance)",ICSME,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icsm,4612,1,5.0 +IEEE International Conference on Software Services Engineering (previously IEEE International Conference on Services Computing SCC),IEEE SSE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/IEEEscc,4606,0,N/A +IEEE International Conference on Telecommunications,ICT,ERA2010,C,none,none,1005,0,N/A +IEEE International Conference on Visual Communications and Image Processing (was SPIE ... pre 2011),VCIP,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/vcip,4603,1,5.0 +IEEE International Conference on Web Services,ICWS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icws,4606,0,N/A +"IEEE International Conference on Wireless and Mobile Computing, Networking and Communications",WiMob,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/wimob,4606,1,5.0 +IEEE International Conference on Wireless Information Technology and Systems,ICWITS,CORE2018,B,none,none,0805,0,N/A +IEEE International Dynamic Spectrum Access Networks Symposium,IEEE DYSPAN,ERA2010,B,none,none,1005,0,N/A +IEEE International Enterprise Distributed Object Computing Conference,EDOC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/edoc,4606,0,N/A +IEEE International Geoscience and Remote Sensing Symposium,IGARSS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/igarss,4601,0,N/A +IEEE International High Level Design Validation and Test Workshop,HLDVT,ERA2010,C,none,none,1005,0,N/A +IEEE International Joint Conference on Neural Networks,IJCNN,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ijcnn,4611,7,4.2 +IEEE International Multioptic Conference,INMIC,CORE2018,C,none,none,08,0,N/A +IEEE International Parallel and Distributed Processing Symposium (was IPPS and SPDP),IPDPS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ipps,4606,1,4.0 +IEEE International Performance Computing and Communications Conference,IPCCC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/ipccc,4606,0,N/A +IEEE International Requirements Engineering Conference,RE,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/re,4612,9,5.0 +IEEE International Scientific Conference on Informatics,Informatics,CORE2023,National:Slovakia,none,none,4613,0,N/A +IEEE International Solid-State Circuits Conference,ISSCC,CORE2018,A,none,none,,0,N/A +"IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks",WoWMoM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/wowmom,4606,59,4.9 +IEEE International Symposium on Adaptive Dynamic Programming and Reinforcement Learning,IEEE ADPRL,CORE2023,C,none,none,4611,0,N/A +IEEE International Symposium on Artificial Life,IEEE Alife,CORE2023,C,none,none,4602,0,N/A +IEEE International Symposium on Biomedical Imaging,,ERA2010,A,none,none,0903,1,4.0 +IEEE International Symposium on Circuits and Systems,ISCAS,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/iscas/index.html,CSE,1,5.0 +"IEEE International Symposium on Cluster, Cloud and Grid Computing",CCGRID,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ccgrid,4606,0,N/A +IEEE International Symposium on Electronics and the Environment,,ERA2010,B,none,none,0910,0,N/A +IEEE International Symposium on High Assurance Systems Engineering,HASE,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/hase,4612,0,N/A +IEEE International Symposium on Information Theory,ISIT,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/isit,4613,2,5.0 +IEEE International Symposium on Intelligence in Neural & Biological Systems,INBS,CORE2018,B,none,none,,0,N/A +IEEE International Symposium on Intelligent Control,ISIC,CORE2018,B,none,none,1005,0,N/A +IEEE International Symposium on Multimedia,ISM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ism,4603,0,N/A +IEEE International Symposium on Network Computing and Applications,NCA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/nca,4606,1,5.0 +IEEE International Symposium on Parallel and Distributed Processing with Applications,ISPA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ispa,4606,0,N/A +IEEE International Symposium on Performance Analysis of Systems and Software,ISPASS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ispass,4612,0,N/A +IEEE International Symposium on Personal and Indoor Mobile Radio Conference,PIMRC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/pimrc,4606,0,N/A +IEEE International Symposium on Rapid System Prototyping (was IEEE Symposium on Rapid Prototyping),RSP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/rsp,4612,0,N/A +IEEE International Symposium on Real-Time Distributed Computing,ISORC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isorc,4606,0,N/A +IEEE International Symposium on Security in Networks and Distributed Systems,SSNDS,CORE2018,C,none,none,0803,0,N/A +IEEE International Symposium on Software Metrics,SMS,CORE2018,A,none,none,0803,0,N/A +IEEE International Symposium on Wearable Computers,ISWC,CORE2023,Journal Published,none,https://dblp.org/db/conf/iswc,4608,0,N/A +IEEE International Symposium on Web Systems Evolution,WSE,CORE2018,C,none,none,0806,0,N/A +IEEE International Test Conference,ITC,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/itc/index.html,CSE,0,N/A +IEEE International Working Conference on Mining Software Repositories,MSR,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/msr,4612,10,4.7 +IEEE International Working Conference on Software Visualisation,VISSOFT,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/vissoft,4608,0,N/A +IEEE International Working Conference on Source Code Analysis and Manipulation,SCAM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/scam,4612,1,4.0 +IEEE International Workshop on Cellular Nanoscale Networks and Applications,CNNA,CORE2018,C,none,none,0801,0,N/A +IEEE International Workshop on Cluster Computing and the Grid,IWCC,CORE2018,C,none,none,,0,N/A +IEEE International Workshop on Databases for Next-Generation Researchers,SWOD,CORE2018,C,none,none,0804,0,N/A +IEEE International Workshop on Future Trends of Distributed Computing Systems,FTDCS,CORE2018,C,none,none,0805,0,N/A +IEEE International Workshop on Neural Networks for Signal Processing,NNSP,CORE2018,C,none,none,0801,0,N/A +IEEE International Workshop on Object-Oriented Real-Time Dependable Systems,WORDS,CORE2018,B,none,none,1005,0,N/A +IEEE International Workshop on Quality of Service,IWQoS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iwqos,4606,0,N/A +IEEE International Workshop on the Value of Security through Collaboration,SECOVAL,ERA2010,C,none,none,1005,0,N/A +IEEE LAN/MAN Workshop,LANMAN,CORE2023,C,none,https://dblp.org/db/conf/lanman,4606,0,N/A +IEEE Latin-American Conference on Communications,latincom,ERA2010,C,none,none,1005,0,N/A +IEEE Network Operations and Management Symposium,NOMS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/noms,4606,0,N/A +IEEE Pacific Visualization Symposium (was APVIS),PacificVis,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/pacificvis,4608,0,N/A +IEEE Pacific-Rim Conference on Multimedia,PMIP,CORE2008,C,none,none,,0,N/A +IEEE Real-Time and Embedded Technology and Applications Symposium,RTAS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/rtas,4606,1,4.0 +IEEE Region 10 Conference,Tencon,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/tencon,46,1,N/A +IEEE Software Engineering Workshop,SEW,CORE2023,C,none,none,4612,0,N/A +IEEE Swarm Intelligence Symposium,IEEE SIS,CORE2023,C,none,none,4602,0,N/A +IEEE Symposium on 3D User Interfaces,3DUI,CORE2017,B,none,none,0801,0,N/A +IEEE Symposium on Advanced Management of Information for Globalized Enterprises,AMIGE,CORE2018,C,none,none,0806,0,N/A +IEEE Symposium on Computational Intelligence and Data Mining,CIDM,CORE2023,C,none,none,4605,0,N/A +IEEE Symposium on Computational Intelligence for Financial Engineering,IEEE CIFEr,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cifer,4601,0,N/A +IEEE Symposium on Computational intelligence for Image Processing,IEEE CIIP,CORE2018,C,none,none,0801,0,N/A +IEEE Symposium on Computational intelligence for Multimedia Signal and Vision Processing,IEEE CIMSIVP,CORE2023,C,none,none,4603,0,N/A +IEEE Symposium on Computational Intelligence for Security and Defence Applications,IEEE CISDA,CORE2023,C,none,none,4601,0,N/A +IEEE Symposium on Computational Intelligence in Bioinformatics and Computational Biology,CIBCB,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cibcb,4601,0,N/A +IEEE Symposium on Computational Intelligence in Control and Automation,IEEE CICA,CORE2023,C,none,none,4602,0,N/A +IEEE Symposium on Computational Intelligence in Cyber Security,IEEE CICS,CORE2023,C,none,none,4604,0,N/A +IEEE Symposium on Computational Intelligence in Image and Signal Processing,CIISP,CORE2018,C,none,none,0801,0,N/A +IEEE Symposium on Computational Intelligence in Multi-Criteria Decision-Making,IEEE MCDM,CORE2018,C,none,none,0801,0,N/A +IEEE Symposium on Computational Intelligence in Scheduling,IEEE CI-Sched,CORE2018,C,none,none,0801,0,N/A +IEEE Symposium on Computer Arithmetic,ARITH,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/arith,4613,0,N/A +IEEE Symposium on Computers and Communications,ISCC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/iscc,4606,32,5.0 +IEEE Symposium on Field Programmable Custom Computing Machines,FCCM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/fccm,CSE,0,N/A +IEEE Symposium on Foundations of Computer Science,FOCS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/focs,4613,0,N/A +IEEE Symposium on High-Performance Interconnects,HOTI,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/hoti,4606,0,N/A +IEEE Symposium on Intelligent Agents,IEEE IA,CORE2018,C,none,none,0801,0,N/A +IEEE Symposium on Logic in Computer Science,LICS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/lics,4613,0,N/A +IEEE Symposium on Security and Privacy,SP,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sp,4604,0,N/A +IEEE Symposium on Visual Analytics Science and Technology,IEEE VAST,CORE2020,C,none,https://dblp.uni-trier.de/db/conf/ieeevast,4608,4,5.0 +IEEE Symposium on Visual Languages and Human-Centric Computing (was VL),VL/HCC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/vl,4608,1,4.0 +IEEE Symposium on VLSI Circuits,VLSIC,ERA2010,A,none,none,1005,0,N/A +IEEE Systems and Information Engineering Design Symposium,SIEDS,CORE2018,C,none,none,08,0,N/A +IEEE Systems Conference,SysCon,ERA2010,C,none,none,1005,0,N/A +IEEE Transactions on Knowledge and Data Engineering,IEEETKDE,CORE2018,A,none,none,0806,0,N/A +IEEE Vehicular Technology Conference,VTC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/vtc,4606,1,5.0 +IEEE Visualization,IEEE VIS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/visualization,4608,0,N/A +IEEE VLSI Test Symposium,VTS,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/vts/index.html,CSE,0,N/A +IEEE Wireless Communications and Networking Conference,WCNC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/wcnc,4606,0,N/A +IEEE Working Conference on Reverse Engineering,WCRE,CORE2018,B,none,none,0803,4,4.0 +IEEE Workshop on Advances in Techniques for Analysis of Remotely Sensed Data,WARDS,CORE2018,C,none,none,0802,0,N/A +IEEE Workshop on Applications of Computer Vision,WACV,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/wacv,4603,1,5.0 +IEEE Workshop on Computational Intelligence for Visual Intelligence,IEEE CIVI,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Computational Intelligence in Aerospace Applications,IEEE CIAA,CORE2018,C,none,none,0801,0,N/A +"IEEE Workshop on Computational Intelligence in Biometrics: Theory, Algorithms, and Applications",IEEE CIB,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Computational Intelligence in Vehicles and Vehicular Systems,IEEE CIWS,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Computational Intelligence in Virtual Environments,IEEE CIVE,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Evolvable and Adaptive Hardware,IEEE WEAH,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Evolving and Self-Developing Intelligent Systems,IEEE ESDIS,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on High Performance Switching and Routing,HPSR,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/hpsr,4606,0,N/A +IEEE Workshop on Hot Topics in Web Systems and Technologies,HotWeb,CORE2018,B,none,none,0806,0,N/A +IEEE Workshop on Hybrid Intelligent Models and Applications,IEEE HIMA,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Memetic Algorithms,IEEE WOMA,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Organic Computing,IEEE OC,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Robotic Intelligence in Informationally Structured Space,IEEE RiiSS,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Speech Coding,SCW,CORE2018,C,none,none,0801,0,N/A +IEEE Workshop on Wireless Mesh Networks,WiMesh,ERA2010,C,none,none,1005,0,N/A +IEEE World Congress on Computational Intelligence,WCCI,ERA2010,A,none,none,09,0,N/A +IEEE WoWMoM Workshop on Hot Topics in Mesh Networking,HotMESH,ERA2010,C,none,none,1005,0,N/A +IEEE-RAS International Conference on Humanoid Robots,Humanoids,ERA2010,C,none,none,0902,0,N/A +IEEE/ACIS International Conference on Computer and Information Science,ICIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ACISicis,46,1,4.0 +IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining,ASONAM,CORE2023,B,none,https://dblp.org/db/conf/asunam/index.html,4605,0,N/A +"IEEE/ACM International Conference on Big Data Computing, Applications and Technologies",BDCAT,CORE2023,C,none,https://dblp.org/db/conf/bdc,4611,0,N/A +IEEE/ACM International Conference on Computer-Aided Design,ICCAD,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/iccad,CSE,2,5.0 +IEEE/ACM International Conference on Grid Computing,GRID,CORE2018,A,none,none,0805,0,N/A +IEEE/ACM International Symposium on Mixed and Augmented Reality,ISMAR,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/ismar,4607,0,N/A +IEEE/IFAC Computer Aided Control System Design,CACSD,ERA2010,B,none,none,1006,0,N/A +IEEE/IFAC Joint Symposium on Intelligent Control,CACSD,CORE2018,B,none,none,,0,N/A +IEEE/IFIP International Conference on Dependable Systems and Networks,DSN,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/dsn,4606,1,5.0 +IEEE/IFIP International Conference on Embedded and Ubiquitous Computing,EUC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/euc,4606,0,N/A +IEEE/IFIP International Conference on Information Technology for Balanced Automation Systems,BASYS,CORE2018,B,none,none,0902,0,N/A +IEEE/RSJ International Conference on Intelligent Robots and Systems,IROS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/iros,4602,0,N/A +IEEE/WIC/ACM International Conference on Web Intelligence (previously joint with Intelligent Agent Technology WI-IAT),WI,CORE2023,B,none,none,4602,2,5.0 +IFAC Conference on Automation,ICA,CORE2018,C,none,none,,0,N/A +IFAC Conference on System Structure and Control,SSSC,CORE2023,C,none,none,4612,0,N/A +"IFAC Symposium on Fault Detection, Supervision and Safety of Technical Processes",SAFEProcess,CORE2023,C,none,none,4604,0,N/A +IFIP Conference on Biologically Inspired Collaborative Computing,BICC,CORE2018,C,none,none,0801,0,N/A +IFIP Congress (Information Processing),Information Processing,CORE2018,C,none,none,08,0,N/A +IFIP Information Security & Privacy Conference,IFIP SEC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sec,4604,0,N/A +IFIP International Conference on Broadband Communications,BC,CORE2018,C,none,none,1005,0,N/A +IFIP International Conference on Distributed Applications and Interoperable Systems,DAIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/dais,4606,0,N/A +IFIP International Conference on Network and Parallel Computing,NPC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/npc,4606,0,N/A +IFIP International Conference on Networking,Networking,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/networking,4606,1,5.0 +IFIP International Conference on Open Distributed Processing,ODP,CORE2018,B,none,none,0805,0,N/A +IFIP International Conference on Theoretical Computer Science,IFIP TCS,CORE2018,C,none,none,0802,0,N/A +"IFIP International Symposium on Computing Performance, Modelling, Measurement and Evaluation",PERFORMANCE,CORE2023,Journal Published,none,https://dblp.org/db/conf/performance,4612,0,N/A +"IFIP Joint International Conference on Formal Description Techniques and Protocol Specification, Testing, And Verification",FORTE,CORE2023,C,none,none,4612,0,N/A +IFIP TC13 Conference on Human-Computer Interaction,Interact,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/interact,4608,1,5.0 +IFIP WG 11.3 Working Conference on Data and Applications Security (also known as DBSEC),DBSEC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/dbsec,4604,0,N/A +IFIP WG8.1 Working Conference on the Practice of Enterprise Modeling,PoEM,CORE2023,unranked: not primarily CS,none,https://dblp.org/db/conf/ifip8-1,46,0,N/A +IFIP Working Conference on Visual Database Systems,VDbS,CORE2018,B,none,none,0804,0,N/A +IFIP Working Conferences on Virtual Enterprises,PRO-VE,CORE2023,C,none,none,4606,0,N/A +IFIP/ACM Working Conference on Component Deployment,CD,CORE2018,B,none,none,0803,0,N/A +IFIP/IEEE International Conference on Performance Evaluation and Modeling in Wired and Wireless Networks,PEMWN,CORE2023,C,none,https://dblp.org/db/conf/pemwn/index.html,4606,0,N/A +IFIP/IEEE International Symposium on Integrated Management (even years sharing with NOMS),IM,CORE2023,B,none,https://dblp.org/db/conf/im,4606,0,N/A +IFSA World Congress,IFSA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ifsa,4602,0,N/A +IGIP - international Society for Engineering Education Annual Meeting,,ERA2010,C,none,none,09,0,N/A +IMA International Conference on Cryptography and Coding,IMACC,CORE2023,C,See note,https://dblp.org/db/conf/ima,4604,0,N/A +Image and Vision Computing Conference,IVCNZ,CORE2023,Australasian C,See note,https://dblp.uni-trier.de/db/conf/ivcnz,4603,0,N/A +Indian Conference on Human-Computer Interaction,IndiaHCI,CORE2023,National: India,none,none,4608,0,N/A +Indoor Air,IA,ERA2010,A,none,none,1202,0,N/A +Inductive Logic Programming,ILP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ilp,4613,0,N/A +Industrial Simulation Conference,ISC,CORE2023,C,none,none,4602,0,N/A +Informatics Education Europe,IEE,CORE2018,C,none,none,0899,0,N/A +"Informatics in Education (journal, congress, symposium, etc all under this name - can't rank)",,CORE2018,C,none,none,,0,N/A +Information Hiding and Multimedia Security Workshop,IH&MMSec,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ih,4604,0,N/A +Information Integration and Web-based Applications and Services,IIWAS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iiwas,46,1,4.0 +Information Processing in Sensor Networks,IPSN,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/ipsn,4606,0,N/A +Information Resources Management Association International Conference,IRMA,CORE2018,B,none,none,,0,N/A +Information Security Conference,ISC,CORE2023,C,See note,none,4604,0,N/A +Information Security Practice and Experience Conference,ISPEC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/ispec,4604,0,N/A +Information Security Symposium,CERIAS,CORE2023,National: USA,none,none,4604,0,N/A +Information Systems &Technologies /SPIE Conference on Digital Video Compression Algorithms & Techniques,DVAT,CORE2018,C,none,none,,0,N/A +Information Systems Education Conference,ISECON,CORE2018,B,none,none,0806,0,N/A +Information Systems Research Seminar in Scandinavia,IRIS,ERA2010,C,none,none,0806,0,N/A +Information Theory Workshop,ITW,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/itw,4613,1,4.0 +Information Visualisation Theory and Practice,InfVis,CORE2023,C,none,none,4608,0,N/A +Information Visualization Evaluation,IVE,CORE2018,C,none,none,0801,0,N/A +Information Visualization in Biomedical Informatics,IVBI,CORE2023,C,none,none,4601,0,N/A +Informing Science and Information Technology Education,InSITE,CORE2023,C,none,none,4608,0,N/A +Infrastructure and Environment (International Postgraduate Conference),IPC,ERA2010,B,none,none,1202,0,N/A +Innovations in Theoretical Computer Science,ITCS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/innovations,4613,0,N/A +Innovative Applications in AI,IAAI,CORE2023,C,See note,none,4602,0,N/A +Institute for Small Business and Entrepreneurship Annual Conference,ISBE,CORE2018,C,none,none,0806,0,N/A +Int. Workshop on Formal Methods for Industrial Critical Systems,FMICS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/fmics,4612,0,N/A +Int. Workshop on Multi-Media Data Base Management Systems,IW-MMDBMS,CORE2018,C,none,none,0804,0,N/A +Integrated Data Environments Australia Workshop,IDEAW,CORE2018,Australasian,none,none,0804,0,N/A +Integrated Formal Methods,IFM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ifm,4612,0,N/A +Integration of Software Engineering and Agent Technology,ISEAT,CORE2018,B,none,none,0801,0,N/A +"Intelligence Tools, Data Mining, Visualization",IDV,CORE2018,C,none,none,0801,0,N/A +Intelligent Data Analysis,IDA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ida,4605,0,N/A +Intelligent Distributed Computing,IDC,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/idc,4606,0,N/A +"Intelligent Multimedia, Computing and Communications Technologies and Applications of the Future",CCTAF,CORE2018,C,none,none,,0,N/A +Intelligent Systems in Molecular Biology,ISMB,CORE2023,journal published,none,https://dblp.uni-trier.de/db/conf/ismb,4601,1,N/A +Intelligent Vehicles Conference,IEEE-IV,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ivs,4602,0,N/A +Intelligent Vehicles Symposium,IEEE IV,ERA2010,B,none,none,0902,0,N/A +Intelligent Virtual Agents,IVA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iva,4602,1,4.0 +Intenational Environmental Modelling and Software Society,iEMSs,CORE2023,C,none,none,4601,0,N/A +Interaction,Interaction,CORE2018,C,none,none,0806,0,N/A +Interaction Design and Children (ACM),IDC,CORE2023,B,none,none,4608,0,N/A +Interactive Entertainment,IE,CORE2023,Australasian C,none,none,4607,0,N/A +Interior Design Educators Association (IDEA) Conference,IDEA,ERA2010,B,none,none,1201,0,N/A +Interiors Forum Scotland conference,IFS,ERA2010,B,none,none,1201,0,N/A +"Interiors Forum World, Politecnico di Milano",IFW,ERA2010,B,none,none,1201,0,N/A +International ACM SIGACCESS Conference on Computers and Accessibility,ASSETS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/assets,4608,0,N/A +International and Interdisciplinary Conference on Modelling and Using Context,CONTEXT,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/context,4602,0,N/A +International Association for the Study of Traditional Environments (US),IASTE,ERA2010,B,none,none,1201,0,N/A +International Association of Ergonomics Societies Congress,IEA,ERA2010,B,none,none,1203,0,N/A +International Association of Societies of Design Research,IASDR,ERA2010,B,none,none,1201,1,5.0 +International Atlantic Web Intelligence Conference,AWIC,CORE2018,C,none,none,0801,0,N/A +International Baltic Conference on Databases and Information Systems,DB&IS,CORE2023,Regional - Baltic,none,https://dblp.uni-trier.de/db/conf/balt,4605,0,N/A +International Business Information Management,IBIMA,CORE2018,B,none,none,0806,0,N/A +International Cognitive Robotics Conference,COGROBO,CORE2018,B,none,none,0801,0,N/A +International Colloquium on Automata Languages and Programming,ICALP,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icalp,4613,2,5.0 +"International Colloquium on Data Sciences, Knowledge Discovery and Business Intelligence",DSKDB,CORE2018,C,none,none,0801,0,N/A +International Colloquium on Structural Information and Communication Complexity,SIROCCO,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sirocco,4613,1,4.0 +International Colloquium on Theoretical Aspects of Computing,ICTAC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ictac,4613,0,N/A +International Command and Control Research and Technology Symposium,CCRTS,CORE2018,C,none,none,,0,N/A +International Command and Control Research and Technology Symposium,ICCRTS,ERA2010,C,none,none,0905,0,N/A +International Computer Science Conference,ICSC,CORE2018,B,none,none,08,0,N/A +International Computer Science Symposium in Russia,CSR,CORE2023,National: Russia,none,https://dblp.uni-trier.de/db/conf/csr,46,3,4.0 +International Computer Software and Applications Conference,COMPSAC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/compsac,4601,0,N/A +International Computer Symposium Conference,ICSC2,CORE2018,A,none,none,,0,N/A +International Computer Symposium Workshop,WICS,CORE2018,C,none,none,,0,N/A +International Computing Education Research Workshop,ICER,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icer,4608,0,N/A +"International Conference Abstract State Machines, Alloy, B, TLA, VDM, and Z (Previously International Conference of B and Z Users, ZB, changed in 2008)",ABZ,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/zum,4612,0,N/A +International Conference and Exhibition on High Performance Computing in the Asia-Pacific Region,HPC Asia,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/hpcasia,4606,0,N/A +International Conference and Workshops on Algorithms and Computation,WALCOM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/walcom,4613,0,N/A +"International Conference Computer Graphics, Imaging and Visualization",CGIV,CORE2018,C,none,none,0801,0,N/A +"International Conference for Bulk Materials Storage, Handling and Transportation",,ERA2010,A,none,none,0910,0,N/A +"International Conference for High Performance Computing, Networking, Storage and Analysis (was Supercomputing Conference)",SC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/sc,CSE,0,N/A +International Conference Formal Concept Analysis Conference,ICFCA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icfca,4613,1,4.0 +"International Conference Imaging Science, Systems and Technology",CISST,CORE2018,C,none,none,0801,0,N/A +International Conference in Business Process Management,BPM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/bpm,4612,4,4.8 +International Conference in Methodologies and Intelligent Systems for Technology Enhanced Learning,MIS4TEL,CORE2023,National: Spain,none,https://dblp.org/db/conf/mis4tel,4601,0,N/A +International Conference Information Systems Architecture and Technology,ISAT,CORE2021,National:Poland,none,https://dblp.org/db/conf/isat,4606,0,N/A +International Conference of Asian Digital Libraries,ICADL,CORE2018,A,none,none,,0,N/A +"International Conference of Broadband Communication, Information Technology and Biomedical Applications",broadcom,ERA2010,C,none,none,1005,0,N/A +International Conference of Society for Group Decision and Negotiation,GDN,CORE2018,B,none,none,0806,0,N/A +International Conference of the Immersive Learning Research Network,iLRN,CORE2023,C,none,https://dblp.org/db/conf/ilrn,4601,2,5.0 +International Conference of the International Association for Computer Methods and Advances in Geomechanics,IACMAG,ERA2010,A,none,none,0905,0,N/A +International Conference on 3G Mobile Communication Technologies,3G,CORE2018,C,none,none,0801,0,N/A +International Conference on AD-HOC Networks and Wireless,ADHOC-NOW,CORE2021,C,none,https://dblp.org/db/conf/adhoc-now,4606,0,N/A +International Conference on Adaptive and Natural Computing Algorithms,ICANNGA,CORE2018,C,none,none,0801,0,N/A +International Conference on Advanced and Trusted Computing (was International Conference on Autonomic and Trusted Computing),ATC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/atc,4604,0,N/A +International Conference on Advanced Computing and Communications,AdCom,CORE2023,National: India,none,none,4606,0,N/A +International Conference on Advanced Data Mining and Applications,ADMA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/adma,4605,0,N/A +International Conference on Advanced Information Management,IMS,CORE2018,C,none,none,0806,0,N/A +International Conference on Advanced Information Networking and Applications (was ICOIN),AINA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/aina,4606,3,4.3 +International Conference on Advanced Information Systems Engineering,CaiSE,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/caise,4605,2,4.5 +International Conference on Advanced Language Processing and Web Information Technology,ALPIT,CORE2018,C,none,none,0806,0,N/A +International Conference on Advanced Materials Processing,,ERA2010,B,none,none,0910,0,N/A +International Conference on Advanced Technologies For Signal & Image Processing,ATSIP,CORE2023,National: Tunisia,none,https://dblp.org/db/conf/atsip,4603,2,5.0 +International Conference on Advances and Trends in Engineering Materials and Their Applications,,ERA2010,A,none,none,0910,0,N/A +International Conference on Advances in Computer-Human Interactions,ACHI,CORE2023,C,none,none,4608,0,N/A +"International Conference on Advances in Infrastructure for Electronic Business, Science, and Education on the Internet",SSGRR,CORE2018,C,none,none,0806,0,N/A +International Conference on Advances in Intelligent Systems: Theory and Applications,AISTA,CORE2018,B,none,none,0801,0,N/A +International Conference on Advances in Materials and Processing Technologies,,ERA2010,A,none,none,0910,0,N/A +International Conference on Advances in Mobile Computing and Multimedia,MOMM,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/momm,4606,0,N/A +International Conference on Advances in Pattern Recognition and Digital Techniques,ICAPRDT,CORE2018,C,none,none,0801,0,N/A +International Conference on Affective Computing and Intelligent,ACII,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/acii,4608,4,5.0 +International Conference on Agents and Artificial Intelligence,ICAART,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icaart,4602,0,N/A +International Conference On Agile Manufacturing,,ERA2010,A,none,none,0910,0,N/A +"International Conference on Agile Software Development (chnaged in 2010, was International Conference on extreme Programming and Flexible Processes in Software Engineering)",XP,CORE2018,B,none,none,0803,0,N/A +International Conference on AI in Design,AID,CORE2018,A,none,none,0801,0,N/A +International Conference on Algebraic and Logic Programming,ALP,CORE2018,B,none,none,0802,0,N/A +International Conference on Algorithms and Architectures for Parallel Processing,ICA3PP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ica3pp,4606,0,N/A +International Conference on Algorithms and Complexity (was Italian Conference ),CIAC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ciac,4613,0,N/A +"International Conference on Analysis of Images, Social Networks and Texts",AIST,CORE2023,National: Russia,none,https://dblp.org/db/conf/aist,4602,0,N/A +"International Conference on Application-specific Systems, Architectures and Processors",ASAP,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/asap,0805,0,N/A +International Conference on Applications of Evolutionary Computation,EvoApplications,CORE2023,B,none,https://dblp.org/db/conf/evoW/evoappl2019.html,4602,1,5.0 +International Conference on Applications of Prolog (no information after 2013),INAP,CORE2014,C,none,none,,0,N/A +International Conference on Applied Cryptography and Network Security,ACNS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/acns,4604,1,5.0 +International Conference on Artificial Intelligence,IC-AI,CORE2023,National: USA,none,none,4602,0,N/A +International Conference on Artificial Intelligence and Law,ICAIL,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icail,4602,0,N/A +International Conference on Artificial Intelligence and Pattern Recognition,AIPR,CORE2018,C,none,none,0801,0,N/A +International Conference on Artificial Intelligence and Soft Computing,ICAISC,CORE2023,National: Poland,none,https://dblp.uni-trier.de/db/conf/icaisc,4602,34,4.9 +International Conference on Artificial Intelligence and Statistics,AISTATS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/aistats,4611,8,5.0 +International Conference on Artificial Intelligence in Education,AIED,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/aied,4601,0,N/A +International Conference on Artificial Intelligence in Medicine,AIME,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/aime,4601,0,N/A +"International Conference on Artificial Intelligence in Music, Sound, Art and Design",EvoMUSART,CORE2023,C,none,https://dblp.org/db/conf/evomusart/,4602,1,5.0 +International Conference on Artificial Intelligence in Science and Technology,AISAT,CORE2018,C,none,none,0801,0,N/A +"International Conference on Artificial Intelligence: Methodology, Systems, Applications",AIMSA,CORE2023,National: Bulgaria,none,https://dblp.uni-trier.de/db/conf/aimsa,4602,0,N/A +International Conference on Artificial Neural Networks,ICANN,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icann,4611,0,N/A +International Conference on Artificial Neural Networks and Genetic Algorithms,ICANNGA,CORE2018,C,none,none,,0,N/A +International Conference on Artificial Reality and Telexistance & Eurographics Symposium on Virtual Environments,EGVE,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/egve,4607,0,N/A +International Conference on Artificial Reality and Telexistence,ICAT,CORE2017,B,none,https://dblp.uni-trier.de/db/conf/icat,0801,0,N/A +International Conference on Automated Deduction,CADE,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/cade,4602,0,N/A +International Conference on Automated Planning and Scheduling,ICAPS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/icaps,4602,0,N/A +"International Conference on Automation, Robotics and Control Systems",ARCS,ERA2010,C,none,none,0910,0,N/A +"International Conference on Availability, Reliability and Security",ARES,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/IEEEares,4604,0,N/A +International Conference on Biomedical and Pharmaceutical Engineering,,ERA2010,B,none,none,0903,0,N/A +"International Conference on Broadband Communications, Networks and Systems",Broadnets,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/broadnets,4606,0,N/A +International Conference on Business Information Systems,BIS,CORE2018,B,none,none,0806,0,N/A +"International Conference on CAD/CAM, Robotics and Factories of the Future",RFF,CORE2018,C,none,none,0910,0,N/A +International Conference on Case-Based Reasoning,ICCBR,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/iccbr,4602,2,4.0 +International Conference on Chinese Computing,ICCC,CORE2018,C,none,none,0899,0,N/A +"International Conference on Civil, Structural and Environmental Engineering Computing",CIVIL-COMP,ERA2010,A,none,none,09,0,N/A +International Conference on Cloud Computing and Services Science,CLOSER,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/closer,4606,0,N/A +International Conference on Coastal Engineering,,ERA2010,A,none,none,0905,0,N/A +"International Conference on Collaborative Computing: Networks, Applications and Worksharing",CollaborateCom,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/colcom,4606,1,4.0 +International Conference on Communication System Software and Middleware,COMSWARE,CORE2018,C,none,none,0803,0,N/A +International Conference on COMmunication Systems & NETworkS,COMSNETS,CORE2023,National:India,none,https://dblp.org/db/conf/comsnets,4606,0,N/A +International Conference on Communication Systems and Applications,ICCSA,CORE2023,C,none,none,4606,0,N/A +International Conference on Communications in Computing,CIC,CORE2018,C,none,none,0805,0,N/A +International Conference on Compiler Construction,CC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cc,4606,0,N/A +"International Conference on Compilers, Architecture, and Synthesis for Embedded Systems",CASES,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cases,4606,0,N/A +International Conference on Complex Systems,CxS,CORE2018,C,none,none,0905,0,N/A +"International Conference on Complex, Intelligent and Software Intensive Systems",CISIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/cisis,4606,1,N/A +"International Conference on Complexity, Future Information Systems and Risk",COMPLEXIS,CORE2023,C,none,http://dblp.uni-trier.de/db/conf/complexis,4613,0,N/A +International Conference on Composite Materials,,ERA2010,A,none,none,0910,0,N/A +International Conference on Computability and Complexity in Analysis,CCA,CORE2023,C,none,none,4613,0,N/A +International Conference on Computational Collective Intelligence,ICCCI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iccci,4602,73,4.7 +International Conference on Computational Creativity,ICCC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icccrea,46,1,5.0 +International Conference on Computational Engineering Science,ICES,CORE2018,C,none,none,0802,1,N/A +International Conference on Computational Intelligence and Multimedia,ICCIMA,CORE2018,C,none,none,0801,0,N/A +International Conference on Computational Intelligence and Security,CIS,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/cis,4604,0,N/A +International Conference on Computational Intelligence and Software Engineering,CISE,CORE2014,C,none,none,0801,0,N/A +"International Conference on Computational Intelligence for Modelling, Control and Automation",CIMCA,CORE2018,C,none,none,0801,0,N/A +"International Conference on Computational Intelligence, Robotics and Autonomous Systems",CIRAS,CORE2018,C,none,none,0801,0,N/A +International Conference on Computational Linguistics,COLING,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/coling,4602,5,5.0 +International Conference on Computational Molecular Biology,RECOMB,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/recomb,4601,0,N/A +International Conference on Computational Plasticity,COMPLAS,ERA2010,A,none,none,0905,0,N/A +International Conference on Computational Science,ICCS,CORE2023,Multiconference,none,https://dblp.uni-trier.de/db/conf/iccS,4601,5,5.0 +International Conference on Computational Science and its Applications,ICCSA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iccsa,46,0,N/A +International Conference on Computational Semiotics for Games and New Media,Cosign,CORE2018,C,none,none,0801,0,N/A +International Conference on Computer Analysis of Images and Patterns,CAIP,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/caip,4603,0,N/A +International Conference on Computer Communication and Networks,ICCCN,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icccn,4606,1,N/A +"International Conference on Computer Graphics, Virtual Reality, Visualisation and Interaction in Africa",AFRIGRAPH,CORE2018,C,none,none,0801,0,N/A +International Conference on Computer Information Systems and Industrial Management Applications,CISIM,CORE2018,C,none,none,0806,2,5.0 +"International Conference on Computer Safety, Reliability and Security",SAFECOMP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/safecomp,4604,0,N/A +International Conference on Computer Supported Cooperative Work in Design,CSCWD,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/cscwd,4608,0,N/A +International Conference on Computer Supported Education,CSEDU,CORE2023,B,none,http://dblp.uni-trier.de/db/conf/csedu,4608,0,N/A +International Conference on Computer Theory and Applications,ICCTA,CORE2018,C,none,none,0801,0,N/A +International Conference on Computer Vision and Graphics,ICCVG,CORE2023,National: Poland,none,https://dblp.uni-trier.de/db/conf/iccvg,4603,0,N/A +International Conference on Computer Vision Systems,ICVS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icvs,4603,0,N/A +International Conference on Computer-Human Interaction Research and Applications,CHIRA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/chira,4608,0,N/A +International Conference on Computers and their Applications,CATA,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/cata,4601,0,N/A +International Conference on Computers Helping People with Special Needs,ICCHP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icchp,4601,0,N/A +International Conference on Computers in Education,ICCE,CORE2023,C,See note,none,4601,2,4.0 +International Conference on Computers in Urban Planning and Urban Management,CUPUM,ERA2010,A,none,none,1205,0,N/A +International Conference on Computing and Combinatorics,COCOON,CORE2023,National:China,none,https://dblp.uni-trier.de/db/conf/cocoon,4613,3,4.5 +International Conference on Computing and Informatics,ICOCI,CORE2023,C,none,none,46,0,N/A +International Conference on Computing and Information,ICCI,CORE2018,B,none,none,,0,N/A +International Conference on Computing Education Research (Baltic Sea Conference on Computing Education Research prior to 2008),Koli Calling,ERA2010,B,none,none,0899,0,N/A +International Conference on Conceptual Modelling,ER,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/er,4605,0,N/A +International Conference on Conceptual Structures,ICCS,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/iccs,4613,0,N/A +International Conference on Concurrency Theory,CONCUR,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/concur,4613,0,N/A +International Conference on Construction and Real Estate Management,ICCREM,ERA2010,B,none,none,1202,0,N/A +International Conference on Construction Engineering and Management,ICCEM,ERA2010,C,none,none,0905,0,N/A +International Conference on Construction in Developing Countries,ICCIDC,ERA2010,C,none,none,1202,0,N/A +"International Conference on Control, Automation, Robotics and Vision",ICARCV,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icarcv,4602,0,N/A +"International Conference on Control, Decision and Information Technologies",CoDIT,CORE2023,C,none,https://dblp.org/db/conf/codit,4612,1,4.0 +International Conference on Convergence and Hybrid Information Technology,ICHIT,CORE2018,C,none,none,0899,0,N/A +International Conference on Cooperative Information Systems,CoopIS,CORE2023,B,none,none,4608,0,N/A +International Conference on Coordination Models and Languages,Coordination,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/coordination,4606,0,N/A +International Conference on Creating Connecting and Collaborating through Computing,C5,CORE2018,C,none,none,0806,0,N/A +International Conference on Cryptology and Network Security,CANS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cans,4604,0,N/A +International Conference on Cryptology in India,INDOCRYPT,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/indocrypt,4604,0,N/A +International Conference on Cybercrime Forensics Education and Training,CFET,CORE2018,C,none,none,0801,0,N/A +International Conference on Cyberworlds (was International Symposium on Cyberworlds),CW,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/cw,4607,2,5.0 +International Conference on Data Engineering,ICDE,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/icde,4605,0,N/A +"International Conference on Data Science, Technology and Applications",DATA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/data,4605,0,N/A +International Conference on Database and Expert Systems Applications,DEXA,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/dexa,4605,0,N/A +International Conference on Database Systems for Advanced Applications,DASFAA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/dasfaa,4605,0,N/A +International Conference on Database Theory,ICDT,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icdt,4605,0,N/A +International Conference on Decision Support Through Knowledge Management,DSTKM,CORE2018,C,none,none,,0,N/A +International Conference on Declarative Programming and Knowledge Management (no information after 2013),INAP,CORE2014,C,none,none,0802,0,N/A +International Conference on Dependability of Computer Systems,DEPCoS,CORE2023,National: Poland,none,https://dblp.uni-trier.de/db/conf/depcos,4606,7,4.9 +"International Conference on Dependable, Autonomic and Secure Computing",DASC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/dasc,4604,0,N/A +International Conference on Design Science Research in Information Systems and Technology,DESRIST,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/desrist,0806,0,N/A +International Conference on Design Theory and Methodology (ASME),DTM,ERA2010,A,none,none,1203,0,N/A +"International Conference on Digital Content, Multimedia Technology and its Applications",IDC,CORE2018,C,none,none,0806,0,N/A +International Conference on Digital Economy,ICDEc,CORE2018,Unranked,none,https://dblp.uni-trier.de/db/conf/icdec,0806,0,N/A +International Conference on Digital Government Research,DGO,CORE2018,B,none,none,0806,0,N/A +International Conference on Digital Society,ICDS,CORE2023,C,none,none,4601,0,N/A +International Conference on Discrete Geometry for Computer Imagery,DGCI,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/dgci,4607,1,4.0 +International Conference on Discrete Mathematics and Theoretical Computer Science,DMTCS,CORE2018,B,none,none,0802,0,N/A +International Conference on Distributed Computing and Artificial Intelligence,DCAI,CORE2023,National(Spain),none,https://dblp.org/db/conf/dcai,4602,0,N/A +International Conference on Distributed Computing and Internet Technologies,ICDCIT,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/icdcit,4606,0,N/A +International Conference on Distributed Computing and Networking,ICDCN,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/icdcn,4606,7,4.7 +International Conference on Distributed Computing Systems,ICDCS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icdcs,4606,4,5.0 +International Conference on Distributed Frameworks for Multimedia Applications,DFMA,CORE2018,C,none,none,0805,0,N/A +International Conference on Dublin Core and Metadata Applications,DC,CORE2023,C,none,none,4605,0,N/A +International Conference on e-Business,ICEB,CORE2018,B,none,none,0806,0,N/A +International Conference on Electronic Commerce,ICEC,CORE2023,C,none,none,4601,0,N/A +International Conference on Electronic Commerce and Web Technology,ECWeb,CORE2018,B,none,none,0806,0,N/A +International Conference on Electronic Voting,EVOTE,CORE2018,C,none,none,0804,0,N/A +International Conference on Email and Anti-Spam,CEAS,CORE2018,B,none,none,0806,0,N/A +International Conference on Embedded and Real Time Computing Systems and Applications,RTCSA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/rtcsa,4606,0,N/A +International Conference on Embedded Software and Systems,ICESS,ERA2010,C,none,none,0905,0,N/A +International Conference on Embedded Wireless Systems and Networks (wasEuropean Conference on Wireless Sensor Networks),EWSN,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ewsn,4606,8,4.8 +International Conference on Emerging Ubiquitous Systems and Pervasive Networks,EUSPN,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/euspn,4606,0,N/A +International Conference on Engineering Applications of Neural Networks,EANN,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/eann,4611,0,N/A +International Conference on Engineering Computational Technology,,ERA2010,B,none,none,0910,0,N/A +"International Conference on Engineering Design (ICED), The Design Society",ICED,ERA2010,B,none,none,1203,0,N/A +International Conference on Engineering Education,ICEE,CORE2018,C,none,none,0999,0,N/A +International Conference on Enhancement and Promotion of Computational Methods in Engineering and Science,,ERA2010,A,none,none,0910,0,N/A +International Conference on Enterprise Information Systems,ICEIS,CORE2018,C,none,none,0806,0,N/A +International Conference on Enterprise Information Systems and Web Technologies,EISWT,CORE2018,C,none,none,0806,0,N/A +International Conference on Enterprise Integration and Modelling Technology,ICEIMT,CORE2018,C,none,none,0806,0,N/A +International Conference on Entertainment Computing,ICEC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iwec,4607,0,N/A +International Conference on Environmental Systems,ICES,ERA2010,A,none,none,1202,0,N/A +International conference on ER fluids and MR suspensions,,ERA2010,A,none,none,0913,0,N/A +International Conference on Evaluation and Assessment in Software Engineering,EASE,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ease,4612,31,5.0 +International Conference on Evaluation of Novel Approaches to Software Engineering,ENASE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/enase,4612,0,N/A +International Conference on Experimental Implementation of Quantum Computation,QuantCom,CORE2018,C,none,none,0802,0,N/A +International Conference on Fast Sea Transportation,,ERA2010,A,none,none,0911,0,N/A +International Conference on Field and Service Robotics,FSR,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/fsr,0801,0,N/A +"International Conference on Fluid Control, Measurements, and Visualization",,ERA2010,B,none,none,0913,0,N/A +International Conference on Fluid Mechanics,,ERA2010,B,none,none,0913,0,N/A +International Conference on Formal Engineering Methods,ICFEM,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/icfem,4612,0,N/A +International Conference on Formal Methods and Models for Co-Design,MEMOCODE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/memocode,4612,0,N/A +International Conference on Formal Methods for Open Object-Based Distributed Systems,FMOOD,CORE2018,C,none,none,0899,0,N/A +International Conference on Formal Ontology in Information Systems,FOIS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/fois,4602,0,N/A +International Conference on Formal Structures for Computation and Deduction,FSCD,CORE2023,B,none,https://dblp.org/db/conf/fscd,4613,0,N/A +International Conference on Foundation on Data Organization,FODO,CORE2018,A,none,none,0804,0,N/A +International Conference on Frontiers of Handwriting Recognition,ICFHR,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icfhr,4603,0,N/A +International Conference on Frontiers of Information Technology,FIT,CORE2023,National: Pakistan,none,https://dblp.uni-trier.de/db/conf/fit,46,0,N/A +International Conference on Functional Programming,ICFP,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icfp,4612,0,N/A +International Conference on Fuzzy Systems and Knowledge Discovery,FSKD,CORE2018,C,none,none,0801,0,N/A +International Conference on Generative Programming and Component Engineering,GPCE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/gpce,4612,0,N/A +International Conference on Genetic Algorithms,ICGA,CORE2018,B,none,none,0801,0,N/A +International Conference on GeoComputation,GeoComp,CORE2018,C,none,none,0909,0,N/A +International Conference on Graph Transformations,ICGT,CORE2023,B,none,https://dblp.org/db/conf/gg,4613,0,N/A +"International Conference on Green, Pervasive and Cloud Computing (was Grid and Pervasive Computing)",GPC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/gpc,4606,0,N/A +International Conference on Grid and Cooperative Computing,GCC,CORE2018,C,none,none,0805,0,N/A +International Conference on Grid Computing and Applications,GCA,CORE2018,C,none,none,0805,0,N/A +"International Conference on Grid computing, high-performance and Distributed Applications",GADA,CORE2018,C,none,none,0805,0,N/A +"International Conference on Hardware/Software Codesign and System Synthesis (previously ISSN, changed in 2003)",CODES+ISSS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/codesisss,CSE,0,N/A +International Conference on Health Informatics,Healthinf,CORE2018,C,none,none,0806,1,3.0 +"International Conference on Heterogeneous Networking for Quality, Reliability, Security and Robustness (was International Conference on Quality of Service in Heterogeneous Wired/Wireless Networks)",Qshine,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/qshine,4606,0,N/A +International Conference on High Performance Computing,HiPC,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/hipc,4606,2,5.0 +International Conference on High Performance Computing and Networking,HPCN,CORE2018,B,none,none,,0,N/A +"International Conference on High Performance Computing, Networking and Communication Systems",HPCNCS,CORE2018,B,none,none,0805,0,N/A +International Conference on High Performance Scientific Computing,HPSC,CORE2023,National: Vietnam,none,none,4606,0,N/A +International Conference on High Performance Yacht Design,,ERA2010,A,none,none,0911,0,N/A +International Conference on High-Performance Clustered Computing (International Conference on Linux Clusters),LCI,CORE2018,C,none,none,0805,0,N/A +International Conference on Human Factors in Computing Systems,CHI,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/chi,4608,0,N/A +International Conference on Human-Computer Interaction with Mobile Devices and Services,MobileHCI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mhci,4608,4,5.0 +International Conference on Hybrid Artificial Intelligence Systems,HAIS,CORE2023,National: Spain,none,https://dblp.uni-trier.de/db/conf/hais,4602,0,N/A +International Conference on Hybrid Intelligent Systems,HIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/his,4602,0,N/A +International Conference on Hydroinformatics,,ERA2010,C,none,none,0905,0,N/A +International Conference on Image Analysis and Processing,ICIAP,CORE2023,National: Italy,none,https://dblp.uni-trier.de/db/conf/iciap,4603,1,3.0 +International Conference on Image Analysis and Recognition,ICIAR,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/iciar,4603,0,N/A +International Conference on Image and Graphics,ICIG,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/icig,4607,0,N/A +International Conference on Image and Signal Processing,ICISP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icisp,4603,0,N/A +International Conference on Immersive Telecommunications,IMMERSCOM,CORE2018,C,none,none,0801,0,N/A +International Conference on Implementation and Application of Automata,CIAA,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/wia,4613,0,N/A +"International Conference on Indoor Air Quality, Ventilation and Energy Conservation in Buildings",IAQVEC,ERA2010,A,none,none,1202,0,N/A +International Conference on Indoor Positioning and Indoor Navigation,IPIN,CORE2023,C,none,https://dblp.org/db/conf/ipin,4606,0,N/A +International Conference on Industrial and Engineering Applications of Artificial Intelligence and Expert Systems,IEA/AIE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ieaaie,4602,0,N/A +International Conference on Informatics & Data-Driven Medicine,IDDM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iddm,4611,0,N/A +International Conference on Informatics Education and Research,AIS SIGED: IAIM,CORE2018,B,none,none,0806,0,N/A +"International Conference on Informatics in Control, Automation and Robotics",ICINCO,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icinco,4602,0,N/A +International Conference on Information and Communication Technologies and Development,ICTD,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ictd,4601,0,N/A +International Conference on Information and Communication Technologies for Ageing Well and e-Health,ICT4AWE,CORE2023,C,none,none,4601,0,N/A +International Conference on Information and Communication Technologies in Tourism,ENTER,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/enter,4601,0,N/A +International Conference on Information and Communications Security,ICICS,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/icics,4604,2,N/A +International Conference on Information and Communications Technology,ICICT,CORE2018,C,none,none,08,0,N/A +International Conference on Information and Emerging Technologies,ICIET,CORE2018,C,none,none,08,0,N/A +International Conference on Information and Knowledge Engineering,IKE,CORE2023,National: USA,none,none,4602,0,N/A +International Conference on Information Fusion,FUSION,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/fusion,4605,0,N/A +International Conference on Information Processing and Management of Uncertainty,IPMU,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ipmu,4605,0,N/A +International Conference on Information Quality,ICIQ,CORE2018,Unranked,none,none,0806,0,N/A +International Conference on Information Resources Management,Conf-IRM,CORE2018,B,none,none,0806,0,N/A +International Conference on Information Security and Assurance,ISA,CORE2018,C,none,none,0803,0,N/A +International Conference on Information Security and Cryptography,SECRYPT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/secrypt,4604,0,N/A +International Conference on Information Security and Cryptology,ICISC,CORE2023,National: Korea,none,https://dblp.uni-trier.de/db/conf/icisc,4604,0,N/A +International Conference on Information Systems,ICIS,CORE2018,A*,none,https://dblp.uni-trier.de/db/conf/icis,0806,0,N/A +International Conference on Information Systems Analysis and Synthesis,ISAS,CORE2018,C,none,none,0806,0,N/A +International Conference on Information Systems Development,ISD,CORE2018,A,none,none,0806,0,N/A +International Conference on Information Systems Security,ICISS,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/iciss,4604,0,N/A +International Conference on Information Systems Security and Privacy,ICISSP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icissp,4604,0,N/A +International Conference on Information Systems Technology and its Application,ISTA,CORE2018,B,none,none,0806,0,N/A +International Conference on Information Technology and Applications,ICITA,CORE2023,Australasian C,none,none,4601,0,N/A +International Conference on Information Technology in Regional Areas,ITiRA,CORE2018,C,none,none,0899,0,N/A +International Conference on Information Technology Interfaces,ITI,CORE2018,C,none,none,08,0,N/A +International Conference on Information Technology: Coding and Computing,ITCC,CORE2020,C,none,https://dblp.uni-trier.de/db/conf/itcc,46,0,N/A +International Conference on Information Theoretic Security,ICITS,CORE2018,C,none,none,0803,0,N/A +International Conference on Information Visualisation,IV,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/iv,4608,0,N/A +"International Conference on Information, Communications and Signal Processing",ICICS,CORE2018,B,none,none,0806,0,N/A +"International Conference on Innovation in Architecture, Engineering and Construction",AEC,ERA2010,C,none,none,0905,0,N/A +International Conference on Innovations for Community Services (was Innovative Internet Computer Systems IICS until 2014),I4CS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iics,4601,0,N/A +International Conference on Integration of Artificial Intelligence and Operations Research Techniques in Constraint Programming for Combinatorial Optimization Problems,CPAIOR,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cpaior,4602,0,N/A +"International Conference on Intelligent Agents, Web Technologies, and Internet Commerce",IAWTIC,CORE2018,B,none,none,0806,0,N/A +International Conference on Intelligent and Advanced Systems,ICIAS,ERA2010,C,none,none,1005,0,N/A +International Conference on Intelligent Data Engineering and Automated Learning,IDEAL,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ideal,46,0,N/A +International Conference on Intelligent Pervasive Computing,IPC,CORE2018,C,none,none,0805,0,N/A +"International Conference on Intelligent Sensors, Sensor Networks and Information Processing",ISSNIP,ERA2010,B,none,none,0902,0,N/A +"International Conference on Intelligent Software Methodologies, Tools, and Techniques (was International Conference on Software Methods and Tools)",SoMeT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/somet,4612,0,N/A +International Conference on Intelligent Systems,ICIL,CORE2018,C,none,none,0801,0,N/A +International Conference on Intelligent Systems and Knowledge Engineering,ISKE,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/iske,4602,0,N/A +International Conference on Intelligent Systems Designs and Applications,ISDA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isda,4602,0,N/A +International Conference on Intelligent Text Processing and Computational Linguistics,CICLING,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/cicling,4602,0,N/A +International Conference on Intelligent Tutoring Systems,ITS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/its,4601,0,N/A +International Conference on Intelligent User Interfaces,IUI,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/iui,4608,0,N/A +"International Conference on Interaction Sciences: Information Technology, Culture and Human",ICIS,CORE2018,C,none,none,0806,0,N/A +International Conference on Interactive Digital Storytelling (2008 merger of 'ICVS International Conference on Virtual Storytelling' and 'TIDSE Technology for Interactive Digital Storytelling'),ICIDS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icids,4607,4,4.8 +International Conference on International and Communication Technologies,ICICTE,CORE2018,C,none,none,08,0,N/A +International Conference on Internet and Web Applications and Services,ICIW,CORE2023,C,none,none,4606,0,N/A +International Conference on Internet Computing,IC,CORE2018,B,none,none,0806,0,N/A +International Conference on Internet Computing in Science and Engineering,ICICSE,CORE2023,C,none,none,4606,0,N/A +International Conference on Internet Monitoring and Protection,ICIMP,CORE2023,C,none,none,4604,0,N/A +"International Conference on Internet of Things, Big Data and Security",IoTBDS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iotbd,4604,0,N/A +International Conference on Internet Technologies and Applications,ITA,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/ita,46,0,N/A +International Conference on IT Based Higher Education and Training,ITHET,CORE2018,C,none,none,,0,N/A +International Conference on Knowledge Discovery and Data Mining,WKDD,CORE2018,C,none,none,0804,0,N/A +International Conference on Knowledge Engineering and Knowledge Management,EKAW,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ekaw,4605,3,4.3 +International Conference on Knowledge Engineering and Ontology Development,KEOD,CORE2023,C,none,none,4605,0,N/A +"International Conference on Knowledge Science, Engineering and Management",KSEM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ksem,4602,0,N/A +International Conference on Knowledge-Based and Intelligent Information and Engineering Systems,KES,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/kes,4602,63,4.7 +International Conference on Knowledge-based Intelligent Electronic Systems,KIES,CORE2018,C,none,none,0801,0,N/A +International Conference on Language and Automata Theory and Applications,LATA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/lata,4613,0,N/A +International Conference on Leading Edge Manufacturing in 21st Century,,ERA2010,A,none,none,0910,0,N/A +International Conference on Learning Analytics and Knowledge,LAK,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/lak,4608,2,5.0 +International Conference on Learning Representations,ICLR,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/iclr,4611,0,N/A +International Conference on Legal Knowledge and Information Systems,JURIX,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/jurix,4601,0,N/A +International Conference on Liquid Atomization and Spray Systems,,ERA2010,A,none,none,0902,0,N/A +International Conference on Logic Programming,ICLP,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/iclp,4613,0,N/A +International Conference on Logic Programming and Non-monotonic Reasoning,LPNMR,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/lpnmr,4602,0,N/A +International Conference on Machine Learning,ICML,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/icml,4611,0,N/A +International Conference on Machine Learning and Applications,ICMLA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icmla,4611,4,2.0 +International Conference on Machine Learning and Cybernetics,ICMLC,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/icmlc,4611,0,N/A +International Conference on Machine Vision,ICMV,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icmv,4603,0,N/A +International Conference on Managed Programming Languages and Runtimes (was ManLang and previously Principles and Practice of Programming in Java: PPPJ),MPLR,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pppj,4612,0,N/A +International Conference on Management of Data,COMAD,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/comad,4605,0,N/A +International Conference on Management of Digital EcoSystems,MEDES,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/medes,4606,29,4.3 +International Conference on Management of Technology,IAMOT,ERA2010,C,none,none,10,0,N/A +International Conference on Massively Parallel Computing Systems,MPCS,CORE2018,B,none,none,0805,0,N/A +International Conference on Mathematical Foundations of Programming Semantics,MFPS,CORE2023,B,none,https://dblp.org/db/conf/mfps,4613,0,N/A +"International Conference on Mechanics of structures, Materials and System",,ERA2010,B,none,none,0910,0,N/A +International Conference on Medical Information  Visualisation,MediVis,CORE2018,C,none,none,0801,0,N/A +International Conference on Metal Forming,,ERA2010,A,none,none,0910,0,N/A +International Conference on Methods and Models in Automation and Robotics,MMAR,CORE2023,National:Poland,none,https://dblp.uni-trier.de/db/conf/mmar,4611,0,N/A +International Conference on Mobile and Ubiquitous Systems: Networks and Services,Mobiquitous,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/mobiquitous,4606,0,N/A +International Conference on Mobile Business,ICMB,CORE2018,C,none,none,0805,0,N/A +International Conference on Mobile Data Management,MDM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mdm,4605,1,3.0 +International Conference on Mobile Systems and Pervasive Computing,MobiSPC,CORE2023,Unranked,none,none,4606,0,N/A +"International Conference on Mobile Ubiquitous Computing, Systems, Services and Technologies",UBICOMM,CORE2023,C,none,none,4606,0,N/A +International Conference on Modal Analysis,,ERA2010,A,none,none,0905,0,N/A +International Conference on Model and Data Engineering,MEDI,CORE2023,C,none,https://dblp.org/db/conf/medi,4605,0,N/A +"International Conference on Model Driven Engineering Languages and Systems (Previously UML, changed in 2005)",MODELS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/models,4612,7,5.0 +International Conference on Model Transformation,ICMT,CORE2020,B,none,https://dblp.uni-trier.de/db/conf/icmt,4612,0,N/A +International Conference on Model-Driven Engineering and Software Development,MODELSWARD,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/modelsward,4606,0,N/A +"International Conference on Modeling, Simulation and Visualization Methods",MSV,ERA2010,C,none,none,10,0,N/A +International Conference on Modelling and Diagnostics For Advanced Engine Systems,,ERA2010,A,none,none,0902,0,N/A +International Conference on Modelling and Simulation,ECMS,CORE2023,Multiconference,See note,https://dblp.uni-trier.de/db/conf/ecms,4602,0,N/A +International Conference on Modelling Decisions for Artificial Intelligence,MDAI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mdai,4602,0,N/A +International Conference on Multi Agent Systems,ICMAS,CORE2008,A,none,none,,0,N/A +International Conference on Multimedia,ICMR,CORE2014,B,none,none,0803,0,N/A +International Conference on Multimedia Modelling,MMM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mmm,4603,0,N/A +International Conference on Multimedia Retrieval (previously MIR),ICMR,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mir,4603,0,N/A +International Conference on Multimodal Interaction (was International Conference on Multimodal Interfaces),ICMI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icmi,4608,1,4.0 +International Conference on Natural Computation,ICNC,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/icnc,4602,0,N/A +International Conference on Network and Service Management (amalgamation of DSOM and related workshops from 2010),CNSM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/cnsm,4606,0,N/A +International Conference on network and System Security,NSS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/nss,4604,0,N/A +International Conference on Network Protocols,ICNP,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/icnp,4606,1,5.0 +International Conference on Network Softwarization,NetSoft,CORE2023,B,none,https://dblp.org/db/conf/netsoft/,4606,0,N/A +International Conference on Networked Computing,INC,CORE2018,C,none,none,0805,0,N/A +International Conference on Networking and Mobile Computing,ICCNMC,ERA2010,C,none,none,1005,0,N/A +"International Conference on Networking, Sensing and Control",ICNSC,ERA2010,C,none,none,0902,0,N/A +International Conference on Networks and Communications,NetCoM,ERA2010,C,none,none,1005,0,N/A +International Conference on Neural Information Processing,ICONIP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iconip,4611,0,N/A +"International Conference on Neural, Parallel and Scientific Computations",NPSC,CORE2018,C,none,none,0801,0,N/A +International Conference on New Forming Technology,,ERA2010,A,none,none,0910,0,N/A +International Conference on New Trends of Information and Service Science,NISS,CORE2018,C,none,none,0806,0,N/A +International Conference on Next Generation Web Services Practices,NWESP,CORE2018,C,none,none,0806,0,N/A +International Conference on Next Generation Wired/Wireless Advanced Networking,NEW2AN,ERA2010,C,none,none,1005,0,N/A +International Conference on Numerical Methods in Industrial Forming Processes,,ERA2010,A,none,none,0910,0,N/A +International Conference on Object Oriented Information Systems,OOIS,CORE2018,C,none,none,,0,N/A +"International Conference on Ocean, Offshore and Arctic Engineering",,ERA2010,A,none,none,0911,0,N/A +International Conference on Operations Research,GOR,CORE2018,C,none,none,0802,0,N/A +International Conference on Operations Research and Enterprise Systems,ICORES,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icores,4602,0,N/A +International Conference on Optimization: Techniques And Applications,ICOTA,CORE2023,C,none,none,4602,0,N/A +International Conference on Pairing-based Cryptography,Pairing,CORE2023,C,none,none,4604,0,N/A +"International Conference on Parallel and Distributed Computing, Applications and Technologies",PDCAT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pdcat,4606,0,N/A +International Conference on Parallel and Distributed Processing Techniques and Applications,PDPTA,CORE2023,National: USA,none,none,4606,0,N/A +International Conference on Parallel and Distributed Systems,ICPADS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icpads,4606,0,N/A +International Conference on Parallel Architecture and Compilation Techniques,PACT,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/IEEEpact,4606,1,4.0 +International Conference on Parallel Processing,ICPP,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/icpp,4606,0,N/A +International Conference on Parallel Processing and Applied Mathematics,PPAM,CORE2023,National: Poland,none,https://dblp.uni-trier.de/db/conf/ppam,4606,4,4.7 +International Conference on Pattern Recognition,ICPR,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icpr,4603,0,N/A +International Conference on Pattern Recognition Applications and Methods,ICPRAM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icpram,4603,2,5.0 +International Conference on Persuasive Technology,Persuasive,CORE2018,B,none,https://dblp.uni-trier.de/db/conf/persuasive,0806,0,N/A +International Conference on Pervasive Computing (Joined with UbiComp from 2013),PERVASIVE,CORE2014,A*,none,none,0805,0,N/A +International Conference on Pervasive Computing and Applications,ICPCA,CORE2018,C,none,none,0805,0,N/A +International Conference on Pervasive Services,ICPS,CORE2018,C,none,none,0805,0,N/A +International Conference on Practical Applications of Computational Biology & Bioinformatics,PACBB,CORE2023,National(Spain),none,https://dblp.org/db/conf/pacbb,4602,0,N/A +International Conference on Practice and Theory in Public Key Cryptography,PKC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/pkc,4604,0,N/A +International Conference on Pressure Surges,,ERA2010,A,none,none,0905,0,N/A +International Conference on Principles and Practice of Constraint Programming,CP,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/cp,4602,0,N/A +International Conference on Principles and Practice of Declarative Programming,PPDP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ppdp,4613,0,N/A +International Conference on Principles of Distributed Systems,OPODIS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/opodis,4606,0,N/A +International Conference on Principles of Practice in Multi-Agent Systems (prior to 2009 was Pacific Rim International Workshop on Multi-Agents),PRIMA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/prima,4602,0,N/A +International Conference on Principles of Security and Trust,POST,CORE2021,Unranked,none,https://dblp.uni-trier.de/db/conf/post,4604,0,N/A +"International Conference on Probabilistic, Combinatorial, and Asymptotic Methods in the Analysis of Algorithms (was Conference on Analysis of Algorithms)",AofA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/aofa,4613,0,N/A +"International Conference on Probability, Statistics and Operational Research",PSOR,CORE2018,C,none,none,0802,0,N/A +International Conference on Process Mining,ICPM,CORE2023,B,none,https://dblp.org/db/conf/icpm/index.html,4605,0,N/A +International Conference on Product Research,,ERA2010,B,none,none,0910,0,N/A +International Conference on Provable Security,ProvSec,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/provsec,4604,0,N/A +International Conference on Qualitative Research in IT & IT in Qualitative Research,QualIT,CORE2018,B,none,none,0806,0,N/A +International Conference on Quality of Multimedia Experience,QoMEX,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/qomex/,4608,0,N/A +International Conference on Real-Time and Network Systems,RTNS,CORE2023,National: France,none,https://dblp.uni-trier.de/db/conf/rtns,4606,0,N/A +International Conference on Recent Advances in Information Technology and Applications,RAITA,CORE2018,C,none,none,08,0,N/A +International Conference on Recent Advances in Natural Language Processing,RANLP,CORE2023,National: bulgaria,none,https://dblp.uni-trier.de/db/conf/ranlp,4602,0,N/A +International Conference on Relational and AlgebraicMethods in Computer Science (was International Conference on Relational Methods in Computer Science RelMiCS),RAMiCS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/RelMiCS,4613,0,N/A +"International Conference on Relations, Orders and Graphs: Interaction with Computer Science",ROGICS,CORE2018,C,none,none,0802,0,N/A +International Conference on Reliable Software Technologies,Ada-Europe,CORE2023,Journal Published,none,https://dblp.uni-trier.de/db/conf/adaEurope,4612,0,N/A +International Conference on Research Challenges in Information Science,RCIS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/rcis,46,0,N/A +International Conference on Reversible Computation,RC,CORE2023,C,none,https://dblp.org/db/conf/rc/index.html,4613,0,N/A +International Conference on Rewriting Techniques and Applications (now merged with FSCD Formal Structures for Computation and Deduction),RTA,CORE2018,A,none,none,0802,0,N/A +International Conference on Risks and Security of Internet and Systems,CRiSIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/crisis,4604,0,N/A +"International Conference on Robotics, Vision, Signal Processing and Power Applications (was ROVPIA)",RoVISP,CORE2023,National: Malaysia,none,none,4603,0,N/A +International Conference on Runtime Verification (was workshop pre 2010),RV,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/rv,4612,6,4.2 +International Conference on Scientific and Statistical Data Base Management,SSDBM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ssdbm,4605,0,N/A +International Conference on Security and Privacy for Communication Networks,SecureComm,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/securecomm,4604,2,3.0 +International Conference on Security in Pervasive Computing,ICSPC,CORE2018,A,none,none,0806,0,N/A +International Conference on Security of Information and Networks,SIN,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/sin,4604,0,N/A +International Conference on Semantic and Digital Media Technologies,SAMT,CORE2018,C,none,none,0806,0,N/A +International Conference on Semantics Knowledge and Grid,SKG,CORE2021,National: China,none,https://dblp.uni-trier.de/db/conf/skg,4606,0,N/A +International Conference on Sequences and their Applications,SETA,CORE2023,C,See note,none,4604,0,N/A +International Conference on Service Oriented Computing,ICSOC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icsoc,4606,1,4.0 +International Conference on Shock and Impact Loads on Structures,,ERA2010,B,none,none,0905,0,N/A +International Conference on Similarity Search and Applications,SISAP,CORE2023,B,none,https://dblp.org/db/conf/sisap,4605,0,N/A +"International Conference on Simulation and Modeling Methodologies, Technologies and Applications",SIMULTECH,CORE2023,C,none,http://dblp.uni-trier.de/db/conf/simultech,4606,0,N/A +International Conference on Smart homes and health Telematics,ICOST,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icost,4601,0,N/A +International Conference on Software and Data Technologies,ICSoft,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icsoft,4612,0,N/A +International Conference on Software and System Processes (was ICSP prior to 2011),ICSSP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ispw,4612,1,5.0 +International Conference on Software Architecture (was previously WICSA),ICSA,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icsa,4612,11,4.9 +International Conference on Software Composition,SC,CORE2018,B,none,none,0803,0,N/A +International Conference on Software Development,SWDC,CORE2018,B,none,none,0803,0,N/A +International Conference on Software Engineering,ICSE,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/icse,4612,4,4.7 +International Conference on Software Engineering Advances,ICSEA,CORE2023,C,none,none,4612,0,N/A +International Conference on Software Engineering and Formal Methods,SEFM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sefm,4612,0,N/A +International Conference on Software Engineering and Knowledge Engineering,SEKE,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/seke,4612,0,N/A +International Conference on Software Engineering Theory and Practice,SETP,CORE2018,C,none,none,0803,0,N/A +"International Conference on Software Engineering, Artificial Intelligence, Networking and Parallel/Distributed Computing",SNPD,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/snpd,4612,0,N/A +International Conference on Software Engineering: Education and Practice,SEEP,CORE2018,B,none,none,,0,N/A +International Conference on Software Language Engineering,SLE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sle,4612,6,4.8 +International Conference on Software Quality Management,SQM,CORE2023,C,none,none,4612,0,N/A +International Conference on Software Reuse,ICSR,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icsr,4612,0,N/A +"International Conference on Software Testing, Verification and Validation",ICST,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icst,4612,5,4.8 +International Conference on Soil Mechanics and Geotechnical Engineering,ICSMGE,ERA2010,A,none,none,0905,0,N/A +International Conference on Spoken Language Processing,ICSLP,CORE2014,C,none,none,0801,0,N/A +International Conference on Steel Rolling,,ERA2010,A,none,none,0910,0,N/A +International Conference on Structural Health Monitoring of Intelligent Infrastructure,,ERA2010,A,none,none,0905,0,N/A +International Conference on Surface Finishing Technology and Surface Engineering,ICSFT2008,ERA2010,A,none,none,0910,0,N/A +International Conference on Sustainability in Energy and Buildings,SEB,ERA2010,A,none,none,1201,0,N/A +International Conference on Sustainable Construction Materials and Technologies,SCMT,ERA2010,B,none,none,1202,0,N/A +International Conference on Sustainable Energy Information Technology,SEIT,CORE2023,Unranked,none,none,4601,0,N/A +International Conference on Systems Engineering,ICSEng,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/icseng,46,0,N/A +"International Conference on Systems Research, Informatics and Cybernetics",ICSRIC,CORE2018,C,none,none,0806,0,N/A +International Conference on Systems Thinking in Management,STM,CORE2018,C,none,none,0806,0,N/A +International Conference on Technical Debt,TechDebt,CORE2023,B,none,https://dblp.org/db/conf/icse/techdebt2019.html,4612,0,N/A +International Conference on Technology and Business Management,ICTBM,CORE2018,C,none,none,0806,0,N/A +International Conference on Technology Education,TE,CORE2018,C,none,none,,0,N/A +International Conference on Technology of Plasticity,,ERA2010,A,none,none,0910,0,N/A +International Conference on Telecom Technology and Applications,ICTTA,ERA2010,C,none,none,1005,0,N/A +International Conference on Temporal Logic,ICTL,CORE2018,A,none,none,0802,0,N/A +International Conference on Testing Software and Systems,ICTSS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pts,4612,0,N/A +International Conference on Tests and Proofs,TAP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/tap,4612,0,N/A +International Conference on the Application and Theory of Petri Nets and Concurrency,Petri Nets,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/apn,4606,0,N/A +International Conference on the Foundations of Digital Games,FDG,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/fdg,4607,0,N/A +International Conference on the Principles of Knowledge Representation and Reasoning,KR,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/kr,4602,0,N/A +International Conference on the Quality of Information and Communications Technology,QUATIC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/quatic,4612,1,5.0 +International Conference on the Simulation and Synthesis of Living Systems,ALIFE,CORE2023,C,none,none,4602,0,N/A +International Conference on the Statistical Analysis of Textual Data,JADT,CORE2023,C,none,none,4602,0,N/A +International Conference on the Theory and Application of Cryptographic Techniques,EuroCrypt,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/eurocrypt,4604,0,N/A +International Conference on the Theory and Application of Cryptology and Information Security,ASIACRYPT,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/asiacrypt,4604,0,N/A +International Conference on the Theory of Information Retrieval,ICTIR,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/ictir,4605,0,N/A +International Conference on Theorem Proving with Analytic Tableaux and Related Methods,TABLEAUX,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/tableaux,4613,0,N/A +International Conference on Theoretical and Mathematical Foundations of Computer Science,TMFCS,CORE2018,C,none,none,0802,0,N/A +International Conference on Theoretical and Methodological Issues in machine Translation,TMI,CORE2018,B,none,none,0801,0,N/A +International Conference on Theory and Applications of Computational Science,TACS,CORE2018,C,none,none,0802,0,N/A +International Conference on Theory and Applications of Satisfiability Testing,SAT,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/sat,4602,2,5.0 +International Conference on Theory and Practice of Digital Libraries (was ECDL until 2010),TPDL,CORE2023,B,none,https://dblp.org/db/conf/ercimdl,4605,0,N/A +International Conference on Tools with Artificial Intelligence,ICTAI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ictai,4602,1,5.0 +International Conference on Trust Management,iTrust,CORE2018,C,none,none,0803,0,N/A +"International Conference on Trust, Privacy and Security in Digital Business",TrustBus,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/trustbus,4604,0,N/A +"International Conference on Trust, Security and Privacy in Computing and Communications",TrustCom,CORE2023,B,none,https://dblp.org/db/conf/trustcom,4604,1,4.0 +International Conference on Ubiquitous Intelligence and Computing,UIC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/uic,4606,0,N/A +International Conference on Unconventional Computation and Natural Computation (was International Conference on Unconventional Computation),UC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/uc,4613,0,N/A +International conference on unsaturated soils,Unsat,ERA2010,A,none,none,0905,0,N/A +International Conference on Urban Drainage,,ERA2010,A,none,none,0905,0,N/A +"International Conference on User Modelling, Adaptation, and Personalization (was AH and UM)",UMAP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/um,4608,3,5.0 +International Conference on Vehicle Technology and Intelligent Transport Systems,VEHITS,CORE2023,C,none,https://dblp.org/db/conf/vehits,4606,0,N/A +International Conference on Very Large Databases,VLDB,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/vldb,4605,0,N/A +International Conference on Virtual Execution Environments,VEE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/vee,4606,0,N/A +International Conference on Virtual Rehabilitation,ICVR,CORE2023,Unranked,none,none,4601,0,N/A +International Conference on Virtual Storytelling (merged into ICIDS in 2008),ICVS,ERA2010,C,none,none,0899,1,N/A +International Conference on Virtual Systems and MultiMedia,VSMM,CORE2020,B,none,https://dblp.uni-trier.de/db/conf/vsmm,4607,0,N/A +International Conference on Vision Theory and Applications (Joined with GRAPP from 2008),VISAPP,CORE2014,C,none,none,0801,0,N/A +International Conference on Visual Information Systems,VISUAL,CORE2018,C,none,none,0801,0,N/A +International Conference on VLSI Design,VLSID,CORE2023,National: India,none,https://dblp.uni-trier.de/db/conf/vlsid,4606,1,5.0 +International Conference on Water Sensitive Urban Design,,ERA2010,B,none,none,0905,0,N/A +International Conference on Web and Social Media,ICWSM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/icwsm,4601,3,3.7 +International Conference on Web Engineering,ICWE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/icwe,4605,4,4.5 +International Conference on Web Information Systems and Technologies,WEBIST,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/webist,46,0,N/A +International Conference on Web Information Systems Engineering,WISE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/wise,4605,0,N/A +International Conference on Web-Age Information Management,WAIM,CORE2017,C,none,https://dblp.uni-trier.de/db/conf/waim,0806,0,N/A +International Conference on Web-based Modelling and Simulation,WebSim,CORE2018,C,none,none,0801,0,N/A +International Conference on Wind Engineering,,ERA2010,A,none,none,0905,0,N/A +International Conference on Wired / Wireless Internet Communications,WWIC,ERA2010,B,none,none,1005,0,N/A +"International Conference on Wireless Communications, Networking and Mobile Computing",WiCOM,ERA2010,C,none,none,1005,0,N/A +International Conference on Wireless Networks and Mobile Communications,WINCOM,CORE2023,National:Morocco,none,https://dblp.uni-trier.de/db/conf/wincom,4606,0,N/A +International Conference on Worldwide Computing and Its Applications,WWCA,CORE2018,C,none,none,0899,0,N/A +International Conference Software and Systems Engineering and their Applications,ICSSEA,CORE2018,C,none,none,0803,0,N/A +"International Conference: Sciences of Electronics, Technologies of information and Telecommunication",SETIT,CORE2023,Unranked,none,none,46,1,4.0 +"International Conferences in Central Europe on Computer Graphics, Visualization and Computer Vision",WSCG,CORE2023,National: Czecholslovakia,none,none,4607,0,N/A +International Conferences on Advances in Steel Structures,,ERA2010,A,none,none,0905,0,N/A +International Conferences on Progress of Machining Technology,,ERA2010,A,none,none,0910,0,N/A +International Congress Aeronautical Sciences,,ERA2010,B,none,none,0901,0,N/A +International Congress of Chinese Mathematicians,ICCM,CORE2018,C,none,none,0802,0,N/A +International Congress of Construction History,ICCH,ERA2010,B,none,none,1201,0,N/A +International Congress of Mathematicians,ICM,CORE2018,C,none,none,0802,0,N/A +International Congress of Theoretical and Applied Mechanics,,ERA2010,A,none,none,0913,0,N/A +International Congress on Computational and Applied Mathematics,ICCAM,CORE2023,C,none,none,4613,0,N/A +International Congress on Fracture,,ERA2010,A,none,none,0913,0,N/A +International Congress on Industrial and Applied Mathematics,,ERA2010,B,none,none,0910,0,N/A +International Congress on Modelling and Simulation,MODSIM,CORE2023,Australasian C,none,none,4602,0,N/A +International Construction Management and Economics Conference,SIBRAGEC,ERA2010,B,none,none,1202,0,N/A +International Corrosion Congress,,ERA2010,A,none,none,0913,0,N/A +"International Council for Research and Innovation in Building and Construction (CIB) Meetings, Workshops, Symposia, Conferences",CIB,ERA2010,A,none,none,1202,0,N/A +International Crashworthiness Conference,,ERA2010,B,none,none,0902,0,N/A +International Cross-Domain Conference for Machine Learning and Knowledge Extraction,CD-MAKE,CORE2023,C,none,https://dblp.org/db/conf/cdmake,4602,0,N/A +International CSI Computer Conference,CSICC,CORE2023,National: Iran,none,none,4613,0,N/A +International Database Conference (HK CS),IDC(W),CORE2017,L,none,none,,0,N/A +International Database Engineering and Applications Symposium,IDEAS,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/ideas,4605,0,N/A +International European Conference on Parallel and Distributed Computing (was International Conference on Parallel Processing),EuroPar,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/europar,4606,2,5.0 +International Fatigue Congress,,ERA2010,A,none,none,0901,0,N/A +International Federation of Automatic Control World Congress,IFAC,CORE2018,C,none,none,,0,N/A +International Ferroalloy Congress,,ERA2010,A,none,none,0914,0,N/A +International FLINS Conference on Robotics and Artificial Intelligence (was International Fuzzy Logic and Intelligent technologies in Nuclear Science Conference),FLINS,CORE2023,C,none,none,4602,0,N/A +International Forum on Applied Wearable Computing,IFAWC,CORE2018,C,none,none,0806,0,N/A +International French Speaking Conference on Logic and Constraint Programming,JFPLC,CORE2018,C,none,none,0802,0,N/A +International Frontiers of Algorithmics Workshop,FAW,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/faw,4613,0,N/A +International Geostatistics Congress,,ERA2010,A,none,none,0914,0,N/A +International Group for Lean Construction Conference,IGLC,ERA2010,A,none,none,1202,0,N/A +International Heavy Haul Association Conference,,ERA2010,A,none,none,0913,0,N/A +International Heavy Haul Conference,,ERA2010,A,none,none,0913,0,N/A +International ICSC Congress on Intelligent Systems and Applications,IICISA,CORE2018,C,none,none,0801,0,N/A +International IEEE Security in Storage Workshop,SISW,CORE2018,C,none,none,0803,0,N/A +International IEEE Workshop on Software Evolvability,SE,CORE2018,C,none,none,0803,0,N/A +International Joint Conference CAAP/FASE on Theory and Practice of Software Development,TAPSOFT,CORE2018,C,none,none,0803,0,N/A +International Joint Conference on Artificial Intelligence,IJCAI,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/ijcai,4602,1,5.0 +International Joint Conference on Automated Reasoning,IJCAR,CORE2023,A,none,https://dblp.org/db/conf/ijcar,4602,0,N/A +"International Joint Conference on Autonomous Agents and Multiagent Systems (previously the International Conference on Multiagent Systems, ICMAS, changed in 2000)",AAMAS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/ifaamas,4602,2,5.0 +International Joint Conference on Biometrics,IJCB,CORE2023,B,none,https://dblp.org/db/conf/icb/index.html,4603,0,N/A +International Joint Conference on Computational Intelligence,IJCCI,CORE2023,C,none,https://dblp.org/db/conf/ijcci,4602,0,N/A +International Joint Conference on Computational Linguistics,IJCNLP2,CORE2018,B,none,none,,0,N/A +International Joint Conference on e-Business and Telecommunications,ICETE,CORE2018,C,none,none,0806,0,N/A +"International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management",IC3K,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ic3k,4605,0,N/A +International Joint Conference on Natural Language Processing,IJCNLP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ijcnlp,4602,0,N/A +International Joint Conference on Qualitative and Quantitative Practical Reasoning,ESQARU,CORE2018,A,none,none,0801,0,N/A +International Joint Conference on Rough Sets (2014 International Conference on Rough Sets and Current Trends in Computing joined with 3 others),IJCRS (was RSCTC),CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ijcrs,4602,0,N/A +International Joint Conference on Rules and Reasoning,RuleML+RR,CORE2023,B,none,https://dblp.org/db/conf/rulemlrr,4602,0,N/A +International Joint Workshop on Computational Creativity,IJWCC,ERA2010,B,none,none,1203,0,N/A +International KES Conference on Agents and Multiagent systems - Technologies and Applications,KES AMSTA,CORE2023,C,none,none,4602,2,5.0 +International Logic Programming Symposium,ILPS,CORE2018,A,none,none,0801,0,N/A +International Machine Vision and Image Processing Conference,IMVIP,CORE2023,National: ireland,none,none,4603,0,N/A +International Manufacturing Leaders Forum,,ERA2010,C,none,none,0910,0,N/A +International Maritime Conference,,ERA2010,B,none,none,0911,0,N/A +"International Meeting on High Performance Computing for Computational Science (previously International Meeting Vector and Parallel Processing, changed in 2002)",VECPAR,CORE2018,B,none,https://dblp.uni-trier.de/db/conf/vecpar,0805,0,N/A +International Mineral Processing Congress,,ERA2010,A,none,none,0914,0,N/A +International Multi-Conference on Engineering and Technological Innovation,IMETI,ERA2010,C,none,none,09,0,N/A +International Natural Language Generation Conference,INLG,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/inlg,4602,0,N/A +International Network for Tropical Architecture conferences,INTA,ERA2010,C,none,none,1201,0,N/A +International Network Optimization Conference,INOC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/inoc,4606,0,N/A +International NZ Conference on Computer-Human Interaction,SIGCHI-NZ,CORE2017,Australasian,none,none,,0,N/A +International Parallel Computing Workshop,PCW,CORE2018,C,none,none,0805,0,N/A +International Picture Coding Symposium,PCS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pcs,4603,0,N/A +International Pipeline Conference,,ERA2010,A,none,none,0913,0,N/A +International Planning History Society,IPHS,ERA2010,B,none,none,1205,0,N/A +International Postgraduate Research Conference (Research Institute for the Built and Human Environment (BuHu)),BuHu IPGRC,ERA2010,C,none,none,1202,0,N/A +International Python Conference,IPythC,CORE2018,C,none,none,0803,0,N/A +International Research Council on the Biomechanics of Impact,,ERA2010,A,none,none,0902,0,N/A +International Research Week Conference,IPGRC,ERA2010,C,none,none,1202,0,N/A +International Science Conference on Computer Networks,CN,CORE2021,National:Poland,none,https://dblp.org/db/conf/cn,4606,0,N/A +International Semantic Web Conference,ISWC,CORE2023,A,none,https://dblp.org/db/conf/semweb,4605,5,4.6 +International Society of Rock Mechanics Series of Symposia and Conferences,ISRM,ERA2010,A,none,none,0905,0,N/A +International Symposium 'Problems of Redundancy in Information and Control Systems',Redundancy,CORE2023,National Russia,none,none,4604,0,N/A +International Symposium Component-Based Software Engineering,CBSE,CORE2017,B,none,none,0803,0,N/A +International Symposium of Automation and Robotics in Construction,,ERA2010,A,none,none,0905,0,N/A +International Symposium on 3D Data Processing Visualization and Transmission,3DPVT,CORE2018,C,none,none,0801,0,N/A +International Symposium on Active Control of Sound and Vibration,,ERA2010,A,none,none,0913,0,N/A +International Symposium on Advanced DB Technologies and Integration,ADTI,CORE2018,B,none,none,0804,0,N/A +International Symposium on Advanced Technology for Plasticity,,ERA2010,A,none,none,0910,0,N/A +International Symposium on Advances in Abrasive Technology,,ERA2010,A,none,none,0910,0,N/A +International Symposium on Algorithmic Game Theory,SAGT,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sagt,4613,0,N/A +International Symposium on Algorithms and Computation,ISAAC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/isaac,4613,1,5.0 +International Symposium on Algorithms and Experiments for Wireless Networks,Algosensors,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/algosensors,4606,0,N/A +International Symposium on Applications and the Internet,SAINT,CORE2018,C,none,none,0899,0,N/A +"International Symposium on Applied Algebra, Algebraic Algorithms and Error-Correcting Codes",AAAAECC,CORE2018,B,none,none,0802,0,N/A +International Symposium on Applied Computational Intelligence and Informatics,SACI,CORE2023,National: Romania,none,https://dblp.uni-trier.de/db/conf/saci,4602,0,N/A +International Symposium on Applied Machine Intelligence and Informatics,SAMI,CORE2023,National: slovakia,none,none,4602,0,N/A +International Symposium on Artificial Intelligence and Mathematics,ISAIM,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/isaim,4602,0,N/A +International Symposium on Artificial Life and Robotics,AROB,CORE2023,C,none,none,4602,0,N/A +"International Symposium on Audio, Video, Image Processing and Intelligent Applications",ISAVIIA,CORE2018,C,none,none,0801,0,N/A +International Symposium on Automated Technology for Verification and Analysis,ATVA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/atva,4612,0,N/A +International Symposium on Automation and Robotics in Construction,ISARC,CORE2023,C,none,none,4602,0,N/A +International Symposium on Autonomous Decentralized Systems,ISADS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isads,4606,0,N/A +International Symposium on Cavitation,,ERA2010,B,none,none,0915,0,N/A +International Symposium on Circuits and Systems,CIRSYS,CORE2018,C,none,none,1006,1,1.0 +International Symposium on Code Generation and Optimization,CGO,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/cgo,4612,0,N/A +International Symposium on Collaborative Technologies and Systems,CTS,CORE2018,C,none,none,0805,0,N/A +International Symposium on Combinatorial Optimisation,ISCO,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iscopt,4613,1,5.0 +International Symposium on Combustion,,ERA2010,A,none,none,0913,0,N/A +International Symposium on Communications and Information Technologies,ISCIT,ERA2010,B,none,none,1005,0,N/A +International Symposium on Computational Geomechanics,,ERA2010,A,none,none,0905,0,N/A +International Symposium on Computational Geometry,SoCG,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/compgeom,4613,2,5.0 +International Symposium on Computational Life Science,CompLife,CORE2018,B,none,none,0801,0,N/A +International Symposium on Computer and Information Sciences,ISCIS,CORE2020,C,none,https://dblp.uni-trier.de/db/conf/iscis,46,0,N/A +International Symposium on Computer Architecture and High Performance Computing,SBAC-PAD,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/sbac-pad,4606,0,N/A +International Symposium on Computer Design,COMPDES,CORE2018,C,none,none,1005,0,N/A +International Symposium on Cooperative Database Systems for Advanced Applications,CODAS,CORE2018,C,none,none,0804,0,N/A +"International Symposium on Data, privacy and E-Commerce",ISDPE,CORE2018,C,none,none,0803,0,N/A +International Symposium on Distributed Computing (was WDAG),DISC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/wdag,4606,0,N/A +International Symposium on Distributed Simulation and Real Time Applications,DS-RT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/dsrt,4606,0,N/A +International Symposium on Empirical Software Engineering,ISESE,CORE2018,B,none,none,0803,0,N/A +International Symposium on Empirical Software Engineering and Measurement,ESEM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/esem,4612,1,5.0 +"International Symposium on Environmental Vibrations: Prediction, Monitoring, Mitigation and Evaluation",,ERA2010,B,none,none,0905,0,N/A +International Symposium on Experimental Algorithms,SEA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/wea,4613,0,N/A +International Symposium on Fault-Tolerant Computing,FTCS,ERA2010,C,none,none,0905,0,N/A +International Symposium on Formal Methods (was Formal Methods Europe FME),FM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/fm,4612,1,4.0 +International Symposium on Foundations of Intelligent Systems,ISMIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ismis,4602,0,N/A +International Symposium on frontiers in offshore geotechnics,,ERA2010,B,none,none,0905,0,N/A +International Symposium on Functional and Logic Programming,FLOPS,CORE2023,National: Japan,none,https://dblp.uni-trier.de/db/conf/flops,4613,0,N/A +International Symposium on Fundamentals of Computation Theory,FCT,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/fct,4613,1,4.0 +International Symposium on Future Software Technology,ISFST,CORE2018,C,none,none,0803,0,N/A +International Symposium on Grids and Clouds (was International Symposium on Grid Computing),ISGC,CORE2023,C,none,none,4606,0,N/A +International Symposium on High Performance Computer Architecture,HPCA,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/hpca,CSE,0,N/A +International Symposium on Information and Communication Technologies,ISICT,CORE2020,C,none,https://dblp.uni-trier.de/db/conf/isict,46,0,N/A +International Symposium on Information Assurance and Security,IAS,CORE2023,C,none,none,4604,0,N/A +International Symposium on Information Processing,ISIP,CORE2018,C,none,none,0806,0,N/A +International Symposium on Information Theory and Its Applications,ISITA,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/isita,4613,0,N/A +International Symposium on Innovations in Intelligent Systems and Applications,INISTA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/inista,4602,0,N/A +International Symposium on Intelligent and Interactive Multimedia: Systems and Services,KES IIMSS,CORE2020,C,none,https://dblp.uni-trier.de/db/conf/iimss,4603,0,N/A +"International Symposium on Intelligent Multimedia, Video and Speech Processing",ISIMP,CORE2014,C,none,none,1006,0,N/A +International Symposium on Intelligent Systems and Informatics,SISY,CORE2023,National: serbia,none,https://dblp.uni-trier.de/db/conf/sisy,4602,0,N/A +International Symposium on Latin American Theoretical Informatics,LATIN,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/latin,4613,2,4.0 +"International Symposium on Leveraging Applications of Formal Methods, Verification and Validation",ISoLA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isola,4612,0,N/A +International Symposium on Logic-based Program Synthesis and Transformation,LOPSTR,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/lopstr,4613,0,N/A +International Symposium on Mathematical Foundations of Computer Science,MFCS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/mfcs,4613,1,5.0 +International Symposium on Mathematical Morphology,ISMM,CORE2018,B,none,none,0801,0,N/A +International Symposium on Memory Management,ISMM,CORE2023,C,none,https://dblp.org/db/conf/iwmm,4606,0,N/A +International Symposium on Microarchitecture,MICRO,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/micro/index.html,CSE,4,5.0 +"International Symposium on Modelling and Optimization in Mobile, Ad Hoc, and Wireless Networks",WiOpt,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/wiopt,4606,0,N/A +"International Symposium on Networks, Computers and Communications",ISNCC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isncc,4606,2,5.0 +International Symposium on Neural Networks,ISNN,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/isnn,4611,1,4.0 +"International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software",Onward,CORE2023,C,none,https://dblp.org/db/conf/onward,4612,0,N/A +International Symposium on Next Generation Data Base Systems and Applications,NGDB,CORE2018,C,none,none,0804,0,N/A +International Symposium on Object Technologies for Advanced Software,ISOTAS,CORE2018,C,none,none,0803,0,N/A +International Symposium on Open Collaboration (was International Symposiums on Wikis),OPENSYM,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/wikis,4612,0,N/A +International Symposium on Parallel and Distributed Computing,ISPDC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/ispdc,4606,0,N/A +"International Symposium on Parallel Architectures, Algorithms and Networks",I-SPAN,CORE2020,B,none,https://dblp.uni-trier.de/db/conf/ispan,4606,0,N/A +International Symposium on Parameterized and Exact Computation (was IWPEC pre 2004),IPEC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/iwpec,4613,0,N/A +INTERNATIONAL SYMPOSIUM ON PERVASIVE DISPLAYS,PerDis,CORE2021,B,none,https://dblp.org/db/conf/perdis,4608,0,N/A +International Symposium on Physical Design,PHYSDES,CORE2018,C,none,none,,0,N/A +International Symposium on Plasticity and Its Current Applications,,ERA2010,A,none,none,0910,0,N/A +International Symposium on Robotics,ISR,CORE2018,A,none,https://dblp.uni-trier.de/db/conf/isr,0801,0,N/A +International Symposium on Robotics Research,ISRR,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/isrr,4602,0,N/A +International Symposium on Search Based Software Engineering,SSBSE,CORE2023,B,none,https://dblp.org/db/conf/ssbse,4612,0,N/A +International Symposium on Software Engineering for Adaptive and Self-Managing Systems,SEAMS,CORE2023,A,none,https://dblp.org/db/conf/seams,4612,2,2.0 +"International Symposium on Software Engineering: Theories, Tools, and Applications",SETTA,CORE2023,National:China,none,https://dblp.uni-trier.de/db/conf/setta,4612,0,N/A +International Symposium on Software Reliability Engineering,ISSRE,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/issre,4612,1,5.0 +International Symposium on Software Testing and Analysis,ISSTA,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/issta,4612,0,N/A +International Symposium on Spatial and Temporal Databases,SSTD,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ssd,4601,0,N/A +International Symposium on Spatial Data Handling,SDH,CORE2023,C,none,none,4601,0,N/A +International Symposium on Spatial Data Infrastructures,ISSDI,CORE2018,C,none,none,0909,0,N/A +International Symposium on Spatial Data Quality,ISSDQ,CORE2023,C,none,none,4601,0,N/A +International Symposium on String Processing and Information Retrieval,SPIRE,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/spire,4605,1,5.0 +International Symposium on Structural Engineering,,ERA2010,B,none,none,0905,0,N/A +International Symposium on Symbolic and Algebraic Computation,ISSAC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/issac,4613,0,N/A +International Symposium on Symbolic and Numeric Algorithms for Scientific Computing,SYNASC,CORE2023,National: romania,none,https://dblp.uni-trier.de/db/conf/synasc,4613,1,3.0 +International Symposium on Technology and Society,ISTAS,CORE2023,C,none,none,46,0,N/A +International Symposium on Temporal Representation and Reasoning,TIME,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/time,4602,0,N/A +International Symposium on the Mathematical Theory of Networks and Systems,MTNS,CORE2023,C,none,none,4606,0,N/A +International Symposium on Theoretical Aspects of Computer Science,STACS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/stacs,4613,2,4.0 +International Symposium on Theoretical Aspects of Software Engineering,TASE,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/tase,4612,0,N/A +International Symposium on Ubiquitous Virtual Reality,ISUVR,CORE2023,National: S. Korea,none,none,4607,0,N/A +International Symposium on Vehicle System Dynamics,,ERA2010,A,none,none,0913,0,N/A +International Symposium on Visual Computing,ISVC,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/isvc,4607,0,N/A +International Symposium on Voronoi diagrams in Science and Engineering,ISVD,CORE2018,C,none,none,0802,0,N/A +International Symposium on Wireless Personal Multimedia Communications,WPMC,ERA2010,C,none,none,1005,0,N/A +International Telecommunication Networks and Applications Conference (was Australian Telecommunication Networks and Applications Conference),ITNAC,CORE2023,Australasian C,none,https://dblp.uni-trier.de/db/conf/itnac,4606,6,4.8 +International Teletraffic Congress,ITC,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/teletraffic,4606,0,N/A +International Towing Tank Conference,,ERA2010,A,none,none,0911,0,N/A +International Tribology Conference in Australia,,ERA2010,A,none,none,0910,0,N/A +International Urban Design Conference,IUDC,ERA2010,C,none,none,1205,0,N/A +International Visualization in Transportation Symposium,TRB,CORE2023,National: USA,none,none,4608,0,N/A +International Web Conference,IWC,CORE2018,C,none,none,0806,0,N/A +International Wireless Internet Conference,WiCon,ERA2010,C,none,none,1005,0,N/A +International Wordnet Conference (Global Wordnet Conference),GWC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/wordnet,4605,0,N/A +International Work-Conference on Artificial and Natural Neural Networks,IWANN,CORE2023,National: Spain,none,https://dblp.uni-trier.de/db/conf/iwann,4611,0,N/A +International Work-conference on the Interplay between Natural and Artificial Computation,IWINAC,CORE2023,National,none,https://dblp.uni-trier.de/db/conf/iwinac,4602,0,N/A +International Workshop in Software Measurement (Joined with Mensura from 2007),IWSM,CORE2014,C,none,none,0804,0,N/A +International Workshop of the Initiative for the Evaluation of XML Retrieval,INEX,CORE2018,C,none,none,0803,0,N/A +International Workshop on Abstract State Machines,ASM(W),CORE2018,C,none,none,0802,0,N/A +International Workshop on Advanced Architectures and Algorithms for Internet Delivery and Applications,AAA-IDEA,CORE2018,C,none,none,0806,0,N/A +International Workshop on Agents and Data Mining Interaction,ADMI,CORE2020,B,none,https://dblp.uni-trier.de/db/conf/admi,4602,0,N/A +International Workshop on Algebraic and Combinatorial Coding Theory,ACCT,CORE2023,National,none,none,4613,0,N/A +"International Workshop on Aliasing, Confinement and Ownership",IWACO,CORE2018,C,none,none,0803,0,N/A +International Workshop on Ant Colony,ANTS,CORE2018,B,none,none,0801,0,N/A +International Workshop on Approximation Algorithms for Combinatorial Optimization Problems and International Conference on Randomization and Computation,APPROX/RANDOM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/approx,4613,0,N/A +International Workshop on Artificial Intelligence and Statistics,WAIS,CORE2018,B,none,none,,0,N/A +International Workshop on Boolean Functions: Cryptography and Applications,BFCA,CORE2018,C,none,none,0804,0,N/A +International Workshop on Business Process Design,BPD,CORE2018,C,none,none,0806,0,N/A +International Workshop on Business Process Intelligence,BPI,CORE2018,C,none,none,0806,0,N/A +"International Workshop on Business Process Modelling, Development, and Support",BPMDS,CORE2018,C,none,none,0806,3,3.5 +International Workshop on C# and .NET Technologies,C#,CORE2018,C,none,none,0803,0,N/A +International Workshop on Coding and Cryptography,WCC,CORE2020,B,none,https://dblp.uni-trier.de/db/conf/wcc,4604,0,N/A +International Workshop on Combinations of Intelligent Methods and Applications,CIMA,CORE2023,C,none,none,4602,0,N/A +International Workshop on Combinatorial Algorithm,IWOCA,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/iwoca,4613,1,4.0 +International Workshop on Combinatorial Image Analysis: Theory and Applications,IWCIA,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iwcia,4603,0,N/A +International Workshop on Comparative Evaluation in Requirements Engineering,CERE,CORE2018,C,none,none,0803,0,N/A +International Workshop on Computer-Aided Software Eng,IWCASE,CORE2018,B,none,none,0803,0,N/A +"International Workshop on Coordination, Organizations, Institutions, Norms and Ethics for Governance of Multi-Agent Systems (Ethics added 2020)",COINE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/coin-ws/,4602,2,4.0 +International Workshop on Critical Information Infrastructures Security,CRITIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/critis,4604,0,N/A +International Workshop on Data Management on New Hardware,DaMoN,CORE2023,C,none,https://dblp.org/db/conf/damon,4605,0,N/A +International Workshop on Data Warehousing and OLAP,DOLAP,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/dolap,4605,0,N/A +International Workshop on Developments in Computational Models,DCM,CORE2020,C,none,https://dblp.uni-trier.de/db/conf/dcm,4613,0,N/A +International Workshop on Digital Watermarking,IWDW,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iwdw,4604,0,N/A +International Workshop on Distributed Object Management,IWDOM,CORE2018,C,none,none,0803,0,N/A +International Workshop on Document Analysis Systems,DAS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/das,4605,0,N/A +International Workshop on Domain Driven Data Mining,DDDM,CORE2018,C,none,none,0804,0,N/A +International Workshop on Economics-Driven Software Engineering Research,EDSER,CORE2018,C,none,none,0803,0,N/A +International Workshop on Efficient Algorithms,WEA,CORE2018,B,none,none,0802,0,N/A +International Workshop on Enterprise and Organizational Modelling and Simulation,EOMAS,CORE2023,C,none,none,4612,0,N/A +International Workshop on Entertainment Computing,WEC,CORE2018,C,none,none,0806,0,N/A +International Workshop on Evolution and Change in Data Management,ECDM,CORE2018,C,none,none,0804,0,N/A +International Workshop on Fast Software Encryption,FSE,CORE2023,Journal Published,none,none,4604,0,N/A +International Workshop on Formal Methods for interactive Systems,FMIS,CORE2023,C,none,none,4612,0,N/A +International Workshop on Formal Methods for Parallel Programming: Theory and Applications,FMPPTA,CORE2018,C,none,none,0802,0,N/A +International Workshop on Foundations for Secure/Survivable Systems and Networks,FSSSSN,ERA2010,C,none,none,1005,0,N/A +International Workshop on Foundations of Models and Languages for Data and Objects,FMLDO,CORE2018,C,none,none,0804,0,N/A +International Workshop on Foundations of Object-Oriented Languages,FOOL,CORE2018,C,none,none,0803,0,N/A +International Workshop on Functional and Constraint Logic Programming,WFLP,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/wflp,4612,0,N/A +International Workshop on Genetic and Evolutionary Fuzzy Systems,GEFS,CORE2018,C,none,none,0801,0,N/A +International Workshop on Global Optimization,GO,CORE2018,C,none,none,0802,0,N/A +International Workshop on Graph-Theoretic Concepts in Computer Science,WG,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/wg,4613,0,N/A +International Workshop on Group-Oriented Cryptographic Protocols,GOCP,CORE2018,C,none,none,0804,0,N/A +International workshop on High-Level Parallel Programming and Applications,HLPP,CORE2023,C,none,none,4606,0,N/A +International Workshop on High-Level Parallel Programming Models and Supportive Environments,HIPS,CORE2023,C,none,none,4606,0,N/A +International Workshop on Hot topics in Peer-to-Peer Systems,HotP2P,CORE2018,C,none,none,0805,0,N/A +"International Workshop on Human Aspects in Ambient Intelligence: Agent Technology, Human-Oriented Knowledge and Applications",HAI,CORE2018,C,none,none,0801,0,N/A +International Workshop on Image Analysis and Information Fusion,IAIF,CORE2018,C,none,none,0801,0,N/A +"International Workshop on Incorporating COTS Software into Software Systems, Tools and Techniques",IWICSS,CORE2018,C,none,none,0804,0,N/A +International Workshop on Information Security Applications,WISA,CORE2023,National: korea,none,https://dblp.uni-trier.de/db/conf/wisa,4604,0,N/A +International Workshop on Intelligent Agents,IWIA,CORE2018,C,none,none,0801,0,N/A +International Workshop on Interactive Entertainment,IDET,CORE2018,C,none,none,0806,0,N/A +International Workshop on Issues in the Theory of Security,WITS,CORE2018,C,none,none,0803,0,N/A +International Workshop on Knowledge Discovery from Data Streams,IWKDDS,CORE2018,C,none,none,0801,0,N/A +International Workshop on Logic and Complexity in Computer Science,LCCS,CORE2018,C,none,none,0802,0,N/A +International Workshop on Logic Programming and Multi-Agents,LPMA,CORE2018,B,none,none,,0,N/A +International Workshop on Metamodelling - Utilization in Software Engineering,MUSE,CORE2018,C,none,none,0803,0,N/A +International Workshop on Middleware for Grid Computing,MGC,CORE2018,C,none,none,0805,0,N/A +International Workshop on Mobile Commerce and Services,WMCS,CORE2018,C,none,none,0806,0,N/A +International Workshop on Modelling and Visualization of XML and Semantic Web Data,MOVIX,CORE2018,C,none,none,0804,0,N/A +International Workshop on Modelling in Software Engineering,MISE,CORE2023,C,none,none,4612,0,N/A +"International Workshop on Modelling, Simulation, Verification and Validation of Enterprise Information Systems",MSVVEIS,CORE2018,C,none,none,0806,0,N/A +International Workshop on MultiAgent Based Simulation,MABS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/mabs,4602,0,N/A +"International Workshop on Multimedia Data Storage, Retrieval, Integration and Applications",MDSRIA,CORE2018,C,none,none,0806,0,N/A +International Workshop on Multimedia Signal Processing,MMSP,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/mmsp,4603,1,5.0 +"International Workshop on Nonmonotonic Reasoning, Action and Change",NRAC,CORE2018,C,none,none,0801,0,N/A +International Workshop on Paraphrasing,IWP,CORE2018,B,none,none,0801,0,N/A +International Workshop on Parsing Technologies,IWPT,CORE2018,B,none,none,0803,0,N/A +International Workshop on Pattern Recognition in Information Systems,PRIS,CORE2018,C,none,none,0806,0,N/A +International Workshop on Post-Quantum Cryptography,PQCrypto,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/pqcrypto,4604,0,N/A +International Workshop on Precipitation in Urban Areas,,ERA2010,A,none,none,0905,0,N/A +International Workshop on Principles of Diagnosis,DX,CORE2023,C,none,none,4612,0,N/A +International Workshop on Quality of Information Systems,QOIS,CORE2018,C,none,none,0806,0,N/A +International Workshop on Randomization and Computation,RANDOM,CORE2021,A,none,https://dblp.uni-trier.de/db/conf/random,4613,0,N/A +International Workshop on Realising Evidence-based Software Engineering,REBSE,CORE2018,C,none,none,0803,0,N/A +International Workshop on Requirements Engineering Visualization,REV,CORE2018,B,none,none,0802,0,N/A +International Workshop on Requirements Engineering: Foundation for Software Quality,REFSQ,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/refsq,4612,5,4.0 +International Workshop on Research Issues in Data Engineering,RIDE,CORE2018,B,none,none,0804,0,N/A +International Workshop on Satellite and Space Communications,IWSSC,ERA2010,C,none,none,1005,0,N/A +International Workshop on Schema Languages for XML,X-Schemas,CORE2018,C,none,none,0803,0,N/A +International Workshop on Security,IWSEC,CORE2023,National: Japan,none,https://dblp.uni-trier.de/db/conf/iwsec,4604,0,N/A +International Workshop on Security in Information Systems,WOSIS,CORE2018,C,none,none,0803,0,N/A +International Workshop on Security Protocols,IWSP,CORE2018,C,none,none,0803,0,N/A +International Workshop on Soft Computing Applications,SOFA,CORE2023,National: Romania,none,none,4601,3,5.0 +International Workshop on Software and Compilers for Embedded Systems,SCOPES,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/scopes,4606,0,N/A +International Workshop on Software Engineering for High Performance Computing Applications,SE-HPC,CORE2018,C,none,none,0805,0,N/A +International Workshop on Software Process Simulation and Modelling (now ICSP),PROSim,CORE2014,B,none,none,0803,0,N/A +International Workshop on Software Product Management,IWSPM,CORE2018,C,none,none,0803,0,N/A +International Workshop on Software Quality,WoSQ,CORE2018,C,none,none,0804,0,N/A +International Workshop on Software Technology for Augmented Reality Systems,IWSTAR,CORE2018,C,none,none,0806,0,N/A +International Workshop on Temporal Databases,TDB,CORE2018,C,none,none,0804,0,N/A +International Workshop on the Algorithmic Foundations of Robotics,WAFR,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/wafr,4602,0,N/A +International Workshop on the Sate of the Art in Cryptology and New Challenges Ahead,Quo Vadis Cryptology,CORE2018,C,none,none,0804,0,N/A +International Workshop on the Web and Databases,WebDB,CORE2020,National: USA,none,https://dblp.uni-trier.de/db/conf/webdb,4605,0,N/A +International Workshop on Visualization for Cyber Security,VizSec,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/vizsec,4608,0,N/A +International Workshop on Web and Wireless Geographical Information Systems,W2GIS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/w2gis,4601,0,N/A +International Workshop on Web Content Caching and Distribution,WCW,CORE2018,B,none,none,0806,0,N/A +International Workshop on Web Information Systems Modelling,WISM,CORE2018,C,none,none,0806,0,N/A +International Workshop on Wireless and Mobile Networks,WiMoNe,ERA2010,C,none,none,1005,0,N/A +International Workshop Programming Multi-Agent Systems (merged into EMAS in 2013),PROMAS,ERA2010,B,none,none,0804,0,N/A +International Workshops on Enabling Technologies: Infrastructures for Collaborative Enterprises,WETICE,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/wetice,4606,1,5.0 +International Workshops on First-Order Theorem Proving,FTP,CORE2018,B,none,none,0802,0,N/A +International World Wide Web Conference,WWW,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/www,4606,2,4.5 +International XML Database Symposium,Xsym,CORE2018,C,none,none,0804,0,N/A +Internationale Tagung Wirtschaftsinformatik,DITW,CORE2018,C,none,none,0806,0,N/A +Internet Measurement Conference,IMC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/imc,4606,0,N/A +Internet Research,AOIR,CORE2018,C,none,none,0806,0,N/A +Internet Society Conference,INET,CORE2018,C,none,none,0806,0,N/A +Interoperating Geographic Information Systems,INTEROP,CORE2018,C,none,none,0806,0,N/A +Interspeech (combined EuroSpeech and ICSLP in 2000),Interspeech,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/interspeech,4602,0,N/A +INTUITION International Conference,INTUITION,CORE2018,C,none,none,0801,0,N/A +ISC High Performance (was International Supercomputing Conference),ISC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/supercomputer,4606,0,N/A +ISCA International Conference on Computer Applications in Industry and Engineering,CAINE,CORE2023,C,none,none,4601,0,N/A +ISCA Tutorial and Research Workshop Automatic Speech Recognition,ASR,CORE2018,C,none,none,0801,0,N/A +Israel Symposium on Theory of Computing and Systems,ISTCS,CORE2008,A,none,none,,0,N/A +Italian Conference on Theoretical Computer Science,ICTCS,ERA2010,C,none,none,0802,0,N/A +Italian Symposium on Advanced Database Systems,SEBD,ERA2010,C,none,none,0804,1,4.0 +IUTAM Symposia series,,ERA2010,A,none,none,0913,0,N/A +IWA World Water Congress,,ERA2010,A,none,none,0905,0,N/A +Japan Conference on Computational Geometry and Graphs,JCCGG,ERA2010,C,none,none,0802,0,N/A +Japan Conference on Discrete and Computational Geometry,JCDCG,ERA2010,C,none,none,0802,0,N/A +Japan-China Joint Workshop on Frontier of Computer Science and Technology,FCST,ERA2010,C,none,none,08,0,N/A +Japan-Korea Joint Workshop on Algorithms and Computations,WAAC,ERA2010,C,none,none,0802,0,N/A +Japanese-Hungarian Symposium on Discrete Mathematics and Its Applications,JH,ERA2010,C,none,none,0802,0,N/A +Joint AUPEC & EECON,PEC&CON,CORE2018,C,none,none,,0,N/A +Joint Australia and New Zealand Biennial Conference on Digital Image and Vision Computing,DIVC,CORE2018,Australasian,none,none,0801,0,N/A +Joint Conference of the International Workshop on Software Measurement and the International Conference on Software Process and Product Measurement (IWSM and Mensura combined from 2007),IWSM Mensura,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iwsm,4612,0,N/A +"Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications (GRAPP and VISAPP combined from 2008)",VISIGRAPP,CORE2023,Multiconference,none,https://dblp.uni-trier.de/db/conf/visigrapp,4603,0,N/A +Joint Conference on Declarative Programming APPIA-GULP-PRODE,APPIA/GULP/PRODE,CORE2018,C,none,none,,0,N/A +Joint Conference on Information Sciences,JCIS,CORE2018,C,none,none,0806,0,N/A +Joint Conference on New Methods in Language Processing and Computational Natural Language Learning,NeMLaP,CORE2018,C,none,none,0801,0,N/A +Joint DICTA & IVCNZ,DICTA/IVCNZ,CORE2018,Australasian,none,none,,0,N/A +Joint European Conference and Exhibition on Geographical Information Systems,JECGI,CORE2018,C,none,none,0909,0,N/A +Joint European Networking Conference,JENC,ERA2010,C,none,none,1005,0,N/A +Joint International Conference on CyberGames and Interactive Entertainment,CGIE,CORE2018,C,none,none,0806,0,N/A +"Joint iTrust and PST Conferences on Privacy, Trust Management and Security",IFIP TM,ERA2010,C,none,none,0803,0,N/A +Joint Meeting of the European Frequency and Time Forum and the Institute of Electrical and Electronics Engineers In,EFTF/IFCS,CORE2018,C,none,none,,0,N/A +Joint Modular Languages Conference,JMLC,CORE2018,B,none,none,0803,0,N/A +"Joint OECC, IOCC & ACOFT",OESS/IOCC/ACOFT,CORE2018,C,none,none,,0,N/A +Joint Working Conference on Secure Information Networks: Communications and Multimedia Security,CMS,CORE2018,C,none,none,0803,0,N/A +Joint workshop on Multimodal Interaction and Related Machine Learning Algorithms (now ICMI-MLMI),MLMI,CORE2018,B,none,none,0801,0,N/A +Journal of Computing Science in Colleges (Conference proceedings),CCSC,CORE2018,B,none,none,0899,0,N/A +JSME/ASME International Conference on Materials and Processing,,ERA2010,A,none,none,0910,0,N/A +KES International Symposium on Intelligent Decision Technologies,KES IDT,CORE2023,C,none,none,4602,3,3.0 +"Knowledge Acquisition, Modelling and Management Workshop (No longer Exists)",KAW,CORE2014,C,none,none,0806,0,N/A +Knowledge and Data Engineering Exchange Workshop,KDEX,CORE2018,C,none,none,0804,0,N/A +Knowledge capture,K-CAP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/kcap,4605,3,4.7 +Knowledge Discovery and Data Mining in Biological Databases Meeting,KDDMBD,CORE2018,C,none,none,0804,0,N/A +Knowledge Domain Visualisation,KDViz,CORE2023,National: UK,none,none,4608,0,N/A +Knowledge Representation Meets Databases,KRDB,CORE2018,C,none,none,0804,0,N/A +Knowledge Visualization and Visual Thinking,KV,CORE2023,C,none,none,4608,0,N/A +Kyoto International Conference on Computational Geometry and Graph Theory,KyotoCGGT,CORE2018,C,none,none,0802,0,N/A +"Language Descriptions, Tools and Applications",LDTA,CORE2018,B,none,none,0803,0,N/A +Language Resources and Evaluation Conference,LREC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/lrec,4602,0,N/A +"Language, Data and Knowledge",LDK,CORE2023,C,none,https://dblp.org/db/conf/ldk,4602,0,N/A +Latin American Conference on Informatics,CLEI,CORE2023,C,none,https://dblp.org/db/conf/clei,4602,0,N/A +Latin American Conference on Pattern Languages of Programming,SugarLoafPLoP,ERA2010,C,none,none,0803,0,N/A +Latin American Web Congress,LA-WEB,ERA2010,C,none,none,0806,0,N/A +"Latin-American Algorithms, Graphs and Optimization Symposium",LAGOS,CORE2023,C,none,https://dblp.org/db/conf/lagos,4613,0,N/A +Law via the Internet,LI,CORE2018,C,none,none,0899,0,N/A +Lexical Semantics and Knowledge Representation,SIGLEX,CORE2018,C,none,none,0804,0,N/A +Logic and Engineering of Natural Language Semantics,LENLS,CORE2018,B,none,none,0801,0,N/A +Logic Programming and Automated Reasoning,LPAR,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/lpar,4613,0,N/A +Logical Foundations of Computer Science,LFCS,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/lfcs,4613,0,N/A +"Logics in Artificial Intelligence, European Conference",JELIA,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/jelia,4613,0,N/A +Machine Translation Summit,MT SUMMIT,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/mtsummit,4602,0,N/A +Machine Vision Applications,MVA,CORE2023,National: japan,none,https://dblp.uni-trier.de/db/conf/mva,4603,0,N/A +"Machines, Computations and Universality (was Universal Machines and Computations)",MCU,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/mcu,4613,0,N/A +MACIS: International Conference of Mathematical Aspects of Computer and Information Sciences,MACIS,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/macis,4613,0,N/A +Malaysia International Conference on Communications,MICC,CORE2023,Regional,none,none,4606,0,N/A +Management of Innovation and Technology International Conference,ICMIT,ERA2010,C,none,none,10,0,N/A +Massively Parallel Processing Using Optional Interconnections,MPPOI,CORE2018,B,none,none,0805,0,N/A +Mathematical Methods in Computer Science,MMICS,CORE2018,C,none,none,0802,0,N/A +Mathematics of Program Construction,MPC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mpc,4613,0,N/A +Measurement and Modeling of Computer Systems,SIGMETRICS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/sigmetrics,4612,0,N/A +Mechatronics and Machine Vision in Practice,M2VIP,CORE2018,B,none,none,0910,0,N/A +Medical Image Computing and Computer-Assisted Intervention,MICCAI,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/miccai,4601,0,N/A +Medicine Meets Virtual Reality,MMVR,CORE2018,B,none,none,0801,0,N/A +Meeting of the International Environmental Modelling and Software Society,,ERA2010,B,none,none,0907,0,N/A +Mensch & Computer,MuC,CORE2023,National: Germany,none,https://dblp.org/db/conf/mc,4608,0,N/A +Methods Effectives en Geometrie Algebrique,MEGA,ERA2010,B,none,none,0802,0,N/A +Mexican International Conference on Current Trends in Computer Science (was Mexican International Conference on Computer Science),ENC,CORE2018,C,none,none,08,0,N/A +"Mid-West Conference on Combinatorics, Cryptography, and Computing",MIGHTY,ERA2010,C,none,none,0802,0,N/A +"Mini-EURO Conference, Managing Uncertainty in Decision Support Models",,ERA2010,A,none,none,09,0,N/A +Mining for Enhanced Web Search,MEWS,CORE2018,C,none,none,0806,0,N/A +Mobile and Ubiquitous Multimedia (ACM),MUM,CORE2023,B,none,https://dblp.org/db/conf/mum,4608,0,N/A +Mobile Media,MMC,ERA2010,B,none,none,1203,0,N/A +Mobility in Databases and Distributed Systems,MDDS,CORE2018,C,none,none,0804,0,N/A +Modelling and Optimization: Theory and Applications,MOPTA,CORE2023,National: USA,none,none,4602,0,N/A +Modelling and Simulation,,ERA2010,A,none,none,0905,0,N/A +Modern Asian Architecture Network conferences,mAAN,ERA2010,C,none,none,1201,0,N/A +MSRI Combinatorial Game Theory Research Workshop,GameTheory,CORE2018,C,none,none,0802,0,N/A +Multi-national Joint Ventures for Construction Works Conference,,ERA2010,C,none,none,1202,0,N/A +Multimedia and Network Information Systems,MISSI,CORE2023,National: Poland,none,https://dblp.org/db/conf/missi,4603,0,N/A +"Multimedia Content Access: Algorithms and Systems (was Multimedia Content Analysis, Management and Retrieval)",MCA:AS,CORE2018,C,none,none,0806,0,N/A +Multiple Objective Decision Support System Conference,MODSS,CORE2018,C,none,none,,0,N/A +NACE International - Corrosion,,ERA2010,A,none,none,0913,0,N/A +NAISO Congress on Autonomous Intelligent Systems,NAISO,CORE2018,C,none,none,0801,0,N/A +NASA LaRC Formal Methods Workshop,LARC,ERA2010,C,none,none,0802,0,N/A +National Advisory Committee on Computing Qualifications,NACCQ,ERA2010,C,none,none,0899,0,N/A +National Conference Communications,NCC,ERA2010,C,none,none,1006,0,N/A +National Conference of the American Association for Artificial Intelligence,AAAI,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/aaai,4602,1,5.0 +National Conference of the Australian Robot Association,ARA,CORE2018,Australasian,none,none,,0,N/A +National Conference of The Australian Society for Operations Research,ASOR,CORE2023,Australasian C,none,none,4602,0,N/A +National Conference on Computer and Information Systems,NCCIS,ERA2010,C,none,none,0806,0,N/A +National Conference on Hydraulics in Water Engineering,,ERA2010,B,none,none,0907,0,N/A +National Database Conference (China),NDB,ERA2010,C,none,none,0804,0,N/A +National Information Systems Security Conference (was National Computer Security Conference),NISSC,ERA2010,C,none,none,0803,0,N/A +National Science Foundation symposium on Next Generation Data Mining and Cyber Enabled Discovery for Innovation (was.NSF workshop on Next Generation Data Mining),NGDM,ERA2010,C,none,none,0804,0,N/A +NATO Conference on software engineering,NATOSE,ERA2010,C,none,none,0803,0,N/A +Natural Language Processing and Knowledge Engineering,IEEE NLP-KE,CORE2018,C,none,none,0801,0,N/A +"Net Object Days (Includings MATES, ENASE etc.)",MATES ENASE,CORE2018,A,none,none,,0,N/A +Network and Operating System Support for Digital Audio and Video,NOSSDAV,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/nossdav,4606,5,5.0 +Network for Comfort and Energy Use in Buildings Windsor Conference,Windsor,ERA2010,A,none,none,1202,0,N/A +Network Storage Symposium,NetStore,CORE2018,A,none,none,0805,0,N/A +Networked Group Communication,NGC,ERA2010,C,none,none,1005,0,N/A +New Heritage: Beyond Verisimilitude. Conference on Cultural Heritage and New Media. Proceedings of the New Heritage Conference,,ERA2010,,none,none,1201,0,N/A +New Security Paradigms Workshop,NSPW,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/nspw,4604,0,N/A +New Technologies Mobility and Security,NTMS,CORE2021,C,none,https://dblp.org/db/conf/ntms,4604,0,N/A +New Zealand Game Developers Conference,NZGDC,CORE2023,Australasian C,none,none,4607,0,N/A +Nordic Conference on Human-Computer Interaction,NordiCHI,CORE2023,Regional:Scandinavia,none,https://dblp.org/db/conf/nordichi,4608,0,N/A +Nordic Conference on Pattern Languages of Programs,VikingPLoP,ERA2010,C,none,none,0803,0,N/A +Nordic Construction Economics and Organisation Conference,,ERA2010,C,none,none,1202,0,N/A +Nordic Design Research Conference,NORDES,ERA2010,B,none,none,1203,0,N/A +Nordic Workshop on Secure IT Systems,NordSec,ERA2010,C,none,none,0803,0,N/A +North American Association for Computational Linguistics,NAACL,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/naacl,4602,1,5.0 +North American Conference on Logic Programming,NACLP,ERA2010,C,none,none,0803,0,N/A +North American Fuzzy Information Processing Society Conference,NAFIPS,ERA2010,C,none,none,0801,0,N/A +Norwegian Computer Human Interaction,NORDCHI,ERA2010,C,none,none,0806,0,N/A +Numerical Models in Geomechanics,NUMOG,ERA2010,A,none,none,0905,0,N/A +On-Line Testing and Robust System Design,IOLTS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/iolts,CSE,0,N/A +Open and Distance Learning Association of Australia Bienniel Forum,ODLA,CORE2018,Australasian,none,none,,0,N/A +Optimal Discrete Structures and Algorithms,ODSA,CORE2018,C,none,none,0802,0,N/A +Optimization: Techniques And Applications,OTA,CORE2018,C,none,none,0802,0,N/A +Organisations and Society in Information Systems Workshop,OASIS,CORE2018,C,none,none,0806,0,N/A +PACES & ICIL,P&I,CORE2018,C,none,none,,0,N/A +Pacific Asia Conference on Information Systems,PACIS,CORE2018,A,none,none,0806,0,N/A +"Pacific Asia Conference on Language, Information and Computation",PACLIC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/paclic,4602,0,N/A +Pacific Asian Conference on Expert Systems,PACES,CORE2018,B,none,none,0801,0,N/A +Pacific Conference on Computer Graphics and Applications,PG,CORE2023,Journal Published,none,https://dblp.uni-trier.de/db/conf/pg,4607,0,N/A +Pacific Rim International Conference on Artificial Intelligence,PRICAI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/pricai,4602,0,N/A +Pacific Rim International Symposium on Dependable Computing,PRDC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/prdc,4612,0,N/A +Pacific Rim Knowledge Acquisition Workshop,PKAW,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/pkaw,4602,0,N/A +Pacific Rim Real Estate Conference,PPRES,ERA2010,A,none,none,1202,0,N/A +Pacific Symposium on Biocomputing,PSB,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/psb,4601,0,N/A +Pacific-Asia Conference on Knowledge Discovery and Data Mining,PAKDD,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/pakdd,4605,0,N/A +Pacific-Asia Workshop on Electronic Commerce,PAWEC,CORE2018,C,none,none,0806,0,N/A +Pacific-Rim Conference on Multimedia,PCM,CORE2020,C,none,https://dblp.uni-trier.de/db/conf/pcm,4603,0,N/A +Pacific-Rim Symposium on Image and Video Technology,PSIVT,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/psivt,4603,1,5.0 +Pan Pacific Conference on Information Systems,PPCIS,CORE2018,C,none,none,0806,0,N/A +Pan-Sydney Area Workshop on Visual Information Processing,VIP,CORE2018,C,none,none,0801,0,N/A +Parallel and Distributed Information Systems,PDIS,CORE2018,C,none,none,0805,0,N/A +Parallel Computing,PARCO,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/parco,4606,0,N/A +Parallel Computing with FPGAs,ParaFPGA,ERA2010,C,none,none,0905,0,N/A +Parallel Problem Solving from Nature,PPSN,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ppsn,4611,1,5.0 +Participatory Design Conference,PDC,CORE2018,B,none,https://dblp.uni-trier.de/db/conf/pdc,0806,0,N/A +Passive and Active Measurement Conference,PAM,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/pam,4606,0,N/A +Passive and Low Energy Architecture (PLEA) Annual International Conference,PLEA,ERA2010,A,none,none,1201,0,N/A +Pattern Languages of Programs,PLOP,CORE2023,C,See note,none,4612,0,N/A +Performance Tools - International Conference on Model Techniques & Tools for CPE,PT,CORE2018,A,none,none,0803,0,N/A +Portland International Center for Management of Engineering and Technology Conference,PICMET,ERA2010,A,none,none,1202,0,N/A +Portuguese Conference on Artificial Intelligence,EPIA,CORE2023,National: Portugal,none,https://dblp.uni-trier.de/db/conf/epia,4602,0,N/A +Post-Graduate ADFA Conference on Computer Science,PACCS,CORE2017,L,none,none,,0,N/A +Postgraduate Researchers of the Built and Natural Environment Conference,PRoBE,ERA2010,C,none,none,1202,0,N/A +Powders and Grains,,ERA2010,A,none,none,0913,0,N/A +Practical Application of Intelligent Agents and Multi-Agent Technology Conference,PAAM,CORE2018,C,none,none,0801,0,N/A +Practical Applications of Agents and Multiagent Systems,PAAMS,CORE2023,National: Spain,none,https://dblp.uni-trier.de/db/conf/paams,4602,3,4.0 +Practical Aspects of Declarative Languages,PADL,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/padl,4612,0,N/A +Practical Aspects of PROLOG/Constraint Technology,PAP/PACT,CORE2018,C,none,none,0802,0,N/A +Practice and Theory of Automated Timetabling,PATAT,CORE2023,C,See note,none,4601,0,N/A +Practices of Linking Aspect Technology and Evolution,PLATE,CORE2018,C,none,none,0803,0,N/A +Prague Stringology Conference,PSC,CORE2023,National: Czech,none,https://dblp.uni-trier.de/db/conf/stringology,4613,0,N/A +Principles and Practice of Parallel Programming,PPoPP,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/ppopp,4606,0,N/A +Privacy Enhancing Technologies Symposium (was International Workshop of Privacy Enhancing Technologies),PETS,CORE2023,A,none,https://dblp.org/db/journals/popets,4604,2,5.0 +Privacy in Statistical Databases,PSD,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/psd,4604,0,N/A +Proceedings MIT Conferences on Computational Solid and Fluid Mechanics,,ERA2010,A,none,none,0905,0,N/A +"Processing Declarative Knowledge, International Workshop",PDK,CORE2018,C,none,none,0803,0,N/A +Product Focused Software Process Improvement,PROFES,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/profes,4612,11,4.2 +Program Visualization Workshop,PVW,CORE2018,C,none,none,0801,0,N/A +Programming Language Techniques for XML,PLAN-X,CORE2018,C,none,none,0803,0,N/A +Project Management conference,PMOZ,ERA2010,B,none,none,1202,0,N/A +ProjMAN - International Conference on Project MANagement,ProjMAN,CORE2018,Unranked,none,none,1503,0,N/A +Quantity Surveying International Convention,QSIC,ERA2010,C,none,none,1202,0,N/A +Real Time Systems Symposium,RTSS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/rtss,4606,0,N/A +"Reflection, AOP and Meta-Data for Software Evolution",RAM-SE,CORE2018,C,none,none,0803,0,N/A +Relationships and Associations in Object-Oriented Languages,RAOOL,CORE2018,C,none,none,0803,0,N/A +Research in Engineering Education Symposium,REES,ERA2010,A,none,none,09,0,N/A +Richard Tapia Celebration of Diversity in Computing Conference,Tapia,CORE2023,National: USA,none,none,46,0,N/A +RICS conference,COBRA,ERA2010,A,none,none,1202,0,N/A +RINA International Conference on Military Support Ships,,ERA2010,C,none,none,0911,0,N/A +Robot Soccer World Cup,RoboCup,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/robocup,4602,0,N/A +Robotics: Science and Systems,RSS,CORE2023,TBR,See note,https://dblp.uni-trier.de/db/conf/rss,CSE,0,N/A +RuleML: International Web Rule Symposium (pre 2007 was 'International Conference on Rules and Rule Markup Languages for the Semantic Web'),RuleML,CORE2018,B,none,none,0806,0,N/A +"SAE Powertrains, Fuels, and Lubricants Meeting",,ERA2010,B,none,none,0902,0,N/A +SAE World Congress,,ERA2010,B,none,none,0902,0,N/A +Scandinavian Conference on Artificial Intelligence,SCAI,ERA2010,B,none,none,0801,0,N/A +Scandinavian Workshop on Algorithm Theory,SWAT,ERA2010,B,none,none,0802,0,N/A +Scottish Functional Programming Workshop,SFP,ERA2010,C,none,none,0802,0,N/A +SEA - Conference on Sustainable Building South-East Asia (CIB Co-Sponsored),SBSEA,ERA2010,C,none,none,1202,0,N/A +"Search: Workshop on Search, Sorting and Coding",Search,CORE2018,C,none,none,0802,0,N/A +SEFI - Annual Conference of European Society for Engineering Education,,ERA2010,B,none,none,09,0,N/A +Selected Areas in Cryptography,SAC,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sacrypt,4604,0,N/A +Semantic Web Visualisation,VSW,CORE2018,C,none,none,0801,0,N/A +Semantics - International Conference on Semantic Systems,Semantics,CORE2023,"Regional: Austria, Germany, Netherlands",none,https://dblp.uni-trier.de/db/conf/i-semantics,4605,0,N/A +Sensor Networks,Sensor Networks,CORE2018,C,none,none,1006,0,N/A +Service Oriented Computing: Consequences for Engineering Requirements,SOCCER,CORE2018,C,none,none,0803,0,N/A +SGAI International Conference on Artificial Intelligence,SGAI,CORE2023,National: UK,none,https://dblp.uni-trier.de/db/conf/sgai,4602,0,N/A +SIAM Conference on Discrete Mathematics,DM,CORE2023,C,none,none,4613,0,N/A +SIAM Conference on Geometric Design,GeoD,CORE2018,C,none,none,0802,0,N/A +SIAM Conference on Optimization,OP,CORE2023,C,none,none,4602,0,N/A +SIAM International Conference on Data Mining,SDM,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/sdm,4605,3,5.0 +"SIAM Workshop on Algorithms for Listing, Counting, and Enumeration",ALICE,CORE2018,C,none,none,0802,0,N/A +SIGGRAPH Asia,SiggraphA,CORE2023,journal published,none,https://dblp.org/db/conf/siggrapha,4607,5,5.0 +SIGGRAPH/EUROGRAPHICS Conference On Graphics Hardware,HWWS,ERA2010,C,none,none,0905,0,N/A +SIGIR workshop: Stylistic Analysis of Text For Information Access,Style,CORE2018,C,none,none,0806,0,N/A +SIGOPT - International Conference on Optimization,ICO,CORE2018,C,none,none,0802,0,N/A +Simulation and Synthesis in Medical Imaging,SASHIMI,CORE2023,C,none,https://dblp.org/db/conf/sashimi-ws,4602,0,N/A +Simulation Technology and Training Conference,SimTecT,CORE2023,Australasian C,none,none,4602,0,N/A +Singapore International Conference on Intelligent Systems,SPICIS,CORE2018,B,none,none,0801,0,N/A +Sixth International Conference on Hydroinformatics 2004,,ERA2010,A,none,none,0907,0,N/A +SKLOIS Conference on Information Security and Cryptology,Inscrypt,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/cisc,4604,0,N/A +Smart Card Research and Advanced Application Conference,CARDIS,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/cardis,4604,1,4.0 +Society for Information Technology and Teacher Education Conference,SITE,CORE2018,C,none,none,,0,N/A +"Society of Architectural Historians, Australia and New Zealand (SAHANZ) Annual Conference",SAHANZ,ERA2010,A,none,none,1201,0,N/A +"Soft Computing in Computer Graphics, Imaging, and Vision",SCCGIV,CORE2018,C,none,none,0801,0,N/A +Software Education Conference,SRIG-ET,CORE2018,C,none,none,0899,0,N/A +Software Performance Enhancement for Encryption and Decryption,SPEED,CORE2018,C,none,none,0804,0,N/A +Software Process Improvement and Capability Determination,SPICE,CORE2023,C,none,none,4612,1,5.0 +Software Product Lines Conference,SPLC,CORE2023,B,none,https://dblp.org/db/conf/splc,4612,1,5.0 +Software Quality Conference,SQC,CORE2018,C,none,none,0803,0,N/A +"Software Quality, Reliability, and Security (was International Conference on Quality Software, QSIC, that merged with SERE 2015)",QRS,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/qrs,4612,1,4.0 +Software Technology and Engineering Practice Conference,STEP,CORE2018,B,none,none,0803,0,N/A +South African Construction Health and Safety conference,SABERC,ERA2010,C,none,none,1202,0,N/A +South African International Graph Theory Conference,SAIGTC,CORE2018,C,none,none,0802,0,N/A +"Southeastern International Conference on Combinatorics, Graph Theory, and Computing",,CORE2018,C,none,none,0802,0,N/A +Southern Conference on Computing,SCC,ERA2010,C,none,none,0802,0,N/A +Southwestern Conference on Pattern Languages of Programs,ChiliPLoP,ERA2010,C,none,none,0803,0,N/A +Spanish Meeting on Computational Geometry,EGC,ERA2010,C,none,none,0802,0,N/A +Spatial Information Research Centre Colloquium,SIRC,CORE2018,C,none,none,0909,0,N/A +Spatial Information Science and Technology Conference,SIST,CORE2018,C,none,none,0909,0,N/A +Special-purpose Hardware for Attacking Cryptographic Systems,SHARCS,CORE2018,C,none,none,0804,0,N/A +SPIE Conference on Performance and Control of Network Systems,PCNS,CORE2018,C,none,none,1006,0,N/A +SPIE Conference on Visual Data Exploration and Analysis,VDEA,CORE2018,C,none,none,0804,0,N/A +SPIE International Conference on Multimedia Storage and Archiving Systems,MSAS,CORE2018,C,none,none,0804,0,N/A +SPIE Smart Structures and Materials and Non-destructive Evaluation and Health Monitoring,,ERA2010,A,none,none,0905,0,N/A +Spring Conference on Computer Graphics,SCCG,CORE2018,C,none,none,0801,0,N/A +Stapp Car Crash Conference,,ERA2010,A,none,none,0902,0,N/A +State of Australian Cities (SOAC) Conference,SOAC,ERA2010,A,none,none,1201,0,N/A +State of the Art of Stream Ciphers,SASC,CORE2018,C,none,none,0804,0,N/A +Static Analysis Symposium,SAS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sas,4612,21,4.8 +Stochastic Local Search Algorithms,SLS,CORE2018,C,none,none,0802,0,N/A +Storage and Retrieval for Media Databases (was Storage and Retrieval for Image and Video Databases),SRMD,CORE2018,C,none,none,0804,0,N/A +Structural and Syntactical Pattern Recognition,SSPR,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/ssspr,4603,0,N/A +Structural Engineering and Construction Conference,APSEC-EASEC,ERA2010,B,none,none,0905,0,N/A +Summer Computer Simulation Conference,SCSC,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/scsc,4602,1,3.0 +Summer School on Modelling and Verification of Parallel Processes,MOVEP,CORE2018,C,none,none,0805,0,N/A +Symposia on VLSI Technology and Circuits,VLSI,CORE2018,A,none,none,1005,0,N/A +Symposium Model Analysis and Simulation of Computer and Telecommunications Systems,MASCOTS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/mascots,4606,36,5.0 +Symposium of Asian Association for Algorithms and Computation,AAAC,CORE2023,C,none,none,4613,0,N/A +Symposium on ‘Building Simulation in the Southwest of England’,IBPSA,ERA2010,A,none,none,1202,0,N/A +"Symposium on Abstraction, Reformulation and Approximation",SARA,CORE2018,B,none,none,0802,0,N/A +Symposium on Advanced Structural Steels and New Rolling Technologies,,ERA2010,B,none,none,0910,0,N/A +Symposium on Advances in DB and Information Systems,ADBIS,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/adbis,4605,0,N/A +Symposium on Assessment of Quality S/W Dev Tools,AQSDT,CORE2018,C,none,none,0803,0,N/A +Symposium on Cellular Automata,JAC,CORE2018,C,none,none,0802,0,N/A +"Symposium On Combinatorics, Algorithms, Probabilistic and Experimental Methodologies",ESCAPE,CORE2018,C,none,none,0802,0,N/A +Symposium on Computational Geometry for Mechanics and Applications,SOCGMA,CORE2018,C,none,none,0802,0,N/A +"Symposium on Design, Analysis, and Simulation of Distributed Systems",DASD,CORE2018,C,none,none,0805,0,N/A +Symposium on Discrete Mathematics,EDM,CORE2018,C,none,none,0802,0,N/A +Symposium on Frontiers of Massively Parallel Processing,MassPar,CORE2018,A,none,none,0805,0,N/A +Symposium on Geometry Processing,SGP,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/sgp,4607,1,5.0 +Symposium on High Performance Chips,HOTCHIPS (HCS),CORE2023,C,none,https://dblp.uni-trier.de/db/conf/hotchips,4606,0,N/A +Symposium on High Performance Chips,HOT CHIPS,ERA2010,A,none,none,1005,0,N/A +Symposium on Information Technology and Information Systems,ITIS,CORE2018,C,none,none,0806,0,N/A +Symposium on Information Theory in the Benelux,,ERA2010,C,none,none,0804,0,N/A +Symposium on Logical Formalizations of Commonsense Reasoning,COMMONSENSE,CORE2018,B,none,none,0801,0,N/A +"Symposium on Networked Systems, Design and Implementation",NSDI,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/nsdi,4606,9,5.0 +Symposium on Parallelism in Algorithms and Architectures,SPAA,CORE2023,B,See note,https://dblp.uni-trier.de/db/conf/spaa,4606,1,5.0 +Symposium on Programming Language Implementation and Logic Programming,PLILP,CORE2018,B,none,none,,0,N/A +Symposium on Programs as Data Objects,PADO,CORE2018,C,none,none,0802,0,N/A +Symposium on Reliable Distributed Systems,SRDS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/srds,4606,2,5.0 +Symposium on Requirements Engineering for Information Security,SREIS,CORE2018,C,none,none,0806,0,N/A +"Symposium on Stabilization, Safety, and Security of Distributed Systems",SSS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/sss,4604,0,N/A +"Symposium on Stochastic Algorithms, Foundations and Applications",SAGA,CORE2018,C,none,none,0802,0,N/A +Symposium On Usable Privacy and Security,SOUPS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/soups,4608,0,N/A +Systems Engineering / Test and Evaluation Conference,SETE,CORE2018,C,none,none,0803,0,N/A +TAI: Algorithmic Information Theory: Kolmogorov Complexity,TAI,CORE2018,C,none,none,0802,0,N/A +"Tangible, Embedded, and Embodied Interaction",TEI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/tei,4608,0,N/A +Techniques and Problems in Graph Theory,TPGT,CORE2018,C,none,none,0802,0,N/A +Technology for Interactive Digital Storytelling (merged into ICIDS in 2008),TIDSE,ERA2010,C,none,none,0899,1,N/A +Technology of Object-Oriented Languages and Systems,TOOLS,CORE2020,B,none,https://dblp.uni-trier.de/db/conf/tools,4612,0,N/A +Testbeds and Research Infrastructures for the Development of Networks and Communities,TridentCom,CORE2023,National: China,none,https://dblp.uni-trier.de/db/conf/tridentcom,4606,0,N/A +Text Retrieval Conference,TREC,CORE2008,A,none,none,,0,N/A +The ACM International System and Storage Conference,SYSTOR,CORE2023,National:Israel,none,https://dblp.org/db/conf/systor,4606,0,N/A +The Annual International Conference of the IEEE Engineering in Medicine and Biology Society,EMBC,CORE2018,C,none,none,,0,N/A +The Claude Shannon Workshop on Coding and Cryptography,,CORE2018,C,none,none,0804,0,N/A +The Conference on visualization of information,SEE,CORE2018,C,none,none,0801,0,N/A +The IASTED International Conference on Applied Simulation and Modelling (International Association of Science and Technology for Development),,ERA2010,C,none,none,09,0,N/A +The International Conference on Future Networks and Communications,FNC,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/fnc,4606,0,N/A +The International Conference on Intelligent Environments,IE,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/intenv,4602,0,N/A +"The International Conference on Mobile Technology, Applications and Systems",MOBILITY,ERA2010,C,none,none,1005,0,N/A +The International Conference on Semantic Web and Web Services,SWWS,CORE2018,C,none,none,0805,0,N/A +The International Conference on Verification and Evaluation of Computer and Communication Systems,VECoS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/vecos,4606,0,N/A +"The International Symposium on Research in Attacks, Intrusions and Defenses (was International Symposium on Recent Advances in Intrusion Detection)",RAID,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/raid,4604,0,N/A +The International Workshop on Algorithms and Graphs,IWAAG,CORE2018,C,none,none,0802,0,N/A +The Modelling and Simulation Society of Australia and New Zealand Meeting,ANZMODS,CORE2018,Australasian,none,none,0802,0,N/A +The Northern Formal Methods Workshops,NFM,ERA2010,C,none,none,0802,0,N/A +The organizational semiotics Conference,ORGSEM,CORE2018,B,none,none,0806,0,N/A +The Symposium of Combinatorial Search,SoCS,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/socs,4602,0,N/A +The Theory and Application of Diagrams,DIAGRAMS,CORE2023,C,See note,https://dblp.org/db/conf/diagrams,4602,0,N/A +The World Conference on Titanium,,ERA2010,A,none,none,0914,0,N/A +Theoretical Aspects of Rationality and Knowledge,TARK,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/tark,4613,0,N/A +Theory and Applications of Knowledge MAnagement,TAKMA,CORE2018,C,none,none,,0,N/A +Theory of Cryptography Conference,TCC,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/tcc,4604,0,N/A +Thermo and Fluid Dynamic Processes in Diesel Engines,,ERA2010,B,none,none,0902,0,N/A +TMS Annual Meeting and Exhibition,,ERA2010,B,none,none,0914,0,N/A +Tools and Algorithms for Construction and Analysis of Systems,TACAS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/tacas,4612,1,5.0 +Topological and Geometric Graph Theory,TGGT,CORE2018,C,none,none,0802,0,N/A +Traitement Automatique des Langues Naturelles,TALN,ERA2010,C,none,none,0802,0,N/A +Transportation Research Board (USA) Annual Meeting,TRB,ERA2010,A,none,none,1205,0,N/A +Trustworthy Interfaces for Passwords and Personal Information workshop,TIPPI,CORE2018,C,none,none,0804,0,N/A +Turbulence and Shear Flow Phenomena,,ERA2010,A,none,none,0901,0,N/A +UK Academy of Information Systems Conference,UKAIS,ERA2010,C,none,none,0806,0,N/A +UK e-Science All Hands Meeting,UK e-Science,ERA2010,C,none,none,0805,0,N/A +UK Ireland Planning Research Conference,PRC,ERA2010,B,none,none,1205,0,N/A +UK Wind Engineering Society Conference on Wind Engineering,,ERA2010,C,none,none,0905,0,N/A +Unconventional Models of Computation,UMC,CORE2018,B,none,none,0802,0,N/A +United Kingdom Systems Society,UKSS,ERA2010,B,none,none,0806,0,N/A +United Kingdom Virtual Reality Special Interest Group Conference UK-VRSIG,VR-SIG,ERA2010,C,none,none,0806,0,N/A +University of Western Australia Computer Science Research Conference,UWACS,CORE2018,Australasian,none,none,,0,N/A +Unix Symposium on Internet Technologies,USITS,CORE2020,A,none,none,4606,0,N/A +Unix Symposium on Operating Systems Design and Implementation,SDSDI,CORE2018,A,none,none,0803,0,N/A +Urban History Planning History (Australasia),UHPH,ERA2010,B,none,none,1201,0,N/A +US Office of Naval Research Symposium on Naval Hydrodynamics,,ERA2010,C,none,none,0911,0,N/A +Usable Security and Privacy,USEC,CORE2023,National: USA,none,none,4604,0,N/A +Usenix Annual Technical Conference,USENIX,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/usenix,4606,0,N/A +Usenix Network and Distributed System Security Symposium,NDSS,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/ndss,4604,1,5.0 +Usenix Security Symposium,USENIX-Security,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/uss,4604,0,N/A +Usenix Symposium on Operating Systems Design and Implementation,OSDI,CORE2023,A*,none,https://dblp.uni-trier.de/db/conf/osdi,4606,0,N/A +USENIX Windows NT Symposium,UWNTS,CORE2018,C,none,none,0803,0,N/A +USENIX Workshop on Electronic Commerce,USENIX EC,CORE2018,C,none,none,08,0,N/A +USENIX Workshop on Hot Topics in Operating Systems,HotOS,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/hotos,4606,1,N/A +USENIX/ACCURATE Electronic Voting Technology Workshop,EVT,CORE2018,C,none,none,0804,0,N/A +Utility and Cloud Computing,UCC,CORE2023,Unranked,none,https://dblp.uni-trier.de/db/conf/ucc,4606,0,N/A +"Verification, Model Checking and Abstract Interpretation",VMCAI,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/vmcai,4612,0,N/A +Vision Interface,VI,CORE2018,C,none,none,0801,0,N/A +VisMasters Design Modelling and Visualization Conference,DMVC,CORE2018,C,none,none,0801,0,N/A +Visual Analytics,EuroVA,CORE2023,C,none,none,4608,0,N/A +Visual Information Communication and Interaction,VINCI,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/vinci,4608,0,N/A +Visual Languages and Formal Methods,VLFM,CORE2018,C,none,none,0803,0,N/A +Visualisation in Built and Rural Environments,BuiltViz,CORE2018,C,none,none,0801,0,N/A +Visualization In Science and Education,GRC,CORE2023,National: USA,none,none,4608,0,N/A +Visualization in Software Engineering,SEViz,CORE2018,C,none,none,0801,0,N/A +Visualization in Software Product Lines Workshop,VisPLE,CORE2018,C,none,none,0801,0,N/A +Water Down Under 2008 (incorporating the 31st Hydrology and Water Resources Symposium and the 4th International Conference on Water Resources and Environment Research),,ERA2010,A,none,none,0907,0,N/A +Web and Big Data,APWEB,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/apweb,4605,0,N/A +Web Visualization,WebViz,CORE2018,C,none,none,0801,0,N/A +Western Australian Workshop on Information Systems Research,WAWISR,CORE2018,Australasian,none,none,0806,0,N/A +Western Canadian Conference on Computing Education,WCCCE,ERA2010,C,none,none,0899,0,N/A +Western Decision Sciences Institute Conference,WDSI,ERA2010,C,none,none,0806,0,N/A +Western European Workshop on Research in Cryptology,WeWoRC,ERA2010,C,none,none,0804,0,N/A +Winter Simulation Conference,WSC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/wsc,4602,0,N/A +Wireless Days,WD,CORE2021,C,none,https://dblp.uni-trier.de/db/conf/wd,4606,0,N/A +Workshop in Information Security Theory and Practices,WISTP,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/wistp,4604,0,N/A +Workshop on Ad Hoc and Ubiquitous computing,AUC,CORE2018,C,none,none,0805,0,N/A +Workshop on Algorithm Engineering,WAE,CORE2018,B,none,none,0802,0,N/A +Workshop on Algorithm Engineering and Experiments,ALENEX,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/alenex,4613,1,N/A +"Workshop on Algorithmic Approaches for Transportation Modelling, Optimization, and Systems",ATMOS,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/atmos,4613,0,N/A +Workshop on Algorithmic Aspects of Advanced Programming Languages,WAAAPL,CORE2018,C,none,none,0802,0,N/A +Workshop on Algorithms And Models For The Web Graph,WAW,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/waw,4613,0,N/A +Workshop on Algorithms in Bioinformatics,WABI,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/wabi,4601,0,N/A +"Workshop on Algorithms, Combinatorics, and Geometry",ACG,CORE2018,C,none,none,0802,0,N/A +Workshop on Analytic Algorithmics and Combinatorics,ANALCO,CORE2021,B,none,https://dblp.uni-trier.de/db/conf/analco,4613,0,N/A +Workshop on Application Specific Processors,WASP,ERA2010,C,none,none,0905,0,N/A +Workshop on Applications of Graph Theory in Wireless Ad hoc Networks and Sensor Networks,Graph-hoc,CORE2023,C,none,none,4606,0,N/A +Workshop on Approximation and Online Algorithms,WAOA,CORE2023,B,none,https://dblp.uni-trier.de/db/conf/waoa,4613,0,N/A +Workshop on Approximation and Randomization Algorithms in Communication Networks,ARACNE,CORE2018,C,none,none,0802,0,N/A +Workshop on Aspect Oriented Requirements Engineering and Architecture Design,Early Aspects,CORE2018,C,none,none,0803,0,N/A +Workshop on Aspect-Oriented Modelling,AOM,CORE2018,C,none,none,0803,0,N/A +"Workshop on Aspects, Components, and Patterns for Infrastructure Software",ACP4IS,CORE2018,C,none,none,0803,0,N/A +Workshop on Assurance Cases for Security,DSN,CORE2018,C,none,none,0803,0,N/A +"Workshop on Australasian Information Security, Data Mining and Web Intelligence, and Software Internationalisation",AISW,CORE2018,Australasian,none,none,0804,0,N/A +Workshop on Combinatorial and Algorithmic Aspects of Networking,CAAN,CORE2018,B,none,none,0802,0,N/A +Workshop on Component-Oriented Programming,WCOP,CORE2018,C,none,none,0803,0,N/A +Workshop on Computational and Conformal Geometry,CCG,CORE2018,C,none,none,0802,0,N/A +Workshop on Computational Geometry and Applications,CGA,CORE2018,C,none,none,0802,0,N/A +Workshop on Computational Graph Theory and Combinatorics,WCGTC,CORE2018,C,none,none,0802,0,N/A +Workshop on Computational Optimization,WCO,CORE2023,C,none,none,4613,1,4.0 +Workshop on Computer Architecture Education,WCAE,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/wcae,4608,0,N/A +Workshop on Constraint Satisfaction for Planning and Scheduling,COPLAS,CORE2023,C,See note,none,4602,0,N/A +Workshop on Cryptographic Hardware and Embedded Systems,CHES,CORE2023,A,none,https://dblp.uni-trier.de/db/conf/ches,4604,6,5.0 +Workshop on Cryptography for Ad hoc Networks,WCAN,CORE2018,C,none,none,0804,0,N/A +Workshop on Data Engineering for Wireless and Mobile Access,MobiDE,CORE2018,C,none,none,0804,0,N/A +Workshop on Database Technology for Virtual Enterprises,DTVE,CORE2018,C,none,none,0804,0,N/A +Workshop on Declarative Programming in the Context of OO Languages,DP-COOL,CORE2018,C,none,none,0803,0,N/A +Workshop on Distributed Algorithms (DISC since 1998),WDAG,CORE2014,B,none,none,,0,N/A +Workshop on Distributed Data and Structures,WDAS,CORE2018,C,none,none,0802,0,N/A +Workshop on Domain Specific Modelling,DSM,CORE2023,C,none,none,4612,0,N/A +"Workshop on Duplicating, Deconstructing, and Debunking",WDDD,CORE2018,C,none,none,0803,0,N/A +Workshop on Economics of Peer-to-Peer Systems,P2P Econ,CORE2018,C,none,none,0899,0,N/A +Workshop on Elliptic Curve Cryptography,ECC,CORE2018,C,none,none,0804,0,N/A +Workshop on Fault Diagnosis and Tolerance in Cryptography,FDTC,CORE2023,C,none,https://dblp.uni-trier.de/db/conf/fdtc,4604,0,N/A +Workshop on Formal Techniques for Java-like Programs,FTfJP,CORE2023,C,none,none,4612,0,N/A +Workshop On Java For High-Performance Computing,JHPC,CORE2018,C,none,none,0803,0,N/A +Workshop on Job Scheduling Strategies for Parallel Processing,JSSPP,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/jsspp,4606,0,N/A +Workshop on Localized Algorithms and Protocols for Wireless Sensor Networks,LOCALGOS,CORE2018,C,none,none,0802,0,N/A +Workshop on Logic and Learning,L&L,CORE2018,C,none,none,0802,0,N/A +"Workshop on Logic, Language, Information and Computation",WoLLIC,CORE2023,C,See note,https://dblp.uni-trier.de/db/conf/wollic,4613,0,N/A +Workshop on Massive Data Algorithmics,Massive,CORE2018,C,none,none,0802,0,N/A +Workshop on Mobile Computing Systems and Applications,HOTMOBILE,CORE2023,National: USA,none,https://dblp.uni-trier.de/db/conf/wmcsa,4606,0,N/A +Workshop on Multiparadigm Programming with OO Languages,MPOOL,CORE2018,C,none,none,0803,0,N/A +Workshop on Nature Inspired Distributed Computing,NISDIC,CORE2018,C,none,none,0805,0,N/A +Workshop on Network-Related Data Management,NRDM,CORE2018,C,none,none,0804,0,N/A +Workshop on New Technologies for Personalized Information Access,PIA,CORE2018,C,none,none,0804,0,N/A +Workshop on Object-Oriented Database Systems,OODBS,CORE2018,C,none,none,0803,0,N/A +Workshop on Object-Oriented Development,WOOD,CORE2018,C,none,none,0803,0,N/A +Workshop on On-Line Algorithms,OLA,CORE2018,C,none,none,0802,0,N/A +Workshop on Parallel and Distributed Debugging ACM/ONR,PADD,CORE2018,C,none,none,0803,0,N/A +Workshop on Parameterized Complexity,WPC,CORE2018,C,none,none,0802,0,N/A