Map Design
The process of creating effective maps
Learn the basic GIS concepts that go into making a map.
{
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);
}
}
});
}