|
| 1 | +# CORE Integration |
| 2 | + |
| 3 | +## Overview |
| 4 | + |
| 5 | +The CORE integration adds ranked conference and journal venue signals from the CORE/ICORE portal to assessment decisions. |
| 6 | + |
| 7 | +- **Conference source**: ICORE/CORE conference rankings portal |
| 8 | +- **Journal source**: CORE journal rankings portal (legacy/discontinued dataset) |
| 9 | +- **Classification**: Legitimate-list evidence for ranked entries |
| 10 | + |
| 11 | +## Data Sources |
| 12 | + |
| 13 | +### Conferences |
| 14 | +- **Portal**: `https://portal.core.edu.au/conf-ranks/` |
| 15 | +- **Default source filter**: `ICORE2026` |
| 16 | +- **Format**: HTML (paginated table) |
| 17 | +- **Fields used**: title, acronym, source, rank |
| 18 | + |
| 19 | +### Journals |
| 20 | +- **Portal**: `https://portal.core.edu.au/jnl-ranks/` |
| 21 | +- **Default source filter**: `CORE2020` |
| 22 | +- **Format**: HTML (paginated table) |
| 23 | +- **Fields used**: title, source, rank |
| 24 | + |
| 25 | +## Architecture |
| 26 | + |
| 27 | +### Data Source Components |
| 28 | +- **Module**: `src/aletheia_probe/updater/sources/core.py` |
| 29 | +- **Classes**: |
| 30 | + - `CoreConferenceSource` |
| 31 | + - `CoreJournalSource` |
| 32 | +- **Base class**: `DataSource` |
| 33 | +- **Update cadence**: Monthly (`30` days) |
| 34 | + |
| 35 | +### Backend Components |
| 36 | +- **Conference backend**: `src/aletheia_probe/backends/core_conferences.py` |
| 37 | +- **Journal backend**: `src/aletheia_probe/backends/core_journals.py` |
| 38 | +- **Base class**: `CachedBackend` |
| 39 | +- **Evidence type**: `LEGITIMATE_LIST` |
| 40 | +- **Cache TTL**: `24 * 30` hours |
| 41 | + |
| 42 | +### Configuration |
| 43 | +Defined in `src/aletheia_probe/config.py` (`DataSourceUrlConfig`): |
| 44 | +- `core_conference_rankings_url` |
| 45 | +- `core_journal_rankings_url` |
| 46 | +- `core_conference_default_source` |
| 47 | +- `core_journal_default_source` |
| 48 | + |
| 49 | +## Data Processing Rules |
| 50 | + |
| 51 | +1. Fetch paginated portal pages (`50` rows per page). |
| 52 | +2. Parse table rows into normalized venue entries. |
| 53 | +3. Keep only ranked entries with these rank labels: |
| 54 | + - `A*`, `A`, `B`, `C`, `Australasian B`, `Australasian C` |
| 55 | +4. Exclude non-ranked/non-classification statuses (for example `Unranked`, `National`, `Journal Published`, `Not ranked`, `not primarily CS`). |
| 56 | +5. Deduplicate by normalized name before writing to cache. |
| 57 | + |
| 58 | +## Metadata Stored |
| 59 | + |
| 60 | +Each CORE entry stores source metadata in `metadata`: |
| 61 | +- `source_url` |
| 62 | +- `core_entity_type` (`conference` or `journal`) |
| 63 | +- `core_source` (for example `ICORE2026`, `CORE2020`) |
| 64 | +- `core_rank` |
| 65 | +- `core_acronym` (conference source only) |
| 66 | + |
| 67 | +## Usage |
| 68 | + |
| 69 | +```bash |
| 70 | +# Sync only CORE conferences |
| 71 | +aletheia-probe sync core_conferences |
| 72 | + |
| 73 | +# Sync only CORE journals |
| 74 | +aletheia-probe sync core_journals |
| 75 | + |
| 76 | +# Normal sync includes CORE backends when enabled |
| 77 | +aletheia-probe sync |
| 78 | +``` |
| 79 | + |
| 80 | +## Limitations |
| 81 | + |
| 82 | +1. CORE journal rankings are legacy/discontinued and should be interpreted accordingly. |
| 83 | +2. Parsing depends on portal table structure and rank label conventions. |
| 84 | +3. Matching is normalized name based; source-side aliases/variants may still miss edge cases. |
| 85 | + |
| 86 | +## References |
| 87 | + |
| 88 | +- `src/aletheia_probe/updater/sources/core.py` |
| 89 | +- `src/aletheia_probe/backends/core_conferences.py` |
| 90 | +- `src/aletheia_probe/backends/core_journals.py` |
| 91 | +- `tests/unit/updater/test_core_source.py` |
| 92 | +- `tests/unit/backends/test_core_backends.py` |
| 93 | +- https://portal.core.edu.au/conf-ranks/ |
| 94 | +- https://portal.core.edu.au/jnl-ranks/ |
0 commit comments