R 在ggmap创建的绘图上围绕lat/long点的圆半径

R 在ggmap创建的绘图上围绕lat/long点的圆半径,r,ggmap,R,Ggmap,我想知道是否有人使用ggmap绘制了一个围绕lat/long点的圆半径?例如,我想画一个给定的点,然后在这个点周围2500英尺的半径范围内绘制和着色。我脑子里有一个想法,如何使用大圆周长公式来做这件事,但我想我会先在这里检查一下 我致力于构建一个简单的黑客程序,虽然不完全是我想象中的那个圈子,但它现在会起作用 library(ggmap) ##__________________________________________________________________ ### earth.

我想知道是否有人使用
ggmap
绘制了一个围绕lat/long点的圆半径?例如,我想画一个给定的点,然后在这个点周围2500英尺的半径范围内绘制和着色。我脑子里有一个想法,如何使用大圆周长公式来做这件事,但我想我会先在这里检查一下

我致力于构建一个简单的黑客程序,虽然不完全是我想象中的那个圈子,但它现在会起作用

library(ggmap)
##__________________________________________________________________
### earth.dist I found on r-bloggers. I believe it now belongs to the fossil package. 
earth.dist <- function ( lat1,long1,lat2, long2)
{
  rad <- pi/180
  a1 <- lat1 * rad
  a2 <- long1 * rad
  b1 <- lat2 * rad
  b2 <- long2 * rad
  dlon <- b2 - a2
  dlat <- b1 - a1
  a <- (sin(dlat/2))^2 + cos(a1) * cos(b1) * (sin(dlon/2))^2
  c <- 2 * atan2(sqrt(a), sqrt(1 - a))
  R <- 6378.145
  d <- R * c
  # this I changed to return feet instead of KM
  return(d* 3280.8)
}

##__________________________________________________________________
## Function to output polygon to map
BoxGon <- function(Lat,Long,feet){

    for(i in 1:1000){
    point = Long - i/1000
    Dist <- earth.dist(Lat,Long, Lat,point)
    if(Dist >  feet){
                    West <- cbind(Lat,point)
                    break}
    }

    for(i in 1:1000){
    point = Long + i/1000
    Dist <- earth.dist(Lat,Long, Lat,point)
    if(Dist >  feet){
                    East <- cbind(Lat,point)
                    break}
    }

    for(i in 1:1000){
    point = Lat + i/1000
    Dist <- earth.dist(Lat,Long, point,Long)
    if(Dist >  feet){
                    North <- cbind(point,Long)
                    break}
    }   

    for(i in 1:1000){
    point = Lat - i/1000
    Dist <- earth.dist(Lat,Long, point,Long)
    if(Dist >  feet){
                    South <- cbind(point,Long)
                    break}
    }   

    return(rbind(West,North,East,South,West))
}

##__________________________________________________________________
df = BoxGon(37.295844, -121.898057,5000)
df = as.data.frame(df)
colnames(df) <- c('Latitude','Longitude')

map <- get_map(location = 'san,jose', zoom = 12)
map <-  ggmap(map)

# we select - 1 because once we map in pairs. IE once we have the last record there is nothing for that record to map to
for(i in 1:nrow(df)-1){
latlon <-  head(df,2)
map <-  map + geom_polygon(data=latlon,aes(x=Longitude,y=Latitude),alpha=0.1,size = 1,colour="green",fill="green")
df = df[-1,]
print(i)
}
map <- map + geom_polygon(aes(x=-121.898057,y=37.295844),alpha=0.1,size = 6,colour='Purple',fill='Purple')
库(ggmap)
##__________________________________________________________________
###我在r-bloggers上找到earth.dist。我相信它现在属于化石包。
地球距离