Wolfram Language

Geo Computation

Geodetic Areas

Compute areas of geodesic polygons on the Earth, using the default ellipsoidal model.

Area of a geodesic triangle on the Earth.

In[1]:=
Click for copyable input
polygon = Polygon[GeoPosition[{{0, 0}, {0, 90}, {90, 0}}]]
Out[1]=
In[2]:=
Click for copyable input
GeoArea[polygon]
Out[2]=
In[3]:=
Click for copyable input
GeoArea[polygon]; % == GeoArea["World"]/8
Out[3]=

Area of a continent.

In[4]:=
Click for copyable input
polygon = EntityValue[Entity["GeographicRegion", "Africa"], "Polygon"]
Out[4]=
In[5]:=
Click for copyable input
GeoArea[polygon]
Out[5]=

Land area in the world.

In[6]:=
Click for copyable input
polygon = EntityValue[Entity["GeographicRegion", "World"], "Polygon"];
In[7]:=
Click for copyable input
GeoArea[polygon]
Out[7]=

Less than 29% of the Earth's surface is land.

In[8]:=
Click for copyable input
GeoArea[polygon]; %/GeoArea["World"]
Out[8]=

Related Examples

es fr ja pt-br ru zh