Get the atmo categories data with info necessary to render the pngs and generate a legend.

GET /api/v1/atmo/classes?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

[
    {
        "label": "Bon",
        "label_fr": "Bon",
        "label_en": "Good",
        "label_pt": "Bom",
        "bounds_min": -1000.0,
        "bounds_max": 0.4,
        "legend_label": "< 0.4",
        "alert_code": "a0",
        "color": "#00FFFF89"
    },
    {
        "label": "Moyen",
        "label_fr": "Moyen",
        "label_en": "Medium",
        "label_pt": "Médio",
        "bounds_min": 0.4,
        "bounds_max": 0.6,
        "legend_label": null,
        "alert_code": "a1",
        "color": "#54C372FF"
    },
    {
        "label": "Dégradé",
        "label_fr": "Dégradé",
        "label_en": "Degraded",
        "label_pt": "Degradado",
        "bounds_min": 0.6,
        "bounds_max": 0.9,
        "legend_label": null,
        "alert_code": "a2",
        "color": "#FFFF00FF"
    },
    {
        "label": "Mauvais",
        "label_fr": "Mauvais",
        "label_en": "Bad",
        "label_pt": "Ruim",
        "bounds_min": 0.9,
        "bounds_max": 1.2,
        "legend_label": null,
        "alert_code": "a3",
        "color": "#EA4335FF"
    },
    {
        "label": "Très mauvais",
        "label_fr": "Très mauvais",
        "label_en": "Very bad",
        "label_pt": "Muito ruim",
        "bounds_min": 1.2,
        "bounds_max": 1.5,
        "legend_label": null,
        "alert_code": "a4",
        "color": "#980000FF"
    },
    {
        "label": "Extrêmement mauvais",
        "label_fr": "Extrêmement mauvais",
        "label_en": "Extremely bad",
        "label_pt": "Extremamente ruim",
        "bounds_min": 1.5,
        "bounds_max": 10000.0,
        "legend_label": "> 1.5",
        "alert_code": "a5",
        "color": "#674EA7FF"
    }
]