Getting country coordinates from latitude and longitude

I'm trying to get the name of the given country (latitude, longitude) using coordinates2politics()

from a package RDSTK

:

library(dplyr)
library(plyr)
library(rjson)
library(RDSTK)

df2 <- df %>%
  mutate(politics = coordinates2politics(place_lat, place_lon),
         country = ldply(fromJSON(coordinates2politics(place_lat, place_lon)), 
                         data.frame)[["politics.name"]]) 

      

Here coordinates2politics(latitude, longitude)

returns a JSON string which I convert to dataframe to extractpolitics.name

In df2

, I get the correct value politics

(which is the whole JSON string), but the wrong value forcountry

  • Using this method (convert to dataframe) how can I get an item from a JSON string?
  • Would there be a more efficient method to retrieve an item from a JSON string?
  • Is there a better way to get the country name from a given latiude / longitude (other than using a package RDSTK

    )?

df1

> dput(head(df1, 10L))
structure(list(place_lat = c(-23.682803, 30.109684, 36.232855, 
26.674996, 40.655138, 40.00134, 44.0752271, 32.230987, -9.5333295, 
38.3045585), place_lon = c(-46.5955455, -93.767675, -115.223125, 
-81.816602, -73.9487755, -74.1880345, -103.2334107, -90.1580165, 
-35.6871125, -92.4367735), location = c("South West", "North West", 
"North West", "North West", "North West", "North West", "North West", 
"North West", "South West", "North West"), sentiment = c("positive", 
"positive", "neutral", "positive", "neutral", "positive", "positive", 
"neutral", "positive", "neutral"), id = 1:10), .Names = c("place_lat", 
"place_lon", "location", "sentiment", "id"), row.names = c(NA, 
10L), class = "data.frame")

      

df2

> dput(head(df2, n=2L))
structure(list(place_lat = c(-23.682803, 30.109684), place_lon = c(-46.5955455, 
-93.767675), location = c("South West", "North West"), sentiment = c("positive", 
"positive"), id = 1:2, politics = structure(c("[\n  {\n    \"politics\": [\n      {\n        \"type\": \"admin2\",\n        \"friendly_type\": \"country\",\n        \"name\": \"Brazil\",\n        \"code\": \"bra\"\n      },\n      {\n        \"type\": \"admin4\",\n        \"friendly_type\": \"state\",\n        \"name\": \"São Paulo\",\n        \"code\": \"br32\"\n      }\n    ],\n    \"location\": {\n      \"latitude\": -23.682803,\n      \"longitude\": -46.5955455\n    }\n  }\n]", 
"[\n  {\n    \"politics\": [\n      {\n        \"type\": \"admin2\",\n        \"friendly_type\": \"country\",\n        \"name\": \"United States\",\n        \"code\": \"usa\"\n      },\n      {\n        \"type\": \"constituency\",\n        \"friendly_type\": \"constituency\",\n        \"name\": \"Eighth district, TX\",\n        \"code\": \"48_08\"\n      },\n      {\n        \"type\": \"admin6\",\n        \"friendly_type\": \"county\",\n        \"name\": \"Orange\",\n        \"code\": \"48_361\"\n      },\n      {\n        \"type\": \"admin4\",\n        \"friendly_type\": \"state\",\n        \"name\": \"Texas\",\n        \"code\": \"us48\"\n      },\n      {\n        \"type\": \"admin5\",\n        \"friendly_type\": \"city\",\n        \"name\": \"Orange\",\n        \"code\": \"48_54132\"\n      },\n      {\n        \"type\": \"admin5\",\n        \"friendly_type\": \"city\",\n        \"name\": \"Pinehurst\",\n        \"code\": \"48_57608\"\n      },\n      {\n        \"type\": \"admin5\",\n        \"friendly_type\": \"city\",\n        \"name\": \"\",\n        \"code\": \"_\"\n      }\n    ],\n    \"location\": {\n      \"latitude\": 30.109684,\n      \"longitude\": -93.767675\n    }\n  }\n]"
), .Names = c("http://www.datasciencetoolkit.org/coordinates2politics/-23.682803%2c-46.5955455", 
"http://www.datasciencetoolkit.org/coordinates2politics/30.109684%2c-93.767675"
)), country = structure(c(1L, 1L), .Label = "Brazil", class = "factor")), .Names = c("place_lat", 
"place_lon", "location", "sentiment", "id", "politics", "country"
), row.names = 1:2, class = "data.frame")   

      

