7

次のスクリプトでは、多数の点のペアを読み取り、マップ上に線を描画します。私は ggmap を使用して、Google からマップを取得し、この行をプロットしています。

source('./library/latlong2state.R')

library(maps)
library(mapproj)
library(mapdata)
library(geosphere)
library(ggmap)

fileName = "_CanadaData/CanadaHospitalComplete.csv"

getLineColor <- function(val) {
  pal <- colorRampPalette(lineColours)
  colors <- pal(80)
  val.log <- log(val)

  if (val > 50) {
    col <- colors[80]
  } else {
    colindex <- max(1, round( 80 * val / 50))
    col <- colors[colindex]
  }
  return(col)
}

# Load the data
location <- read.csv(fileName, stringsAsFactors=FALSE)

# Omit locations that are not on the map of focus (not needed for city maps unless they are on a border)
location$state <- latlong2state(data.frame(location$lng, location$lat))
location$nearstate <- latlong2state(data.frame(location$lngnear, location$latnear))
location <- na.omit(location)

createMap <- function(bbox, thedata, mapzoom=3, linesize=0.6, pointsize=2) {
  basemap <- get_map(location=bbox, zoom=mapzoom, source='google', maptype="roadmap", color="color")
  ggmap(basemap) + geom_segment(aes(x=lng, xend=lngnear, y=lat, yend=latnear, color=dist_miles), size=0.6, data=thedata) + geom_point(aes(x=lngnear, y=latnear), size=2, color="#000000", border="black", data=thedata) + scale_color_gradient(low="blue", high="red", limits=c(0, max(thedata$dist_miles))) + coord_map("orthographic")
}

# Country bounding box c(left, bottom, right, top)
canada <- c(-140.920514, 42.016722, -52.524864, 83.2911)
createMap(canada, location)

残念ながら、これにより、カナダの北緯が原因で、マップの上部で距離に大きな歪みが生じます。

カナダの病院までの距離

projection=mapprojection(orthographic)これは、正射図に切り替えることで簡単に修正できます。また、createMap 関数内に追加することで、線のプロット方法の投影を変更できますが、Google から取得した地図画像の投影を変更することはできません。 Web メルカトル図法。ggmap を使用してこれを行う方法はありますか、それとも別のパッケージを試す必要がありますか? もしそうなら、あなたは何をお勧めしますか?

4

1 に答える 1