reverse geocoding to extract address components
问题 I'm trying to reverse geocode with R. I first used ggmap but couldn't get it to work with my API key. Now i'm trying it with googleway. newframe[,c("Front.lat","Front.long")] Front.lat Front.long 1 -37.82681 144.9592 2 -37.82681 145.9592 newframe$address <- apply(newframe, 1, function(x){ google_reverse_geocode(location = as.numeric(c(x["Front.lat"], x["Front.long"])), key = "xxxx") }) This extracts the variables as a list but I can't figure out the structure. I'm struggling to figure out how