variables = [
{
label: "Média anual de poluição (µg/m³)",
labelBarChart: "Poluição média por ano (µg/m³)",
labelRanking: "Ranking por média de poluição",
labelTooltip: "média anual (µg/m³)",
name: "Poluição",
field: (d) => d.AVG_PM25,
domain: [0, 70],
thresholds: [5, 15, 25, 35],
range: ["#260800", "#662514", "#B26B59", "#E5B8AC", "#FFD6CC"].reverse()
},
{
label: "Baixo peso (por cem nascidos vivos)",
labelBarChart: "Baixo peso médio anual (por 100 N.V.)",
labelRanking: "Ranking por média de baixo peso",
labelTooltip: "por cem nascidos vivos",
name: "Baixo peso",
field: (d) => (100 * (d.BAIXO_PESO || 0)) / (d.TOTAL || 1),
domain: [0, 200],
thresholds: [5.2, 6.8, 8.3, 100],
range: ["#00261D", "#125948", "#4D9986", "#99CCC0", "#CEF2E9"].reverse()
},
{
label: "Óbitos perinatais (por mil nascidos vivos)",
labelBarChart: "Óbitos perinatais anuais (por mil N.V.)",
labelRanking: "Ranking por média de óbitos perinatais",
labelTooltip: "por mil nascidos vivos",
name: "Mort. Perinatal",
field: (d) => (1000 * (d.OBITOS_PERINATAIS || 0)) / (d.TOTAL || 1),
domain: [0, 20],
thresholds: [0, 0.6, 1.4,3.9],
range: ["#070040", "#291C8C", "#6359B2", "#A9A3D9", "#DDD9FF"].reverse()
},
{
label: "Óbitos neonatais (por mil nascidos vivos)",
labelBarChart: "Óbitos neonatais anuais (por mil N.V.)",
labelRanking: "Ranking por média de óbitos neonatais",
labelTooltip: "por mil nascidos vivos",
name: "Mort. Neonatal",
field: (d) => (1000 * (d.OBITOS_NEONATAIS || 0)) / (d.TOTAL || 1),
domain: [0, 30],
thresholds: [0, 0.7, 1.7,3.9],
range: ["#200040","#541C8C","#8659B2","#BEA3D9","#ECD9FF"].reverse()
},
{
label: "Óbitos infantis (por mil nascidos vivos)",
labelBarChart: "Óbitos infantis anuais (por mil N.V.)",
labelRanking: "Ranking por média de óbitos infantis",
labelTooltip: "por mil nascidos vivos",
name: "Mort. Infantil",
field: (d) => (1000 * (d.OBITOS_INFANTIS || 0)) / (d.TOTAL || 1),
domain: [0, 100],
thresholds: [0, 9, 14, 20],
range: ["#260024", "#661461", "#B259AD", "#E5ACE2", "#FFD9FD"].reverse()
},
{
label: "Índice de Desenvolvimento Humano (2010)",
labelBarChart: "Índice de Desenvolvimento Humano (2010)",
labelRanking: "Ranking por IDH (2010)",
labelTooltip: "",
name: "IDH 2010",
field: (d) => d.IDH || 0,
domain: [0.4, 0.9],
thresholds: [0.6, 0.65, 0.7, 0.75],
range: ["#001A40", "#1C498C", "#597DB2", "#A3B8D9", "#D9E8FF"].reverse()
}
]