问题描述
如何使用mapproj软件包进行Lambert-azimuthal等面积投影?
How can I do a lambert-azimuthal equal area projection with the mapproj package?http://cran.r-project.org/web/packages/mapproj/mapproj.pdf
有
和
什么是关闭到lambert-azimuthal等于投影?
What one is closests to lambert-azimuthal equal area projection?
推荐答案
在包 mapproj
中,函数 mapproject()
,似乎Lambert-azimuthal等面积投影将是 azequalarea()
,因为 lambert (lat0,lat1)
是Lambert Conformal Conic投影(因为它在code中的手册中列出了关于Prime Meridian对称的极地圆锥投影)
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
).
在包 GEOmap
中,投影是使用函数 lamaz .eqarea()
。
In package GEOmap
, the projection is done using function lamaz.eqarea()
.
在包 rgdal
中,功能 spTransform()
包含一个以 + proj = laea
开头的proj4字符串。
In package rgdal
, it is done with a call to function spTransform()
containing a proj4 string starting with +proj=laea
.
这篇关于R mapproj lambert-azimuthal等面积投影的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!