Public
Edited
Apr 12, 2023
Fork of base map
1 fork
Insert cell
# Funky R&B Data
Insert cell
d3 = require("d3@6")
Insert cell
chart = {
const width = 960,
height = 900;
const svg = d3.create("svg")
.attr("viewBox", [50, 50, width-100, height-100]);

var projection = d3
.geoMercator()
.fitSize([width - 50, height - 50], bbox);

var path1 = d3.geoPath().projection(projection);
var path2 = d3.geoPath().projection(projection);
var path3 = d3.geoPath().projection(projection);

var g = svg.append("g").attr("id", "paths");


g.selectAll("path3")
.data(bourough.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path3)
.style("fill", "rgb(240,240,240)")
.style("fill-opacity", ".5")
.style('stroke-opacity','.4')
.style("stroke-width", '.5')
.style("stroke", "rgb(0,0,0)")

g.selectAll("path3")
.data(park.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path3)
.style("fill", "green")
.style("fill-opacity", ".2")
.style('stroke-opacity','.4')
.style("stroke-width", '.5')
.style("stroke", "rgb(0,0,0)")

g.selectAll("path3")
.data(pond.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path3)
.style("fill", "blue")
.style("fill-opacity", ".2")
.style('stroke-opacity','.4')
.style("stroke-width", '.5')
.style("stroke", "rgb(0,0,0)")

var c = svg.selectAll("circle")
.data(spots)
.enter()
.append("circle")
.attr("cx", function(d) {return projection([d.long,d.lat])[0]})
.attr("cy", function(d) {return projection([d.long,d.lat])[1]})
.attr('r',3)
.attr('fill','black')
.style('fill-opacity','1')
.on('mouseover', spotText)
.on('mouseout', removespotText)

function spotText(event,d){
d3.select(this).attr('fill','yellow')

svg.append('text')
.attr('class', 'spots')
.attr('x', '150')
.attr('y', '150')
.attr('font-family','Helvetica')
.attr('font-size', '1em')
.attr('text-anchor', 'start')
.attr('font-weight','bold')
.text(d.who)

svg.append('text')
.attr('class', 'spots')
.attr('x', '150')
.attr('y', '165')
.attr('font-family','Helvetica')
.attr('font-size', '.7em')
.attr('text-anchor', 'start')
.attr('font-weight','normal')
.text(d.describtion)

svg.append('line')
.attr('class','spotLine')
.attr('x1','150')
.attr('y1','150')
.attr('x2','350')
.attr('y2','150')
.style('stroke-width', '1')
.style('stroke', 'black')

/*
svg.append('image')
.attr('href',streetLines)
.attr('class','spots')
.attr('x', '0')
.attr('y','0')
.attr('width', 960)
.attr('height', 900)
*/
}
function removespotText(event,d){
d3.select(this).attr('fill','black')
d3.selectAll('text.spots').remove()
d3.selectAll('line.spotLine').remove()
}

return svg.node();
}
Insert cell
park = FileAttachment("Parksfs v1.geojson").json()
Insert cell
pond = FileAttachment("Waterfs v1.geojson").json()
Insert cell
bbox = FileAttachment("Boudry v1@1.geojson").json()
Insert cell
bourough = FileAttachment("Bouroughv1.geojson").json()
Insert cell
Insert cell
spots = d3.csv(spotsLink,d3.autoType)
Insert cell
Insert cell
dashcode = FileAttachment("border@1.txt").tsv({array:true})
Insert cell
borderlinestart = FileAttachment("borderline.txt").tsv({array:true})
Insert cell
borderline = {
const width = 1200,
height = 800;
const svg = d3.create("svg")
.attr("viewBox", [0, -800, width, height]);


var p = svg.selectAll("polyline")
.data(borderlinestart) //get data to define path
.enter() //there are more data than elements, this selects them
.append("polyline") //appends path to data
.attr('points', function(d){return d})
.style("fill", "lightgrey")
.style('stroke-opacity','1')
.style("stroke-width", '0')
.style("stroke", "rgb(0,0,0)")
return svg.node();
}
Insert cell
border = {
const width = 1200,
height = 800;
const svg = d3.create("svg")
.attr("viewBox", [0, -800, width, height]);


var p = svg.selectAll("polyline")
.data(dashcode) //get data to define path
.enter() //there are more data than elements, this selects them
.append("polyline") //appends path to data
.attr('points', function(d){return d})
.style("fill", "rgb(60,60,60)")
.style('stroke-opacity','1')
.style("stroke-width", '0')
.style("stroke", "rgb(0,0,0)")
return svg.node();
}
Insert cell
// var names = music.map(d => d.name);
// var types = music.map(d => d.type);
viewof Artists = Inputs.select([null].concat(musicians.map(d => d.who)), {label: "Artist"});
Insert cell
dashboard =

html`


<div class='dashboardOuter' style='height:808px;width:1600px'>

<div class='border' style='position:absolute;width:1200px;top:0px;left:0px'>
${border}
</div>
<div class='border' style='position:absolute;width:1200px;top:0px;left:40px'>
${borderline}
</div>

<div class='soundcloud' style='position:absolute;width:100px;top:10px;left:25px'>
${soundcloudSymbol2}
</div>
<div class='indexes' style='position:absolute;top:25px;left:750px;color:grey;font-family:helvetica;font-size:20px'>
${md` Hustle: `}
</div>

<div class='indexes' style='position:absolute;top:25px;left:900px;color:grey;font-family:helvetica;font-size:20px'>
${md` Popularity: `}
</div>


<div class='indexes' style='position:absolute;top:0px;left:140px;color:white;font-family:helvetica;font-size:35px'>
${md` **UPCOMING NYC RAPPERS** `}
</div>
<div class='indexes' style='position:absolute;top:100px;left:50px;color:rgb(120,120,250);font-family:sans-serif;font-size:35px'>
${md` **Your Label** `}
</div>


<div class='map' style='position:absolute;width:700px;top:120px;left:482.5px'>
${chart}
</div>

<div class='controls' style='position:absolute;width:400px;top:205px;left:45px';font-family:sans-serif;font-size:35px>
${viewof Artists}
{md ` Band description: ${(bandInfo[0].description)}`}
{md ` Net worth: ${(bandInfo[0].networth)}`}


</div>


</div>

`
Insert cell
soundcloudSymbol2 = FileAttachment("soundcloud symbol 2@1.png").image()
Insert cell
music2 = d3.csv(spotsLink,d3.autoType)

Insert cell
musicians = music2.filter(d => d.type === "Name");
Insert cell
viewof Description = Inputs.text(
"",
{label: "Description"}
);


viewof Description,
() => {
const selectedArtist = music.find(d => d.who === Artists.value);
return selectedArtist ? selectedArtist.description : "";
}
);
Insert cell
Hustle=80
Insert cell
Popularity=23
Insert cell
function createRectangle(thickness, length, color) {
const rect = d3.create("svg:rect")
.attr("width", thickness)
.attr("height", length)
.attr("fill", color)
.attr("stroke", "none");
return rect.node();
}
Insert cell
function createHustleBar(Hustle) {
let length, color;
if (Hustle >= 66 && Hustle <= 100) {
length = 200;
color = 'green';
} else if (Hustle >= 33 && Hustle <= 65) {
length = 133;
color = 'yellow';
} else {
length = 70;
color = 'red';
}
createRectangle(25, length, color);
}
Insert cell
createHustleBar(Hustle)
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