I'm looking for a source that describes how the Robinson projection is calculated. I'm going to use this for converting long/lat into Robinson coordinates in both R and in javascript.
Tell me more
×
Geographic Information Systems Stack Exchange is a question and answer site for
cartographers, geographers and GIS professionals. It's 100% free, no registration required.
|
|
You can use proj4 library which is present in R. I haven't used it before so you have to find out how to parse the options. You can project coords in the Robinson transformation with proj4 like this:
you can find more information for more options and other projections and as well how to read and project files with coordinates in the manual |
|||
|
|
|
if you are looking for description of Robinson here it is: http://en.wikipedia.org/wiki/Robinson_projection and algorithm in JS you can download from here: https://github.com/afar/robinson_projection and script descrition is here: http://www.flashmap.org/robinson-projection-in-as3-gpl/ |
|||
|
|