Map Design
The process of creating effective maps
A collection of basic GIS guides designed for public health professionals to improve their spatial literacy.
{
const targets = document.querySelectorAll('.listing-ojs-target');
targets.forEach(target => {
const codeString = target.getAttribute('data-ojs-code');
if (codeString) {
try {
target.innerHTML = '';
const graph = new Function('Plot', 'd3', `return ${codeString}`)(Plot, d3);
if (graph) {
target.appendChild(graph);
}
} catch (e) {
console.error("Failed to render OJS code for card:", e);
}
}
});
}