You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm no expert and basically going off wikipedia here, but wouldn't it be more intuitive to use the mean radius instead? The arithmetic mean, equal area, and equal volume radius are all 6371 km.
BTW, piggybacking on this issue, we should be able to convert a Geodesic() (maybe Ellipsoidal()?) to Spherical() using the same sphericalization parameters as PROJ does for ellipsoids. Here's a link:
The ellipsoid definition may be augmented with a spherification flag,
turning the ellipsoid into a sphere with features defined by the ellipsoid.
Spherification parameters supported are:
R_A, which gives a sphere with the same surface area as the
ellipsoid R_V, which gives a sphere with the same volume as the
ellipsoid
R_a, which gives a sphere with R = (a + b)/2 (arithmetic mean)
R_g, which gives a sphere with R = sqrt(a*b) (geometric mean)
R_h, which gives a sphere with R = 2*a*b/(a+b) (harmonic mean)
R_lat_a=phi, which gives a sphere with R being the arithmetic mean
of of the corresponding ellipsoid at latitude phi.
R_lat_g=phi, which gives
a sphere with R being the geometric mean of of the corresponding
ellipsoid at latitude phi.
R_C, which gives a sphere with the radius of the conformal sphere
at phi0.
In the new GeometryOpsCore, the radius defaults to the earth's radius at the equator:
GeometryOps.jl/GeometryOpsCore/src/types.jl
Lines 62 to 64 in 9c6db7d
I'm no expert and basically going off wikipedia here, but wouldn't it be more intuitive to use the mean radius instead? The arithmetic mean, equal area, and equal volume radius are all 6371 km.
https://en.wikipedia.org/wiki/Earth_radius#Global_radii
The text was updated successfully, but these errors were encountered: