python 经纬度画北京地图_python 画经纬度的函数drawparallel

labels = [left,right,top,bottom],左右上下

labels=[1,1,0,1]即labels=[true,true,false,true]

即经纬度标签标识地图位置,在地图的左右上下进行标识

实例代码是说在地图左右和下方标识纬度label信息

以下是 Jeffrey Whitaker的源码:

from mpl_toolkits.basemap import Basemap

import matplotlib.pyplot as plt

import numpy as np

# setup Lambert Conformal basemap.

m = Basemap(width=12000000,height=9000000,projection='lcc',

resolution='c',lat_1=45.,lat_2=55,lat_0=50,lon_0=-107.)

# draw coastlines.

m.drawcoastlines()

# draw a boundary around the map, fill the background.

# this background will end up being the ocean color, since

# the continents will be drawn on top.

m.drawmapboundary(fill_color='aqua')

# fill continents, set lake color same as ocean color.

m.fillcontinents(color='coral',lake_color='aqua')

# draw parallels and meridians.

# label parallels on right and top

# meridians on bottom and left

parallels = np.arange(0.,81,10.)

# labels = [left,right,top,bottom]

m.drawparallels(parallels,labels=[False,True,True,False])

meridians = np.arange(10.,351.,20.)

m.drawmeridians(meridians,labels=[True,False,False,True])

plt.show()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值