R mapproj lambert-azimuthal equal area projection

这一生的挚爱 提交于 2019-12-10 10:14:48

问题


How can I do a lambert-azimuthal equal area projection with the mapproj package? http://cran.r-project.org/web/packages/mapproj/mapproj.pdf

There is

azequalarea() equal-area

and

lambert(lat0,lat1) conformal, true scale on lat0 and lat1

What one is closests to lambert-azimuthal equal area projection?


回答1:


In package mapproj, and the function mapproject(), it seems that the Lambert-azimuthal equal area projection would be azequalarea() since lambert(lat0,lat1) is the Lambert Conformal Conic projection (since it is listed in the manual in the Polar conic projections symmetric about the Prime Meridian).

In package GEOmap, the projection is done using function lamaz.eqarea().

In package rgdal, it is done with a call to function spTransform() containing a proj4 string starting with +proj=laea.



来源:https://stackoverflow.com/questions/12725458/r-mapproj-lambert-azimuthal-equal-area-projection

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!