+3


source to share


2 answers


This is an alternative way (one of many) to get country names from lat / lon. This will not require any API calls to the server. (Save the GeoJSON file locally for real / production use):

library(rgdal)
library(magrittr)

world <- readOGR("https://raw.githubusercontent.com/AshKyd/geojson-regions/master/data/source/ne_50m_admin_0_countries.geo.json", "OGRGeoJSON")

places %>%
  select(place_lon, place_lat) %>%
  coordinates %>%
  SpatialPoints(CRS(proj4string(world))) %over% world %>%
  select(iso_a2, name) %>%
  cbind(places, .)

##    place_lat  place_lon   location sentiment id iso_a2          name
## 1  -23.68280  -46.59555 South West  positive  1     BR        Brazil
## 2   30.10968  -93.76767 North West  positive  2     US United States
## 3   36.23286 -115.22312 North West   neutral  3     US United States
## 4   26.67500  -81.81660 North West  positive  4     US United States
## 5   40.65514  -73.94878 North West   neutral  5     US United States
## 6   40.00134  -74.18803 North West  positive  6     US United States
## 7   44.07523 -103.23341 North West  positive  7     US United States
## 8   32.23099  -90.15802 North West   neutral  8     US United States
## 9   -9.53333  -35.68711 South West  positive  9     BR        Brazil
## 10  38.30456  -92.43677 North West   neutral 10     US United States

      



You can get more detailed location data using the gadm2 shapefile, but this is huge and takes a while (even on my system) to load:

# this takes _forever_
big_world <- readOGR("gadm2.shp", "gadm2")

# this part takes a while, too, so best save off temp results
big_res <- places %>%
  select(place_lon, place_lat) %>%
  coordinates %>%
  SpatialPoints(CRS(proj4string(big_world))) %over% big_world

big_res %>%
  select(iso_a2=ISO, name=NAME_0, name_1=NAME_1, name_2=NAME_2) %>%
  cbind(places, .)

##    place_lat  place_lon   location sentiment id iso_a2          name       name_1           name_2
## 1  -23.68280  -46.59555 South West  positive  1    BRA        Brazil    São Paulo          Diadema
## 2   30.10968  -93.76767 North West  positive  2    USA United States        Texas           Orange
## 3   36.23286 -115.22312 North West   neutral  3    USA United States       Nevada            Clark
## 4   26.67500  -81.81660 North West  positive  4    USA United States      Florida              Lee
## 5   40.65514  -73.94878 North West   neutral  5    USA United States     New York            Kings
## 6   40.00134  -74.18803 North West  positive  6    USA United States   New Jersey            Ocean
## 7   44.07523 -103.23341 North West  positive  7    USA United States South Dakota       Pennington
## 8   32.23099  -90.15802 North West   neutral  8    USA United States  Mississippi           Rankin
## 9   -9.53333  -35.68711 South West  positive  9    BRA        Brazil      Alagoas Maceió (capital)
## 10  38.30456  -92.43677 North West   neutral 10    USA United States     Missouri           Miller

      

+1


source


If you can use the package geonames

, you can request this service instead.

> require(geonames) 
> options(geonamesUsername="myusername")

      

You need a vector version of the GNCountryCode function:

> vg = Vectorize(GNcountryCode)

      



Then dplyr:

> df1 %>% mutate(cc=unlist(vg(place_lat, place_lon)["countryCode",]))
   place_lat  place_lon   location sentiment id cc
1  -23.68280  -46.59555 South West  positive  1 BR
2   30.10968  -93.76767 North West  positive  2 US
3   36.23286 -115.22312 North West   neutral  3 US
4   26.67500  -81.81660 North West  positive  4 US
5   40.65514  -73.94878 North West   neutral  5 US
6   40.00134  -74.18803 North West  positive  6 US
7   44.07523 -103.23341 North West  positive  7 US
8   32.23099  -90.15802 North West   neutral  8 US
9   -9.53333  -35.68711 South West  positive  9 BR
10  38.30456  -92.43677 North West   neutral 10 US

      

Use "countryName" if you want a name, but you get "Federative Republic of Brazil" for what everyone else calls "Brazil" (or "Brazil").

+1


source







All Articles