Public
Edited
Aug 17, 2024
6 stars
Insert cell
Insert cell
Insert cell
{
let canvas = document.createElement('canvas');
let ctx = canvas.getContext('2d');
let w = width// * 2
let r = 32
canvas.width = w
canvas.height = w

let xs = d3.scaleLinear()
.domain([-1, 1])
.range([64, w - 64])
let ys = d3.scaleLinear()
.domain([-1, 1])
.range([w - 64, 64])
ctx.globalAlpha = 0.85
let xp = imgvsjson == "image" ? "ix" : "x"
let yp = imgvsjson == "image" ? "iy" : "y"
pokemonSprited.forEach((p,i) => {
ctx.drawImage(p.s64, 0, 0, 64, 64, xs(p[xp]), ys(p[yp]), r, r)
// ctx.drawImage(p.s64, 0, 0, 64, 64, xs(p.ix), ys(p.iy), r, r)
})

return canvas
}
Insert cell
Insert cell
<div style="width: 1180px">
<div style="display:flex; flex-direction: row; flex-wrap:wrap;">
${typed.map(d => {
return htl.html`<div style="width:84px; border: 1px solid lightgray; padding: 4px; margin: 4px; border-radius: 4px;">
<img width=84 src="${d.s256.src}"><br>
<span style="font-size:8px; font-family: Roboto, sans-serif; text-align:center; display: inline-block; width: 100%">${d.name}</span>
</div>`
})}
</div>
</div>
Insert cell
scopes-002-input@1.parquet
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
scopes-001-image-embs.parquet
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
pokemon
Insert cell
pokemonSprited = pokemon.map((p,i) => {
return {
...p,
ix: imgEmbs[i].x,
iy: imgEmbs[i].y,
s64: getSprite(p, 64),
s256: getSprite(p, 256)
}
})
Insert cell
Insert cell
typed = pokemonSprited.filter(d => d[poketype])
Insert cell
img = getSprite(typed[0])
Insert cell
function getSprite(p, size = 256) {
let columns = 33
let canvas = document.createElement('canvas');
let ctx = canvas.getContext('2d');
canvas.width = size;
canvas.height = size;
let index = pokemon.indexOf(p);
// Calculate the x and y position of the sprite in the sprite sheet
let x = (index % columns) * size;
let y = Math.floor(index / columns) * size;

// Draw the sprite onto the canvas
ctx.drawImage(size == 256 ? all256 : all64, x, y, size, size, 0, 0, size, size);

// Create an image object and set the src to the data URL of the canvas
let img = new Image();
img.src = canvas.toDataURL();

return img;
}
Insert cell
all256 = FileAttachment("all-256.jpg").image()
Insert cell
all64 = FileAttachment("all-64.png").image()
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
<div style="width: 1180px">
<div style="display:flex; flex-direction: row; flex-wrap:wrap;">
<div style="border: 1px solid lightgray; padding: 4px; margin: 4px; border-radius: 4px;">
<img width=256 src="${poke.s256.src}"><br>
<span style="font-family: Roboto, sans-serif; display: inline-block; width: 100%">
${poke.name}
</span>
<span>
<!-- Type: ${poke.types.map(t => htl.html`<span>${t}</span>`)}<br> -->
Type: ${poke.types.join("-")}<br>
</span>
<span>
Generation: ${poke.generation}<br>
</span>
<p>
${description.description}
</p>
</div>
</div>
</div>
Insert cell
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