This should be an easy one but I just can't work it out. I have a dataframe with a lon and lat column, I'd like to make a list where the lon and lat values are in pairs.
The dataframe looks like this:
amenity name lat lon
0 school George Bath Elementary School 40.722452 -75.386650
1 school Dana L Lyon Elementary School 42.337774 -77.317131
2 school Bath Village School 44.168952 -71.963701
3 school Bath School 35.476832 -76.811605
4 school Hyde School 43.905080 -69.822825
I need a list like this:
[(40.722452, -75.386650), (42.337774, -77.317131), (44.168952, -71.963701)...]