chart = {
const width = 960,
height = 900;
const svg = d3.create("svg")
.attr("viewBox", [ 250, 110, width -800, height -700]);
var projection = d3
.geoMercator()
.fitSize([width - 500, height - 5], zips);
var path = d3.geoPath().projection(projection);
var path2 = d3.geoPath().projection(projection);
var g = svg.append("g").attr("id", "paths");
g.selectAll("path")
.data(zips.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.style("fill", "white")
.style('fill-opacity','.5')
.style("stroke-width", ".25")
.style("stroke", "rgb(0, 25, 51)")
g.selectAll("path2")
.data(Amtrak_Routes.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.style('fill-opacity','0')
.style("stroke-width", ".1")
.style("stroke", "rgb(0,0,0)")
g.selectAll("circle")
.data(AmtrakSts.features)
.enter()
.append("circle")
.attr('cx',function(d) {return path.centroid(d)[0]})
.attr("cy",function(d) {return path.centroid(d)[1]})
.attr('r',1.5)
.attr('fill','rgb(0,0,0)')
.style('fill-opacity','1')
return svg.node();
}