library(reshape2)
library(data.table)
library(dplyr)
library(magrittr)
library(ggplot2)
library(scales)
library(gstat)
library(DescTools)
library(sp)
#I want a colorado grid#
data("colorado.grid")
#making cordinates into spatial points dataframe#
coordinates(Gold_tracer_kri) <- ~ long_orig + lat_orig
#attempt at kriging but no grid#
lzn.kriged <- krige(Au ~ 1, Gold_tracer_kri, colorado.grid, model=lzn.fit)
lzn.kriged %>% as.data.frame %>%
ggplot(aes(long_orig=long_orig, lat_orig=lat_orig)) + geom_tile(aes(fill=var1.pred)) + coord_equal() +
scale_fill_gradient(low = "yellow", high="red") +
scale_x_continuous(labels=comma) + scale_y_continuous(labels=comma) +
theme_bw()
data("meuse.grid")
Rでクリギングメソッドを使用しようとしていますが、データのグリッドが見つからないために行き詰まっています。私のデータは米国コロラド州全体を占めています。グリッドを取得してデータを埋め込むことができるようにしたいと考えています。私がフォローしている例で使用されているmeuse.gridに似ています。
どんな助けでもいただければ幸いです
sp
を使用したアプローチ下記のsf
バージョンを参照してください!
sp::makegrid
を使用してグリッドを作成できます
library(sp)
library(rgdal)
library(raster)
# load some spatial data. Administrative Boundary
us <- getData('GADM', country = 'US', level = 1)
us$NAME_1
colorado <- us[us$NAME_1 == "Colorado",]
# check the CRS to know which map units are used
proj4string(colorado)
# "+proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0"
# Create a grid of points within the bbox of the SpatialPolygonsDataFrame
# colorado with decimal degrees as map units
grid <- makegrid(colorado, cellsize = 0.1) # cellsize in map units!
# grid is a data.frame. To change it to a spatial data set we have to
grid <- SpatialPoints(grid, proj4string = CRS(proj4string(colorado)))
plot(colorado)
plot(grid, pch = ".", add = T)
ポリゴン内のポイントのみを抽出するには、`[`
を使用して、次のように場所に基づいてポイントをサブセット化します。
grid <- grid[colorado, ]
sf
を使用したアプローチlibrary(sf)
library(raster)
library(ggplot2)
# load some spatial data. Administrative Boundary
aut <- getData('GADM', country = 'aut', level = 0)
aut <- st_as_sf(aut)
# ggplot() +
# geom_sf(data = aut)
grid <- aut %>%
st_make_grid(cellsize = 0.1, what = "centers") %>% # grid of points
st_intersection(aut) # only within the polygon
# ggplot() +
# geom_sf(data = aut) +
# geom_sf(data = grid)