Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have points in geographic coordinate system and I wanted to convert them to swiss grid (CH1903+).

Sample data:

 id       lon      lat
  2 7.173500 45.86880
  3 7.172540 45.86887
  4 7.171636 45.86924
  5 7.180180 45.87158
  6 7.178070 45.87014
  7 7.177229 45.86923  
  8 7.175240 45.86808
  9 7.181409 45.87177
  10 7.179299 45.87020

Respected Results:

id       E              N       
2     2579408.2431  1079721.1499
3     2579333.7158  1079729.1852
4     2579263.6502  1079770.1125
5     2579928.0358  1080028.4605
6     2579763.6471  1079868.9218
7     2579698.0756  1079767.9762
8     2579543.1019  1079640.6512
9     2580023.6226  1080049.2672
10    2579859.1889  1079875.2740 
share|improve this question
What have you tried? have you looked at the task views on CRAN? – Justin Jan 4 at 20:03
1  
I think the rgdal package can. you can also try the r-sig-geo mailing lists. But Ari's link should get you all the way there. – Justin Jan 4 at 20:24
1  
whuber has already posted an answer that appears authoratative. The raster package has code that appears to define the CH1903 projection: – DWin Jan 4 at 21:30
1  
On the help page for the "Switzerland" dataset: crs="+proj=somerc +lat_0=46.95240555555556 +lon_0=7.439583333333333 +k_0=1 +x_0=600000 + y_0=200000 +ellps=bessel + towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs") – DWin Jan 4 at 21:36
1  
@DWin There appear to be typos in that specification for x_0 and y_0: they are missing their most significant digits! – whuber Jan 4 at 21:44
show 6 more comments

closed as off topic by Ari B. Friedman, mdsumner, Matt Parker, Justin, competent_tech Jan 5 at 1:40

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Illustrating a method that assumes those are linear transformations of each other ... probably not valid since these are probably on a spheroid. Let's assume those are named inp and inp2:

> Sc.inp <- scale(inp)
> Sc.inp2 <- scale(inp2)

> inp$E <- attr(Sc.inp2, "scaled:center")['E'] +(  # offset from larger scale set
         inp$lon-attr(Sc.inp, "scaled:center")['lon'])* centr "lon" times ratio scales
               attr(Sc.inp2, "scaled:scale")['E']/attr(Sc.inp, "scaled:scale")['lon']

> inp$N <- attr(Sc.inp2, "scaled:center")['N'] +( 
         inp$lat-attr(Sc.inp, "scaled:center")['lat'])*
            attr(Sc.inp2, "scaled:scale")['N']/attr(Sc.inp, "scaled:scale")['lat']

> inp
  id      lon      lat       E       N
1  2 7.173500 45.86880 2579408 1079721
2  3 7.172540 45.86887 2579334 1079729
3  4 7.171636 45.86924 2579263 1079770
4  5 7.180180 45.87158 2579928 1080028
5  6 7.178070 45.87014 2579764 1079869
6  7 7.177229 45.86923 2579698 1079768
7  8 7.175240 45.86808 2579544 1079641
8  9 7.181409 45.87177 2580023 1080049
9 10 7.179299 45.87020 2579859 1079876
share|improve this answer
Would u plz explain what are inp and inp2? How I can put my table in the code? – Topdombili Jan 4 at 20:54
They are Sample data = inp and "Respected Results" = inp2 you offered which cioudn't have been their real names since they contan spaces. I don't know what you mean by "my table". – DWin Jan 4 at 20:58
By "my table" I meant the table includes coordinates. – Topdombili Jan 4 at 21:05
Other than the two "tables" of coordinates you offered, what other table are you referring to? – DWin Jan 4 at 21:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.