figures = {
let d = {
1: {
image: await FileAttachment("image@2.png").image(),
caption: html`An unfiltered view of the entire network of performers without community-detecting algorithm enabled.`
},
2: {
image: await FileAttachment("image@3.png").image(),
caption: html`An unfiltered view of the entire network of performers with a community-detecting algorithm (Louvain) enabled.`
},
3: {
image: await FileAttachment("image@4.png").image(),
caption: html`A filtered view of the network of performers connected to more than 15 other performers, with a community-detecting algorithm (Louvain) enabled and forces pulling communities together.`
},
4: {
image: await FileAttachment("image@5.png").image(),
caption: html`Advertisement in the <em>New York Daily News</em>.`
},
5: {
image: await FileAttachment("image@6.png").image(),
caption: html`Detail from Advertising booklet, “Legpads” Sherman P. Camp, New York: undated, Kokoon Arts Club and Philip Kaplan papers, Special Collections and Archives, Kent State University Libraries.`
},
6: {
image: await FileAttachment("image@8.png").image(),
caption: html`A filtered view of the entire network of people involved in the U.S. drag collective in the 1930s highlights Jack Mason’s position in relation to others. The red nodes are directly and secondarily connected to him, and the red edges show his connection to them.`
},
7: {
image: await FileAttachment("image@9.png").image(),
caption: html`A visual representation of the performers in the dataset, each appearing as a freestanding node divided into three swarms. From left to right are represented performers who appeared (1) only in a solo act, (2) in a mix of solo and group acts, and (3) only in a group together with other performers, in a nightclub or theatre performance.`
},
8: {
image: await FileAttachment("image@10.png").image(),
caption: html`A visual representation of the connections in early attempts to visualize the relationships between performers, venues, and cities.`
},
9: {
image: await FileAttachment("image@11.png").image(),
caption: html`A visual representation of the “overcrowding” of datapoints due to the three different types of nodes in the original visualization.`
},
10: {
image: await FileAttachment("image@12.png").image(),
caption: html`A visual representation of relaying multiple dimensions of metadata through edges between the nodes in the finished network visualization, foregrounding the social aspect of the network.`
},
11: {
image: await FileAttachment("image@13.png").image(),
caption: html`A filtered view of the entire network of people involved in the U.S. drag collective in the 1930s highlights Fay Norman’s position in relation to others. The red nodes are directly and secondarily connected to her, and the red edges show her connection to them.`
},
12: {
image: await FileAttachment("image.png").image(),
caption: html`A blurry and dimly lit photo of one of the Gay Boy Revue members in the Baldwinsville, NY courtroom from <em>Syracuse Journal</em>, April 4, 1935, 1.`
},
13: {
image: await FileAttachment("image@1.png").image(),
caption: html`One of the Gay Boy Revue advertisements announcing “See It—Live It—Dance It” from <em>Syracuse Journal</em>, March 29, 1935, 41.`
},
}
d = Object.keys(d).map(k=>Object.assign(d[k], {
figure: html`
<div class="figure">
${d[k].image}
<p><strong>Figure ${k}.</strong> ${d[k].caption}</p>
</div>
`
}))
return d
}