Day Nine

26th June 2021

Focus on Toongabbie

Toongabbie (shaded in pink) straddles two SA4s; Blacktown and Parramatta

Map shows wheelchair accessible stations in the area

Log

Adding points to the map:

  1. Imported csv with longitude and latitude of train stations

  2. Filtered this based on the two SA4s

  3. Imported csv with longitude and latitude of train stations

  4. added following:

  5. const points = bounds
    .selectAll("circle")
    .data(trains)
    .join("circle")
    .attr("class", "circle")
    .attr("cx", d => projection([d.longitude, d.latitude])[0])
    .attr("cy", d => projection([d.longitude, d.latitude])[1])
    .attr("r", 4)

  6. Styled the circles in css