Many More Projections
Version 11 greatly extends the list of supported cartographic projections.
There are currently 151 projections with a spherical model, which is almost four times the number present in the previous version of the Wolfram Language.
In[1]:=
Short[projections = GeoProjectionData["Spherical"], 4]
Out[1]//Short=
They can be classified according to several criteria. Each projection belongs to several classes. For example, the Mercator projection is a cylindrical projection with the additional property of being conformal.
In[2]:=
GeoProjectionData["Mercator", "Classes"]
Out[2]=
These are all the cylindrical projections currently available.
In[3]:=
GeoProjectionData["Azimuthal"]
Out[3]=
In[4]:=
GeoProjectionData["Cylindrical"]
Out[4]=
These are all classes of all projections with a spherical model.
In[5]:=
classes = GeoProjectionData[#, "Classes"] & /@ projections;
They can be separated into different types as follows. The "PseudoCylindrical" type is the most common.
In[6]:=
Tally[First /@ classes]
Out[6]=
These are examples of each of those nine types.
show complete Wolfram Language input
Out[8]=