Published
Edited
Sep 22, 2022
Fork of base map
1 fork
2 stars
Insert cell
# Bentley's Lake Placid Gems
Insert cell
bbox2 = FileAttachment("BBox 2.geojson")
Insert cell
d3 = require("d3@6")
Insert cell
chart = {
const width = 960,
height = 900;
const svg = d3.create("svg")
.attr("viewBox", [100, 10, width-150, height-150]);

// Use Mercator projection
var projection = d3
.geoMercator()
.fitSize([width - 100, height - 100], 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");
//i'm not using the boundary lines, so I'm going to comment them out
/*
g.selectAll("path1") //d3 geopath
.data(boundary.features) //get data to define path
.enter() //there are more data than elements, this selects them
.append("path") //appends path to data
.attr('class','outlines')
.attr("d", path1) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", "none")
.style('stroke-opacity','1')
.style("stroke-width", '.5')
.style("stroke", "rgb(0,0,0)")
*/

g.selectAll("path2") //d3 geopath
.data(lpstreetsdef.features) //get data to define path
.enter() //there are more data than elements, this selects them
.append("path") //appends path to data
.attr('class','outlines')
.attr("d", path2) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", "none")
.style('stroke-opacity','1')
.style("stroke-width", '1')
.style("stroke", "rgb(0,0,0)")

g.selectAll("path3") //d3 geopath
.data(bldgs.features) //get data to define path
.enter() //there are more data than elements, this selects them
.append("path") //appends path to data
.attr('class','outlines')
.attr("d", path3) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", "rgb(240,240,240)")
.style("fill-opacity", ".5")
.style('stroke-opacity','.4')
.style("stroke-width", '.5')
.style("stroke", "rgb(0,0,0)")

var c = svg.selectAll("circle") //d3 geopath
.data(Spots)
.enter() //there are more data than elements, this selects them
.append("circle") //appends path to data
.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',colorType)
.attr('fill','green ')
.style('fill-opacity','1')
.style('stroke','black')
.style('stroke-width','.5')
.on('mouseover', spotText)
.on('mouseout', removespotText)

function colorType(d,i){
var color='black'

if(d.type=='Food'){color = 'yellow'}
if(d.type=='Fun'){color = 'Green'}
return color
}
function spotText(event,d){
d3.select(this).attr('fill' , 'yellow')

svg.append('text')
.attr('class','spots')
.attr('x','600')
.attr('y','430')
.attr('font-family','Helvetica')
.attr('font-size','.5cm')
.attr('text-anchor','start')
.attr('font-weight','bold')
.text (d.Name)

svg.append('text')
.attr('class','spots')
.attr('x','600')
.attr('y','460')
.attr('font-family','Helvetica')
.attr('font-size','.3cm')
.attr('text-anchor','start')
.attr('font-weight','normal')
.text (d.description)

svg.append('line')
.attr('class','spotLine')
.attr('x1','600')
.attr('y1','430')
.attr('x2',projection([d.long,d.lat])[0])
.attr('y2','430')
.style('stroke-width','1')
.style('stroke','black')
.style('stroke-dasharray','4 2')
svg.append('line')
.attr('class','spotLine')
.attr('x1',projection([d.long,d.lat])[0])
.attr('y1','430')
.attr('x2',projection([d.long,d.lat])[0])
.attr('y2',projection([d.long,d.lat])[1])
.style('stroke-width','1')
.style('stroke','black')
.style('stroke-dasharray','4 2')
}
function removespotText(event,d)
{d3.select(this).attr('fill','green')
d3.selectAll('text.spots').remove()
d3.selectAll('line.spotLine').remove()
}




return svg.node();
}
Insert cell
subSts = FileAttachment("sub_stops.geojson").json()
Insert cell
bldgs = FileAttachment("LPBF9-22-22@1.geojson").json()
Insert cell
bbox = FileAttachment("BBox 2.geojson").json()
Insert cell
subLns = FileAttachment("subway_lines.geojson").json()
Insert cell
boundary = FileAttachment("nyc_boundary.geojson").json()
Insert cell
lpstreetsdef = FileAttachment("LPSTREETSDEF.geojson").json()
Insert cell
Insert cell
Spots = d3.csv(Spotslink,d3.autoType)
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more