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 made a map of Europe, where Russia and Turkey are still visible, but only to a certain degree. Using mapshaper I clipped the rest of those countries. The map looks like this when applying the command -proj laea (yes, I'm aware that Norway and Finland are clipped too much):
Now I'd like to render that map using the geoAzimuthalEqualArea projection from d3-geo. I use the projection like this (no extra settings):
geoAzimuthalEqualArea()
Why are the features on top and the right curved like that? Am I missing something?
Thanks already for any inputs or tips.
The text was updated successfully, but these errors were encountered:
This works as expected. Mapshaper has clipped the shapes in planar coordinates, and connects consecutive points on the edge with no intermediate points. d3-geo then does great circle interpolation between those points (so parallels become “curves”), and furthermore along a projection that doesn't convert meridians to straight lines (so meridians also become “curves”).
Hi
I made a map of Europe, where Russia and Turkey are still visible, but only to a certain degree. Using mapshaper I clipped the rest of those countries. The map looks like this when applying the command
-proj laea
(yes, I'm aware that Norway and Finland are clipped too much):Now I'd like to render that map using the geoAzimuthalEqualArea projection from d3-geo. I use the projection like this (no extra settings):
Why are the features on top and the right curved like that? Am I missing something?
Thanks already for any inputs or tips.
The text was updated successfully, but these errors were encountered: