Public
Edited
Jul 17, 2024
Insert cell
Insert cell
chart = {
const width = 900,//pixel size of the map
height = 900;
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width-50, height-10]);

// Use Mercator projection
var projection = d3
.geoMercator()//projection system used
.fitSize([width, height], bbox_new);//out bounding box is here

var path = d3.geoPath().projection(projection);//need one of these for each line layer from qgis
var path2 = d3.geoPath().projection(projection);
var path3 = d3.geoPath().projection(projection);
var path4 = d3.geoPath().projection(projection);
var path5 = d3.geoPath().projection(projection);


var g = svg.selectAll('g').attr("id", "paths");//qgis lines variable //one variable for each geometry type
var c = svg.selectAll("circle")//for circles
var p = svg.selectAll("polyline")//for polylines from rhino
var t = svg.selectAll("text")



//static lines from qgis
//staticLines(path3, subways.features,"none",1,.5,"rgb(180,180,180)")
staticLines(path4, parks.features,"rgb(200,225,200)",'.25','.1',"rgb(0,255,0)")
staticLines(path5, dining_lines.features,"none",'1','.25',"rgb(255,0,0)")

function staticLines(path, data, sfill, sOpac, sW, stroke){

g.enter().append("path")
.data(data) //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", path) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", sfill)
.style('stroke-opacity',sOpac)
.style("stroke-width", sW)
.style("stroke", stroke)
}


//static points from qgis
staticCircles(restrooms.features,'2','black','1',"0")
staticCircles(theaters.features,'4','blue','1',"0")

function staticCircles(data,r,sfill, sOpac, sWidth){

c.enter().append('circle')
.data(data) //get data to define path
.enter() //there are more data than elements, this selects them
.append("circle") //appends path to data
.attr('cx',function(d) {return path.centroid(d)[0]})
.attr("cy",function(d) {return path.centroid(d)[1]})
.attr('r', r)
.attr('fill', sfill)
.style('fill-opacity',sOpac)
.style("stroke-width", sWidth)
}


//lines from rhino
polyline(graphic_test,'red','1','0','none')
polyline(face_outline,'rgb(255,255,0)','1','2','black')
polyline(eyes,'blue','1','1','black')
polyline(mouth,'none','1','3','red')
function polyline(data, sfill, sOpac, sW, stroke){

g.enter().append("polyline")
.data(data) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", function(d){return d}) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", sfill)
.style('stroke-opacity',sOpac)
.style("stroke-width", sW)
.style("stroke", stroke)
}


//adding icon for spreadsheet locations

p.enter().append("polyline")
.data(churches) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", icon)
.attr('transform',function(d) {return 'translate('+projection([d.Long,d.Lat])[0]+','+projection([d.Long,d.Lat])[1]+')'})
.style("fill",'purple')
.style("stroke-width",'.5')
.style("stroke",'black')
.on("mouseover",addText)
.on("mouseout",removeText)

//adding INTERACTIVE ZONE

p.enter().append("polyline")
.data(zone) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", function(d) {return d})
.style("fill", 'white')
.style('fill-opacity','0')
.style("stroke-width", '2')
.style("stroke", 'black')
.style('stroke-dasharray','5 5')
.on("mouseover", addWireframe)
.on("mouseout", removeWireframe)

function addWireframe(event,d){
svg
p.enter().append("polyline")
.data(axon)
.enter()
.append('polyline')
.attr('class','wireframe')
.attr("points", function(d) {return d})
.style("fill", 'none')
.style("stroke-width", '2')
.style("stroke", 'black')
.style('stroke-dasharray','5 5')
}
function removeWireframe(event,d){
svg.selectAll('polyline.wireframe').remove()
}
//points from SPREADSHEET
c.enter().append('circle')
.data(churches) //get data to define path
.enter() //there are more data than elements, this selects them
.append("circle") //appends path to data
.attr('class','spots')
.attr('cx',function(d) {return projection([d.Long,d.Lat])[0]})
.attr("cy",function(d) {return projection([d.Long,d.Lat])[1]})
.attr('r', 6)
.attr('fill', 'cyan')
.style('fill-opacity','1')
.style("stroke-width", "1")
.style("stroke", "black")
.on("mouseover",addText2)
.on("mouseout",removeText)
function addText(event,d){

svg //draw text at points
.append("text") //appends path to data
.attr('class','cText')
.attr('x',projection([d.Long,d.Lat])[0]+10)
.attr("y",projection([d.Long,d.Lat])[1]-10)
.attr('fill', 'black')
.style('font-family','helvetica')
.style("font-size", "10px") //https://developer.mozilla.org/en-US/docs/Web/CSS
.text(d.Name)

svg //draw text at fixed location
.append("text") //appends path to data
.attr('class','cText')
.attr('x',50)
.attr("y",400)
.attr('fill', 'black')
.style('font-family','helvetica')
.style("font-size", "10px") //https://developer.mozilla.org/en-US/docs/Web/CSS
.text(d.Description)

var wrap = svg.selectAll("text.cText")
.each(function(d, i) { wrap_text(d3.select(this), 100) });
}

function addText2(event,d){
//Text at points
svg //draw text
.append("text") //appends path to data
.attr('class','cText')
.attr('x',projection([d.Long,d.Lat])[0]+10)
.attr("y",projection([d.Long,d.Lat])[1]-10)
.attr('fill', 'black')
.style('font-family','helvetica')
.style("font-size", "10px") //https://developer.mozilla.org/en-US/docs/Web/CSS
.text('More text')
}
function removeText(){
svg.selectAll('text.cText').remove()
}

return svg.node();
}
Insert cell
axon = FileAttachment("Axon.txt").tsv({array:true})
Insert cell
zone = FileAttachment("Zone.txt").tsv({array:true})
Insert cell
icon = FileAttachment("Icon@1.txt").tsv({array:true})
Insert cell
churches = d3.csv(churchLink,d3.autoType)
Insert cell
Insert cell
mouth = FileAttachment("mouth.txt").tsv({array:true})
Insert cell
eyes = FileAttachment("eyes.txt").tsv({array:true})
Insert cell
face_outline = FileAttachment("face_outline.txt").tsv({array:true})
Insert cell
bbox_new = FileAttachment("bbox_new.geojson").json()
Insert cell
graphic_test = FileAttachment("graphic_test.txt").tsv({array:true})
Insert cell
bbox1 = FileAttachment("bbox@1.geojson").json()
Insert cell
theaters = FileAttachment("theaters.geojson").json()
Insert cell
restrooms = FileAttachment("restrooms.geojson").json()
Insert cell
subways = FileAttachment("subways.geojson").json()
Insert cell
parks = FileAttachment("parks.geojson").json()
Insert cell
dining_lines = FileAttachment("dining_lines.geojson").json()
Insert cell
Insert cell
spots = d3.csv(spotsLink,d3.autoType)
Insert cell
import { wrap_text, wrap_text_nchar } from "@ben-tanen/svg-text-and-tspan-word-wrapping"
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