reorganize files

This commit is contained in:
2025-01-30 16:28:56 +02:00
parent 594a5fc0d5
commit f8bb71a184
94 changed files with 2 additions and 25 deletions

View File

@@ -0,0 +1,38 @@
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"width": 500,
"height": 500,
"marks": [
{
"type": "image",
"encode": {
"enter": {
"url": {
"value": "data/treemap-uk.png"
},
"x": {
"value": 0
},
"y": {
"value": 0
},
"width": {
"value": 500
},
"height": {
"value": 500
},
"aspect": {
"value": true
},
"align": {
"value": "left"
},
"baseline": {
"value": "top"
}
}
}
}
]
}