"GeographicRegion" 多边形
新的地理实体领域 "GeographicRegion" 可以描述整个大陆和其他类型的地理实体.
非洲作为一个地理区域实体代表整个大陆.
In[1]:=
africa = EntityValue[Entity["GeographicRegion", "Africa"],
EntityProperty["GeographicRegion", "Polygon"]]
Out[1]=
In[2]:=
GeoGraphics[{EdgeForm[White], FaceForm[Red], africa},
GeoBackground -> "Satellite"]
Out[2]=
还可以获取非洲所有国家的外形.
In[3]:=
africacountries =
EntityValue[Entity["GeographicRegion", "Africa"],
EntityProperty["GeographicRegion", "PolygonCountryBoundaries"]];
In[4]:=
GeoGraphics[{EdgeForm[White], FaceForm[Red], africacountries},
GeoBackground -> "Satellite"]
Out[4]=