So I have a dataframe with 2 rows, it looks like this:
latitude longitude
0 39.696103 -84.138461
1 39.696103 -84.138461
2 39.696103 -84.138461
3 39.696103 -84.138461
4 39.696103 -84.138461
note that the latitude and longitude are not always the same, but clearly at this time, the person was in the same place
Now there are many search engines online in which I can give a latitude and longitude and it will tell me the location. So my question is:
What modules can I use and what about them do I use that will be able to run these values through the search engine, take the outputted location, and put it in a list so that I can use the following code to make a 3rd column:
df['location'] = location_list
After everything works out the following dataframe should look as such:
latitude longitude location
0 39.696103 -84.138461 Dayton, OH 45429, USA
1 39.696103 -84.138461 Dayton, OH 45429, USA
2 39.696103 -84.138461 Dayton, OH 45429, USA
3 39.696103 -84.138461 Dayton, OH 45429, USA
4 39.696103 -84.138461 Dayton, OH 45429, USA
If it's helpful, I use this website for the conversion