Published
Edited
May 5, 2021
2 stars
Insert cell
Insert cell
Insert cell
Insert cell
// Data here
Insert cell
rawData=[{"label":"Ensuring health, hygiene, and safety standards","value":0.8343},{"label":"Reduction in tourists","value":0.6686},{"label":"Financial challenges","value":0.6272},{"label":"Gain tourist trust","value":0.574},{"label":"Accurately recognize demand of source markets","value":0.2663}]






Insert cell
// Parameters here
Insert cell
title=""
Insert cell
subtitle=""

Insert cell
radius = 25
Insert cell
nWords =3
Insert cell
relativeRadiusMultiplier = 0.26
Insert cell
xOffsetMultiplier = 0.47
Insert cell
yOffsetMultiplier = 0.57
Insert cell
footerText = "n=169; Kathmandu Living Labs/C2M2 Kathmandu - Tourism Workforce Survey, April 2021"
Insert cell
textOffsetConstantX =-10
Insert cell
textOffsetConstantY =30
Insert cell
textAnchorAdjustment = 15
Insert cell
accentColor = "#A30B37"
Insert cell
selectedFont = "Roboto"
Insert cell
vizheight = getVizHeight()
Insert cell
width = 1200
Insert cell
expressAsSum = false
Insert cell
getTopPadding = () => {
if(title.length > 0) {
if(subtitle.length > 0) {
return 75
} else {
return 55;
}
}
if(subtitle.length > 0) {
return 45;
}
return 0;
}
Insert cell
getOperatorOffset = () => {
if(title.length > 0) {
if(subtitle.length > 0) {
return 50;
} else {
return 30;
}
}
if(subtitle.length > 0) {
return 30;
}
return 30;
}
Insert cell
getVizHeight = () => {
if(title.length > 0) {
if(subtitle.length > 0) {
return baseHeight * numRows + 50;
} else {
return baseHeight * numRows + 50;
}
}
if(subtitle.length > 0) {
return baseHeight * numRows + 50;
}
return baseHeight * numRows;
}
Insert cell
baseHeight = 400
Insert cell
Insert cell
completeFlag = (arr, valuekey) => {
const finalArr = [];
arr.forEach((d) => {
finalArr.push({
label: d.label,
data: [{...d},{label: null, value: 1-d.value} ]
})
})
return finalArr
}
Insert cell
Insert cell
covidEffects = completeFlag(rawData)
Insert cell
Insert cell
Insert cell
d3.range(3)
Insert cell
Insert cell
d3.cross([0, 1, 2], [3, 4, 5])
Insert cell
d3.cross(d3.range(3), d3.range(3))
Insert cell
Insert cell
d3.zip([0, 1, 2], ['cat', 'dog', 'mouse'])
Insert cell
Insert cell
numRows = covidEffects.length > numCols ? Math.ceil(covidEffects.length / numCols) : 1
Insert cell
numCols = 3
Insert cell
Insert cell
coordinates = d3.cross(d3.range(numRows), d3.range(numCols))
Insert cell
Insert cell
gridPositions = coordinates.map(([row, col]) => ({row, col}))
Insert cell
Insert cell
pairings = d3.zip(covidEffects, gridPositions)
Insert cell
Insert cell
data = pairings.map(([data, pos]) => ({...data, ...pos}))
Insert cell
Insert cell
style = html`
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=${selectedFont}:ital@0,wght:400,700;1&display=swap;">

<style>
body, svg {
font-family: '${selectedFont}', serif;
// background-color:#f4f6f8;
/* font-size: 48px; */
}
</style>
`
Insert cell
textSplitter = (text, nWords) => {
console.log(text);
const lineLength = nWords;
const nLines = text.split(" ").length > nWords ? Math.ceil(text.split(" ").length / lineLength) : 1
let splitText = []
let a=""
for(let i=0;i<=nLines; i++) {
a = text.split(" ").filter((d, j) => {return (j < i * lineLength) && (j >= (i-1) * lineLength)}).join(" ");
splitText.push(a);
}
const firstElement = splitText.shift();
return splitText
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
download = require('https://bundle.run/downloadjs@1.4.7')
Insert cell
htmlToImage = import('https://unpkg.com/html-to-image@1.6.0/es/index.js?module')
Insert cell
Insert cell
Insert cell
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