Skip to content
Prev 9821 / 29559 Next

Projections and Transformations with Garmin GPS Coordinates?

Breitbach, Nils wrote:

            
Yes, that?s the correct EPSG code for longitude and latitude in WGS 84.
Yes.
It?s deprecated. http://spatialreference.org/ref/epsg/2166/ says to use 2397 
instead. But as you mention, there are several EPSG codes for Gauss-Kruger 
zone 3. You can try all of them, and see which fits best with yout data 
(note that some of them have an identical proj4string, and will therefore 
give the same output).

Note that the list of codes is also available inside R:

library(rgdal)
epsg=make_EPSG()
epsg[grepl("Gauss.*zone 3(\\D|$)", epsg$note), 1:2]

I find this easier to use than the search engine at Spatial Reference.