파이톤의 세계지도-24(도부현의 경계선, 각국의 주 등의 경계선)

3805 단어 BasemapPython
일본의 현경, 세계 각국의 주 등 분계선(남북미 대륙이 없음)의 형상 문서를 이용한다.
형태 파일 다운로드
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()

일본의 현경과 남북미 대륙을 제외한 세계 각국의 주 등의 경계선을 그렸다.

좋은 웹페이지 즐겨찾기