在我的工作中,我一直在对内部软件进行一些维护,这些软件声称实现了“立体投影”,其公式是很久以前从旧系统中复制的。
从我所看到的,它似乎实现了EPSG的“ Oblique and Equatorial Stereographic”(代码9809)。但是有一个步骤我无法确定。我们的代码中使用的“ R”值是使用以下参数计算的:
(phi_n, lambda_n) - null distortion coordinates
(PHI_nc, LAMBDA_nc) - conformal null distortion coordinates
(PHI_o, LAMBDA_o) - conformal projection origin coordinates
e - eccenttricity
r_eq - earth radius at equator
鉴于此,获得R的公式为:
a = 1 + cos(PHI_nc) * cos(PHI_o) * cos(LAMBDA_nc - LAMBA_o)
b = sin(PHI_nc) * sin(PHI_o)
c = 2 * cos(PHI_nc) * [1 - (sin(phi_n) * e/2) ^ 2] ^ 1/2
R = r_eq * cos(phi_n) * (a + b) / c
有人知道这是怎么回事吗?我一直在搜索和阅读有关立体投影的信息,但找不到类似的东西。实际上,我还没有看到使用此“零变形坐标”的任何投影。