Data Sets
---------
.. jinja:: data
.. raw:: html
Since 2023, the EOS Collaboration has published a total of {{ datasets.keys() | length }} datasets.
The full list of data sets is given in the table below.
| ID |
Title |
Authors |
Links |
Publication |
{% set ns = namespace(year='3000') %}
{% for id, d in datasets.items() %}
{% set year = id.split('-')[0] %}
{% if ns.year > year %}
| {{ year }} |
{% set ns.year = year %}
{% endif %}
| {{ id }} |
{{ d.title }} |
{{ ', '.join(d.authors) }} |
{% if 'doi' in d %}
{% endif %}
|
{{ d.paper }} |
{% endfor %}