I used mapproj package to convert set of lat/long into map projection (in this example lagrange). Next I used it to define several other points on the space. I now want to convert those new points back into lat/long, but mapproj does not offer such function, nor did I found it elsewhere.
cord<-data.frame(x, y)
lagrange<-mapproject(cord$x, cord$y, projection="lagrange")
#Some
#clustering
#here
#Here are cluster centers, but in the form of lagrange projection. I want a lat/long cord of them
cluster.centers
How to do it in R?