Wolfram 언어

향상된 지리 시각화

투영의 위선과 경선의 격자

이 함수는 지도 투영법으로 투영한 후 위선 및 경선에 의한 완전한 격자를 각각 빨간색과 파란색으로 그릴 수 있습니다.

In[1]:=
Click for copyable input
graticule[proj_] := With[{centering = {0, 0, 1.5}, diff = Quantity[10, "AngularDegrees"]}, Framed[Labeled[ GeoGraphics[GeoRange -> "World", GeoProjection -> {proj, "Centering" -> centering}, GeoGridLines -> diff, GeoGridLinesStyle -> {Red, Blue}, GeoBackground -> None, PlotRangePadding -> Scaled[0.1]], proj]] ]

다음의 세가지 예제를 살펴봅니다.

In[2]:=
Click for copyable input
graticule["Armadillo"]
Out[2]=
In[3]:=
Click for copyable input
graticule["AmericanPolyconic"]
Out[3]=
In[4]:=
Click for copyable input
graticule["Bonne"]
Out[4]=

구형 모델 151개의 프로젝션에 관한 모든 위도 경도 격자를 계산합니다.

In[5]:=
Click for copyable input
plots = graticule /@ GeoProjectionData["Spherical"];

충분히 작은 이미지 크기를 사용하여 그들을 래스터화합니다.

In[6]:=
Click for copyable input
images = Rasterize[#, ImageSize -> 200] & /@ plots;

이미지 콜라주를 구축합니다.

In[7]:=
Click for copyable input
ImageCollage[images]
Out[7]=

관련 예제

de en es fr ja pt-br ru zh