{
const color = d3.scaleLinear().range([0,1]).domain(d3.extent(PAEPAData,d=>+d.pct_pub_transport));
const palette = d3.interpolateOranges;
const svg = d3.select(DOM.svg(width, height))
console.log(PAEPAData)
console.log(pa)
var EPAKeys = {}
PAEPAData.forEach((d,i)=> EPAKeys[d.fips] = d.pct_pub_transport)
console.log(EPAKeys)
svg.selectAll("path").append('path')
.data(pa.features)
.join("path")
.attr('d', pathGeneratorPA)
.attr("fill", d=>palette(color(EPAKeys[d.properties.GEOID])))
.attr('stroke', '#999999')
.attr('stroke-width', '2')
svg.append('circle')
.attr('cx', ProjectedNLInn2[0])
.attr('cy', ProjectedNLInn2[1])
.attr('r', 5)
.attr('fill', '#000000')
.attr('stroke', 'none')
return svg.node()
}