파이톤의 세계지도-24(도부현의 경계선, 각국의 주 등의 경계선)
형태 파일 다운로드
Natural Earth
http://www.naturalearthdata.com/downloads/
의
「Large scale data, 1:10m」 「Cultural」 「Admin 1 – States, Provinces」 「Download states and provinces」
다운로드
#!/usr/bin/python3
# coding: UTF-8
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from geonamescache import GeonamesCache
from matplotlib.patches import Polygon
from matplotlib.collections import PatchCollection
from mpl_toolkits.basemap import Basemap
font = {'family':'IPAGothic'} #日本語Fontを指定
map = Basemap(lon_0 = 155,resolution='i',projection='cyl')
map.drawcoastlines()
map.drawcountries()
map.drawmapboundary(fill_color='aqua')
map.fillcontinents(color='gray')
shapefile = 'ne_10m_admin_1_states_provinces/ne_10m_admin_1_states_provinces'
map.readshapefile(shapefile, 'prefectural_bound', color='#444444', linewidth=.2)
plt.show()
일본의 현경과 남북미 대륙을 제외한 세계 각국의 주 등의 경계선을 그렸다.
Reference
이 문제에 관하여(파이톤의 세계지도-24(도부현의 경계선, 각국의 주 등의 경계선)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ty21ky/items/88e1744da818ca994498텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)