- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
是否有一种简单的方法可以对 PyPlot 中的 quiver 函数绘制的箭头长度进行对数缩放?
原因是,我在陆地和海洋上绘制了风箭头,而海洋上的风的强度大约高出十倍。
因此,要么陆地上的箭头太小,无法通过绘制它们来获取任何信息,要么海洋上的箭头太大,导致海洋上的绘图过于拥挤。
我已经尝试使用符号日志函数对数据进行对数缩放,但似乎角度会带来麻烦。为了强调这一点,这里是一个小图的代码:
def main():
lat, lon, u, v = readmulticol2Dfile('test.txt', shape=(9,6))
# map without logarithmic scaling
plt.subplot(1,2,1)
mapproj = bm.Basemap(projection='cyl', llcrnrlon=lon.min(), urcrnrlon=lon.max(), llcrnrlat=lat.min(), urcrnrlat=lat.max())
mapproj.drawcoastlines()
mapproj.drawparallels(np.linspace(-20,20,5), labels=[1,0,0,0])
mapproj.drawmeridians(np.linspace(-80,20,5), labels=[0,0,0,1])
plt.title('linear')
plt.quiver(lon, lat, u, v, color='k', units='x')
# map with logarithmic scaling
plt.subplot(1,2,2)
mapproj = bm.Basemap(projection='cyl', llcrnrlon=lon.min(), urcrnrlon=lon.max(), llcrnrlat=lat.min(), urcrnrlat=lat.max())
mapproj.drawcoastlines()
mapproj.drawparallels(np.linspace(-20,20,5), labels=[1,0,0,0])
mapproj.drawmeridians(np.linspace(-80,20,5), labels=[0,0,0,1])
plt.quiver(lon, lat, symlog(u), symlog(v), color='k', units='x')
plt.title('logarithmic')
plt.show()
def readmulticol2Dfile(fname, header=True, delimiter='\t', shape=None):
"""reads a multicolumn txt-file and converts it to numpy arrays"""
a=np.loadtxt(fname).T
if shape is not None:
b=[np.zeros(shape=shape)]*4
for i in xrange(len(a)): b[i]=np.reshape(a[i],shape)
return b
else: return a
def symlog(x):
""" Returns the symmetric log10 value """
return np.sign(x) * np.log10(np.abs(x))
if __name__=="__main__":
main()
使用保存在test.txt
中的数据
# lattitude longitude u v
2.145047503739818495e+01 -8.062500000000000000e+01 -5.790064811706542969e+00 2.341136932373046875e-01
2.145047503739818495e+01 -7.312500000000000000e+01 -7.119166374206542969e+00 -1.223894119262695312e+00
2.145047503739818495e+01 -6.562500000000000000e+01 -6.140162467956542969e+00 -1.082292556762695312e+00
2.145047503739818495e+01 -5.812500000000000000e+01 -4.589381217956542969e+00 2.853832244873046875e-01
2.145047503739818495e+01 -5.062500000000000000e+01 -5.221705436706542969e+00 4.221019744873046875e-01
2.145047503739818495e+01 -4.312500000000000000e+01 -5.333521842956542969e+00 6.321525573730468750e-02
1.771996152644742750e+01 -2.812500000000000000e+01 -7.793482780456542969e+00 -3.714616775512695312e+00
1.771996152644742750e+01 -2.062500000000000000e+01 -6.195338249206542969e+00 -6.160417556762695312e+00
1.585470386969487322e+01 -7.687500000000000000e+01 -8.054713249206542969e+00 -1.638355255126953125e-01
1.585470386969487322e+01 -6.937500000000000000e+01 -7.378443717956542969e+00 -2.906990051269531250e-02
1.585470386969487322e+01 -6.187500000000000000e+01 -6.270533561706542969e+00 3.127269744873046875e-01
1.585470386969487322e+01 -5.437500000000000000e+01 -7.410181999206542969e+00 -1.028003692626953125e-01
1.212418712345576566e+01 -3.937500000000000000e+01 -8.221217155456542969e+00 -2.800065994262695312e+00
1.212418712345576566e+01 -3.187500000000000000e+01 -7.579127311706542969e+00 -3.560319900512695312e+00
1.212418712345576566e+01 -2.437500000000000000e+01 -5.761256217956542969e+00 -5.112565994262695312e+00
1.025892816800637597e+01 -8.062500000000000000e+01 -4.789576530456542969e+00 -4.363542556762695312e+00
1.025892816800637597e+01 -7.312500000000000000e+01 -1.818385124206542969e+00 -1.677995681762695312e+00
1.025892816800637597e+01 -6.562500000000000000e+01 -3.078639030456542969e+00 -1.554460525512695312e+00
6.528409401479990493e+00 -5.062500000000000000e+01 -7.822779655456542969e+00 -1.683855056762695312e+00
6.528409401479990493e+00 -4.312500000000000000e+01 -8.200709342956542969e+00 -2.835222244262695312e+00
6.528409401479990493e+00 -3.562500000000000000e+01 -7.456568717956542969e+00 -2.850358963012695312e+00
6.528409401479990493e+00 -2.812500000000000000e+01 -5.878443717956542969e+00 -2.700944900512695312e+00
6.528409401479990493e+00 -2.062500000000000000e+01 -2.720240592956542969e+00 -1.258562088012695312e+00
4.663149706177883935e+00 -7.687500000000000000e+01 1.257298469543457031e+00 -1.143815994262695312e+00
9.326299678379910141e-01 -6.187500000000000000e+01 -6.386976242065429688e-01 -2.507495880126953125e-01
9.326299678379910141e-01 -5.437500000000000000e+01 -2.149439811706542969e+00 -1.390886306762695312e+00
9.326299678379910141e-01 -4.687500000000000000e+01 -5.939478874206542969e+00 -1.460222244262695312e+00
9.326299678379910141e-01 -3.937500000000000000e+01 -6.882838249206542969e+00 -5.959644317626953125e-01
9.326299678379910141e-01 -3.187500000000000000e+01 -6.343287467956542969e+00 -1.565113067626953125e-01
9.326299678379910141e-01 -2.437500000000000000e+01 -5.749537467956542969e+00 3.444652557373046875e-01
-4.663149706177883935e+00 -7.312500000000000000e+01 -7.033824920654296875e-02 -3.654956817626953125e-01
-4.663149706177883935e+00 -6.562500000000000000e+01 -5.674085617065429688e-01 -3.176441192626953125e-01
-4.663149706177883935e+00 -5.812500000000000000e+01 -1.063014030456542969e+00 -1.213550567626953125e-01
-4.663149706177883935e+00 -5.062500000000000000e+01 -1.417994499206542969e+00 -2.028980255126953125e-01
-4.663149706177883935e+00 -4.312500000000000000e+01 -1.486842155456542969e+00 -8.557300567626953125e-01
-4.663149706177883935e+00 -3.562500000000000000e+01 -5.729517936706542969e+00 1.451887130737304688e+00
-8.393668907692383385e+00 -2.062500000000000000e+01 -6.579615592956542969e+00 2.450422286987304688e+00
-1.025892816800637597e+01 -7.687500000000000000e+01 4.018297195434570312e-01 -1.755542755126953125e-01
-1.025892816800637597e+01 -6.937500000000000000e+01 2.187242507934570312e-01 -5.783863067626953125e-01
-1.025892816800637597e+01 -6.187500000000000000e+01 -3.462171554565429688e-01 -8.737964630126953125e-01
-1.025892816800637597e+01 -5.437500000000000000e+01 -4.731702804565429688e-01 -3.200855255126953125e-01
-1.025892816800637597e+01 -4.687500000000000000e+01 -8.545179367065429688e-01 -4.890308380126953125e-01
-1.398944571235667311e+01 -3.187500000000000000e+01 -7.993678092956542969e+00 1.462230682373046875e-01
-1.398944571235667311e+01 -2.437500000000000000e+01 -8.063502311706542969e+00 1.512434005737304688e+00
-1.585470386969487322e+01 -8.062500000000000000e+01 -2.528346061706542969e+00 3.198469161987304688e+00
-1.585470386969487322e+01 -7.312500000000000000e+01 2.924547195434570312e-01 1.297590255737304688e+00
-1.585470386969487322e+01 -6.562500000000000000e+01 -3.598890304565429688e-01 -1.232194900512695312e+00
-1.585470386969487322e+01 -5.812500000000000000e+01 4.196643829345703125e-02 -1.524187088012695312e+00
-1.958521860882233057e+01 -4.312500000000000000e+01 -1.116724967956542969e+00 -3.195972442626953125e-01
-1.958521860882233057e+01 -3.562500000000000000e+01 -5.567896842956542969e+00 -3.761003494262695312e+00
-1.958521860882233057e+01 -2.812500000000000000e+01 -7.378443717956542969e+00 -1.043718338012695312e+00
-1.958521860882233057e+01 -2.062500000000000000e+01 -8.015162467956542969e+00 7.102775573730468750e-02
-2.145047503739818495e+01 -7.687500000000000000e+01 2.352025032043457031e+00 2.376691818237304688e+00
-2.145047503739818495e+01 -6.937500000000000000e+01 2.939915657043457031e+00 1.054914474487304688e+00
但不幸的是结果看起来很奇怪。长度实际上是对数的,但角度在某些区域表现得很奇怪。
非常感谢您提前提供的帮助 =)
PS:我没有足够的声誉,无法在此处添加图形或第二个超链接,因此我将其上传到 ftp 服务器上,两周后它将自动删除。您只需将上面数据链接中的“.txt”替换为“.png”即可访问该图。
最佳答案
根据我的收集,您可以在传递箭头之前缩放箭头长度。这是一个示例
import matplotlib.pyplot as plt
import numpy as np
def symlog(x):
""" Returns the symmetric log10 value """
return np.sign(x) * np.log10(np.abs(x))
fig, (ax1, ax2) = plt.subplots(ncols=2, figsize=(10,5))
# Generate fake data
N = 50
X,Y = np.meshgrid(np.linspace(0, 1, N), np.linspace(0, 1, N))
U = np.random.normal(0, 0.2, size=(50, 50))
V = np.random.normal(0, 0.2, size=(50, 50))
# Set RHS data to be larger than LHS
U[:, N/2:] *= 1000
V[:, N/2:] *= 1000
angles=np.arctan2(V,U)*180.0/np.pi # calculate angles manually
#Without scaling
HEAD_LENGTH = 4
Q = ax1.quiver( X[::3, ::3], Y[::3, ::3], U[::3, ::3], V[::3, ::3],
color='k', units='x', headaxislength=HEAD_LENGTH)
#With scaling
Q = ax2.quiver( X[::3, ::3], Y[::3, ::3], symlog(U[::3, ::3]), symlog(V[::3, ::3]),
color='k', units='x', headaxislength=HEAD_LENGTH, angles=angles)
plt.show()
左侧显示原始数据,右侧显示我使用 symlog()
缩放了箭头长度。这会缩放值的大小,同时保留其符号,否则您将在记录负数时出错。
关于python - 使用 pyplot 中的箭袋函数绘制箭头的对数长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24490753/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!