Public
Edited
Dec 4, 2023
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
// Define closeModal function first
function closeModal() {
// Remove the modal from the body
document.querySelector('.modal').remove();
}
Insert cell
// Modify the showToolTip function to conditionally display an icon
showToolTip = (text, coords, legality) => {
const tooltip = d3.select(".tooltip");
tooltip.text(text);
// Add icon based on legality
if (legality === 'Y') {
tooltip.append("img")
.attr("src", "path/to/icon.png") // Replace with the actual path to your icon
.attr("class", "legality-icon");
}
tooltip.style("top", coords[1] + "px")
.style("left", coords[0] + "px")
.style("visibility", "visible");
}
Insert cell
cScale = d3.scaleLinear()
.domain([
1,
10])
.range([-1, 0, 1])
.interpolate((a, b) => a < 0
? t => d3.interpolateBlues(t)
: t => d3.interpolateReds(1-t))

Insert cell
outline = ({ type: "Sphere" })
Insert cell
projection = d3.geoNaturalEarth1()
Insert cell
path = d3.geoPath(projection)
Insert cell
height = {
const [[x0, y0], [x1, y1]] = d3.geoPath(projection.fitWidth(width, outline)).bounds(outline);
const dy = Math.ceil(y1 - y0), l = Math.min(Math.ceil(x1 - x0), dy);
projection.scale(projection.scale() * (l - 1) / l).precision(0.2);
return dy;
}
Insert cell
// Load additional data file with legality information
legalityData = d3.csvParse(await FileAttachment("legality_1.csv").text(), d => {
return {
country: d.Country,
year: +d.Year,
legality: d.Legality
};
});
Insert cell
// Modify the countries function to include legality information
countries = {
const entities = d3.group(data, d => d.country, d => d.year);
const countries = topojson.feature(world, world.objects.countries);
countries.features.forEach(country => {
country.properties.data = entities.get(country.properties.name);
// Find legality information for the country and year
const legalityInfo = legalityData.find(legality => legality.country === country.properties.name);
if (legalityInfo) {
country.properties.legality = legalityInfo.legality;
}
})
return countries
}
Insert cell
data = d3.csvParse(await FileAttachment("Interpolated_Data_Cleaned.csv").text(), d => {
if (d.country === "United States") {
d.country = "United States of America"
}
return {
country: d.Country,
year: +d.Year,
wave: +d.Wave,
country_code: +d.Country_Code,
mean_homo: +d.mean_homo }
} )
Insert cell
{for (let i = 0; i < data.length; i++) {
data[i].Year += cars[i] + "<br>";
}}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
// Modify the showModal function to include legality information in the modal content
function showModal(country, year, legality) {
const modalContent = html`
<div class="modal-content">
<span class="close" onclick=${() => closeModal()}>&times;</span>
<p>Country: ${country}</p>
<p>Year: ${year}</p>
<p>Legality: ${legality}</p>
<!-- Add other modal content as needed -->
</div>`;
const modal = html`<div class="modal">${modalContent}</div>`;
document.body.appendChild(modal);
}
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more