1

很难解决此问题:

从数组中绘制多个大圆路径

错误信息:

Traceback(最近一次调用最后一次):文件“example.py”,第 41 行,在 eq_map.drawgreatcircle(y,x,y2,x2,linewidth=6,color='b') 文件“/Library/Frameworks/Python. framework/Versions/3.5/lib/python3.5/site-packages/mpl_toolkits/basemap/ init .py”,第 2893 行,在 drawgreatcircle npoints = int((dist+0.5*1000.*del_s)/(1000.*del_s )) TypeError:只能将列表(不是“浮动”)连接到列表


Python代码:

import csv

# Open the data file.
filename = 'sample.csv'

# Create empty lists for the latitudes and longitudes.
lats, lons = [], []
lats2, lons2 = [], []

# Read through the entire file, skip the first line,
#  and pull out just the lats and lons.
with open(filename) as f:
    # Create a csv reader object.
    reader = csv.reader(f)

    # Ignore the header row.
    next(reader)

    # Store the latitudes and longitudes in the appropriate lists.
    for row in reader:
        lats.append(float(row[1]))
        lons.append(float(row[2]))
        lats2.append(float(row[4]))
        lons2.append(float(row[5]))        

from mpl_toolkits.basemap import Basemap
import matplotlib.pyplot as plt
import numpy as np

eq_map = Basemap(projection='merc',llcrnrlat=-80,urcrnrlat=80,llcrnrlon=-180,urcrnrlon=180,lat_ts=20,resolution='c')

eq_map.drawcoastlines()
eq_map.drawcountries()
eq_map.fillcontinents(color = 'gray')
eq_map.drawmapboundary()
eq_map.drawmeridians(np.arange(0, 360, 30))
eq_map.drawparallels(np.arange(-90, 90, 30))

x,y = eq_map(lons, lats)
x2,y2 = eq_map(lons2,lats2)
eq_map.drawgreatcircle(y,x,y2,x2,linewidth=6,color='b')

plt.show()

样本.csv

Origin,origLat,origLon,Dest,destLat,destLon
"jfk",40.641311,-73.778139,"lax",33.941589,-118.40853
"teb",40.849023,-74.062953,"mia",34.730283,136.508588
4

1 回答 1

0

您的 lons 和 lats 目前在列表中。您需要遍历以获取坐标。

print(type(lons))

这是我想出的:

for x, y, x2, y2 in zip(lats[0::1], lons[0::1], lats2[0::1], lons2[0::1]):
    eq_map.drawgreatcircle(x, y, x2, y2, linewidth=2, color='b')

除非您也想创建绘图,否则您不需要

x,y = eq_map(lons, lats)
x2,y2 = eq_map(lons2,lats2)

有地块

for lats, lons, lats2, lons2 in zip(lats[0::1], lons[0::1], lats2[0::1], lons2[0::1]):
    x,y = eq_map(lons, lats)
    x2,y2 = eq_map(lons2,lats2)
    eq_map.plot(x, y, marker='.', color='r', markersize=10)
    eq_map.plot(x2, y2, marker='.', color='r', markersize=10)
    eq_map.drawgreatcircle(lons, lats, lons2, lats2, linewidth=2, color='b')
于 2016-12-12T19:12:28.537 回答