-
Couldn't load subscription status.
- Fork 22
Open
Description
This issue is related to what was mentioned in the PR for global meshes about the stereographic distortion.
Close to the poles, the triangles get distorted and don't have the right equilateralness.
As mentioned,
it has to do with the forces being too powerful
To solve this issue, I have implemented a parametric law in the mesh_generator():
def _parametric(lat):
ones = np.ones(lat.shape)
res = ((90 - lat) * 2 + 18) / 180 * np.pi
return np.minimum(res, ones)and illustrated it in the following python notebook
I will propose a PR with this parametric law. But I am still not convinced this is the best way to go..
The meshes look almost perfect closer to the poles now:


Keen to get another opinion on this.
Metadata
Metadata
Assignees
Labels
No labels