data = d3.csvParse(csvString, d3.autoType).map(e => ({
...e,
ID: e.n,
URL: e.repositorio,
IMGURL: imgUrl + e.id,
CONT: e.descripcion && e.descripcion.trim().length > 0 ? e.descripcion : "NI",
otros: e.otros === "False" ? false : e.otros == "True" ? true : e.otros
}))