Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Plotly map projection types

Tags:

plotly

Trying to find a list of the different types of projects available in plotly

Projection types from different sample:

projection = list(type = "equirectangular")
projection = list(type = 'azimuthal equal area'),
projection = dict(type = 'Mercator')

Any online documentation would be helpful

like image 310
xyn3rgy Avatar asked Aug 16 '15 23:08

xyn3rgy


2 Answers

Here's a more comprehensive listing of the world projections:

  1. Equirectangular
  2. Mercator
  3. Orthographic
  4. Natural earth
  5. Kavrayskiy7
  6. Miller
  7. Robinson
  8. Eckert4
  9. Azimuthal equal area
  10. Azimuthal equidistant
  11. Conic equal area
  12. Conic conformal
  13. Conic equidistant
  14. Gnomonic
  15. Stereographic
  16. Mollweide
  17. Hammer
  18. Transverse mercator

This github displays the different projections: http://etpinard.github.io/plotly-dashboards/map-projections/

A list of map projections (with images) is available on Wikipedia.

like image 198
Kendal Avatar answered Sep 29 '22 11:09

Kendal


Here's a dropdown with all of the supported projections:

https://plot.ly/python/dropdowns/

like image 39
user1561393 Avatar answered Sep 29 '22 11:09

user1561393