मेरे पास दुनिया भर में फैले सैकड़ों लम्बे-लम्बे बिंदु हैं, और उनमें से प्रत्येक के चारों ओर वृत्त-बहुभुज बनाने चाहिए, जिनका दायरा 1000 मीटर है। मैं समझता हूं कि अंकों को पहले मीटर (यूनिट्स) के साथ डिग्री (लाट लॉन्ग) से अनुमानित किया जाना चाहिए, लेकिन प्रत्येक बिंदु के लिए UTM- जोन को मैन्युअल रूप से खोजने और परिभाषित किए बिना ऐसा कैसे किया जा सकता है?
फ़िनलैंड में पहले बिंदु के लिए यहाँ एक mwe है।
library(sp)
library(rgdal)
library(rgeos)
the.points.latlong <- data.frame(
Country=c("Finland", "Canada", "Tanzania", "Bolivia", "France"),
lat=c(63.293001, 54.239631, -2.855123, -13.795272, 48.603949),
long=c(27.472918, -90.476303, 34.679950, -65.691146, 4.533465))
the.points.sp <- SpatialPointsDataFrame(the.points.latlong[, c("long", "lat")], data.frame(ID=seq(1:nrow(the.points.latlong))), proj4string=CRS("+proj=longlat +ellps=WGS84 +datum=WGS84"))
the.points.projected <- spTransform(the.points.sp[1, ], CRS( "+init=epsg:32635" )) # Only first point (Finland)
the.circles.projected <- gBuffer(the.points.projected, width=1000, byid=TRUE)
plot(the.circles.projected)
points(the.points.projected)
the.circles.sp <- spTransform(the.circles.projected, CRS("+proj=longlat +ellps=WGS84 +datum=WGS84"))
लेकिन दूसरे बिंदु (कनाडा) के साथ यह काम नहीं करता है (क्योंकि गलत यूटीएम-जोन)।
the.points.projected <- spTransform(the.points.sp[2, ], CRS( "+init=epsg:32635" ))
यह मैन्युअल रूप से प्राप्त करने और UTM- ज़ोन बिंदु प्रति बिंदु को निर्दिष्ट किए बिना कैसे किया जा सकता है? मेरे पास अक्षांश से अधिक प्रति बिंदु कोई भी जानकारी नहीं है।
अपडेट करें:
आंद्रेजे और माइक टी दोनों से महान उत्तरों का उपयोग करना और संयोजन करना, यहां दोनों संस्करणों और भूखंडों के लिए कोड है। वे 4 या दशमलव पर अलग हैं, लेकिन दोनों बहुत अच्छे जवाब!
gnomic.buffer <- function(p, r) {
stopifnot(length(p) == 1)
gnom <- sprintf("+proj=gnom +lat_0=%s +lon_0=%s +x_0=0 +y_0=0",
p@coords[[2]], p@coords[[1]])
projected <- spTransform(p, CRS(gnom))
buffered <- gBuffer(projected, width=r, byid=TRUE)
spTransform(buffered, p@proj4string)
}
custom.buffer <- function(p, r) {
stopifnot(length(p) == 1)
cust <- sprintf("+proj=tmerc +lat_0=%s +lon_0=%s +k=1 +x_0=0 +y_0=0 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs",
p@coords[[2]], p@coords[[1]])
projected <- spTransform(p, CRS(cust))
buffered <- gBuffer(projected, width=r, byid=TRUE)
spTransform(buffered, p@proj4string)
}
test.1 <- gnomic.buffer(the.points.sp[2,], 1000)
test.2 <- custom.buffer(the.points.sp[2,], 1000)
library(ggplot2)
test.1.f <- fortify(test.1)
test.2.f <- fortify(test.2)
test.1.f$transf <- "gnomic"
test.2.f$transf <- "custom"
test.3.f <- rbind(test.1.f, test.2.f)
p <- ggplot(test.3.f, aes(x=long, y=lat, group=transf))
p <- p + geom_path()
p <- p + facet_wrap(~transf)
p
(यह सुनिश्चित नहीं है कि अपडेट में प्लॉट कैसे प्राप्त करें)।