Algotel / Cores#

Algotel is a French-speaking conference on algorithms and telecommunications. CoRes is a French-speaking conference on networks and services. They regularly hold joint editions.

The cotel module (COres / algoTEL) maps the program committees of their joint editions, categorizing members into “Algotel” or “Cores” groups.

The cotels dictionary provides access to all covered editions.

[1]:
from gismap.lab_examples.cotel import cotels
sorted(cotels)
[1]:
[2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026]
[2]:
from gismap.utils.logger import logger
import logging
logger.setLevel(logging.ERROR)

2026 edition#

[3]:
groups = {"Algotel": {"color": "rgb(0, 119, 179)"}, "Cores": {"color": "rgb(198, 12, 48)"}, "moon": {"display": "Copains"}}
cotel = cotels[2026]()
cotel.update_authors()
cotel.update_publis()
cotel.expand()
cotel.show_html(groups=groups)
© GisMap 2025

The expand method adds external collaborators (displayed as “moons” around their main collaborators), which allows spotting further links between the Algotel and Cores communities.

2016 edition#

[4]:
cotel = cotels[2016]()
cotel.update_authors()
cotel.update_publis()
cotel.expand()
cotel.show_html(groups=groups)
© GisMap 2025