Displaying 1 result from an estimated 1 matches for "sppointreprj".
2012 Sep 02
1
why variations in accuracy between R to ARCGIS for the same point reprojection?
...projecting the data in GCS-WGS-1984 and then
reprojected it to Berhmann to ensure equal area distribution of the
points.
In R, I am using:
spPoint <-
SpatialPoints(coords=coordinates(Data),proj4string=CRS("+proj=longlat
+datum=WGS84"))
and then reprojecting it to Berhmann with:
spPointReprj=spTransform(Data,CRS("+proj=cea +lon_0=0 +lat_ts=30
+x_0=0 +y_0=0 +ellps=WGS84"))
If I put the two outputs of the reprojections in the same map, they
are off by few meters in the tropics by up to 40km in the poles.
I decided to investigate how the reprojections are done and my
cal...