Menu

[r4543]: / trunk / py4science / examples / basemap2.py  Maximize  Restore  History

Download this file

23 lines (21 with data), 638 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
import pylab, numpy
from matplotlib.toolkits.basemap import Basemap
# create figure.
fig = pylab.figure()
# create map by specifying width and height in km.
resolution = 'l'
projection = 'lcc'
lon_0 = -50
lat_0 = 60
width = 12000000
height = 0.75*width
m = Basemap(lon_0=lon_0,lat_0=lat_0,\
width=width,height=height,\
resolution=resolution,projection=projection)
m.drawcoastlines(linewidth=0.5)
m.drawmapboundary(fill_color='aqua')
m.fillcontinents(color='coral',lake_color='aqua')
m.drawcountries()
m.drawstates()
pylab.title('map region specified using width and height')
pylab.savefig('basemap2.png',dpi=600)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.