Python スクリプトから R スクリプトを実行したいと考えています。異なる座標系で緯度経度座標を投影するには、R スクリプトが必要です。これを行うための 2 つのオプションを検討しました。最初のオプションでは、緯度と経度の座標を以下に示す R スクリプトに解析します。最後に、R スクリプトが x と y を Python スクリプトに返すようにしたいと思いますが、これを行う方法がわかりません。
project<-function(lat,lon){
library(sp)
library(rgdal)
xy <- cbind(x = lon, y = lat)
S <- SpatialPoints(xy)
proj4string(S) <- CRS("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs")
Snew <- spTransform(S, CRS("+proj=sterea +lat_0=52.15616055555555 +lon_0=5.38763888888889 +k=0.9999079 +x_0=155000 +y_0=463000 +ellps=bessel +units=m +no_defs"))
x <- coordinates(Snew)[1]
y <- coordinates(Snew)[2]
return(x,y)
}
2 番目のオプションとして、緯度と経度が既に含まれている R スクリプトを下部に使用することを検討しました。これを python から subprocess.Popen('Rscript project.r', shell=True).wait() で実行しようとしましたが、うまくいかないようです。xy.txt ファイルは書き込まれません。ただし、これを cmd ラインから実行すると、R スクリプトが機能します。これら 2 つのオプションのいずれかについて、誰が手伝ってくれますか?
library(sp)
library(rgdal)
lat <- 52.29999924
lon <- 4.76999998
xy <- cbind(x = lon, y = lat)
S <- SpatialPoints(xy)
proj4string(S) <- CRS("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs")
Snew <- spTransform(S, CRS("+proj=sterea +lat_0=52.15616055555555 +lon_0=5.38763888888889 +k=0.9999079 +x_0=155000 +y_0=463000 +ellps=bessel +units=m +no_defs"))
x <- coordinates(Snew)[1]
y <- coordinates(Snew)[2]
cat(x, file="xy.txt",sep="")
cat(y,file="xy.txt",append=TRUE)