지리적 위치의 그리드
새로운 함수 CoordinateBoundsArray와 CoordinateBoundingBoxArray를 사용하여 특정 간격 수치 값의 다차원 배열을 생성할 수 있습니다.
미국 경위도의 경계를 계산합니다.
In[1]:=
{lat, lon} = GeoBounds[Entity["Country", "UnitedStates"]]
Out[1]=
여기서 간격 폭 2도의 좌표의 배열을 생성합니다.
In[2]:=
arr = CoordinateBoundsArray[QuantityMagnitude@{lon, lat}, 2];
배열에서 지리적 격자를 작성합니다.
In[3]:=
grid = GeoGridPosition[arr, "Equirectangular"];
In[4]:=
pos = GeoPosition[grid]
Out[4]=
지도에 좌표를 플롯합니다.
In[5]:=
GeoGraphics[Point[pos], GeoGridLines -> Automatic]
Out[5]=
다른 투영법의 점을 플롯합니다.
In[6]:=
GeoGraphics[Point[pos], GeoGridLines -> Automatic];
Show[%, GeoProjection -> "Mollweide"]
Out[6]=
In[7]:=
{lat, lon} = GeoBounds[Entity["Country", "UnitedStates"]];
Show[%, GeoProjection -> "Mollweide"];
Show[%, GeoProjection -> "Mercator"]
Out[7]=