- 积分
- 153215
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-10-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 又是那隻貓 于 2017-5-2 20:32 编辑
安利一波自己刚写的库。在原来nclcmap已经基础上重新建的库
https://github.com/hhuangwx/cmaps感谢沈大神的帮助和指点
很简单的一个库。例如想使用BlGrYeOrReVi200
http://www.ncl.ucar.edu/Document ... GrYeOrReVi200.shtml
示例程序:- import matplotlib.pyplot as plt
- import cmaps
- import numpy as np
- x = y = np.arange(-3.0, 3.01, 0.05)
- X, Y = np.meshgrid(x, y)
- Z1 = plt.mlab.bivariate_normal(X, Y, 1.0, 1.0, 0.0, 0.0)
- plt.pcolormesh(X,Y,Z1,cmap=cmaps.BlGrYeOrReVi200)
- plt.colorbar()
- plt.show()
复制代码
|
评分
-
查看全部评分
|