getInfra: An Infrastructure Proxy Function

Description Usage Arguments Examples

Description

This function takes latitude and longitude coordinates from a data frame and downloads images from map servers for those coordinates. It will return the file sizes of those map images which can be used as a useful proxy for the level of infrastructure development. Map servers currently used are Google, Bing and Openstreetmap.

Usage

1
getInfra(dataFrame = NULL, server = "google", zoom = 14)

Arguments

dataFrame

The name of your data frame

server

The map server you want to use. Options are google, bing, and open. Defaults to google

zoom

The zoom level you want to use. Defaults to 14. Valid values for google are 0 to 22; values for bing are 1 to 19; values for open are 0 to 19

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# In this example, we'll build a very low resolution (two degrees per grid cell) grid of Japan,
# retrieve the map values from Bing at zoom level 14, and render a simple map.

# First, define the latitude and longitude bounds of Japan and create a data frame.
# (This uses a very restricted version of the territory of Japan for the sake of speed.)

lats <- rep(rev(seq(32,44, by=2)), each=7)
lngs <- rep(seq(130,142, by=2), 7)

coords <- data.frame(lats,lngs)

infraBing <- getInfra(dataFrame = coords, zoom=14, server="bing")

# Now that we have the values in the newly-created infraBing
# variable we can plot them.  First, we need to define our colour
# gamut, running from 0 to the maximum map value retrieved.

grey <- gray(0:max(infraBing) / max(infraBing))

# Now we can plot.

png(filename="japanInfraBing.png", width=480, height=480, units="px")
plot(lngs, lats, col=grey[infraBing], pch=15, cex=14)
dev.off()

infra documentation built on May 2, 2019, 8:55 a.m.

Related to getInfra in infra...