R का उपयोग कैसे किया जा सकता है
- 200 मीटर वर्ग / उप-बहुभुज में एक आकृति को विभाजित करें ,
- नीचे दिए गए मूल नक्शे पर इस ग्रिड (प्रत्येक वर्ग के लिए आईडी नंबर) को प्लॉट करें और
- मूल्यांकन जिसमें वर्ग विशिष्ट भौगोलिक निर्देशांक स्थित हैं ।
मैं जीआईएस में एक शुरुआत कर रहा हूं और यह शायद एक बुनियादी सवाल है, लेकिन मुझे आर में यह कैसे करना है पर एक ट्यूटोरियल नहीं मिला है।
मैंने अब तक एनवाईसी की एक आकृति लोड कर रहा है और कुछ अनुकरणीय भौगोलिक निर्देशांक की साजिश रच रहा है।
मैं एक उदाहरण (R कोड) की तलाश कर रहा हूं कि नीचे दिए गए डेटा के साथ यह कैसे किया जाए।
# Load packages
library(maptools)
# Download shapefile for NYC
# OLD URL (no longer working)
# shpurl <- "http://www.nyc.gov/html/dcp/download/bytes/nybb_13a.zip"
shpurl <- "https://www1.nyc.gov/assets/planning/download/zip/data-maps/open-data/nybb_13a.zip"
tmp <- tempfile(fileext=".zip")
download.file(shpurl, destfile=tmp)
files <- unzip(tmp, exdir=getwd())
# Load & plot shapefile
shp <- readShapePoly(files[grep(".shp$", files)])
plot(shp)
# Define coordinates
points_of_interest <- data.frame(y=c(919500, 959500, 1019500, 1049500, 1029500, 989500),
x =c(130600, 150600, 180600, 198000, 248000, 218000),
id =c("A"), stringsAsFactors=F)
# Plot coordinates
points(points_of_interest$y, points_of_interest$x, pch=19, col="red")