Python: how to combine two flat lists into a 2D ar

2020-02-28 05:50发布

问题:

I have two flat lists of geographical coordinates (lat, long), and I need to combine them into a 2D array or matrix.

They are now stored in a dataframe:

    lat         lon
0   48.010258   -6.156909
1   48.021648   -6.105887
2   48.033028   -6.054801
3   48.044384   -6.003691
4   48.055706   -5.952602
5   48.067017   -5.901447
6   48.078304   -5.850270
7   48.089558   -5.799114
8   48.100800   -5.747891

How can I combine these two lists into a 2D array so that the lat-lon correspondence is preserved? These are the plain data:

lat=[48.01,48.02,48.03,48.04,48.05,48.06,48.07,48.08,48.10]
lon=[-6.15,-6.10,-6.05,-6.00,-5.95,-5.90,-5.85,-5.79,-5.74]

EDIT

These excerpted data represent a (lat, long) or (y, x) geographical map. Combined, they reproduce the below image. You clearly see the presence of The intended outcome will have to be deprived of an outer frame of data of a certain width. So it's like cutting out an outer frame of a picture, the width of which is 30 data points.

回答1:

list(zip(lat, long))

gives

[(48.01, -6.15), (48.02, -6.1), (48.03, -6.05), (48.04, -6.0), 
 (48.05, -5.95), (48.06, -5.9), (48.07, -5.85), (48.08, -5.79), (48.1, -5.74)]

More on zip here



回答2:

Try using the numpy module i.e: np.column_stack maybe experiment with it to see if it gives you the desired result/format

>>> np.column_stack((lat, lon))

check out numpy.column_stack hope this helps :)



回答3:

lat=[48.01,48.02,48.03,48.04,48.05,48.06,48.07,48.08,48.10]
lon=[-6.15,-6.10,-6.05,-6.00,-5.95,-5.90,-5.85,-5.79,-5.74]
mat = [[0]*2 for i in range(len(lat))]
k=0
for i, j in zip(lat, lon):
    mat[k][0]=i
    mat[k][1]=j
    k+=1
print (mat) 


回答4:

You can just explicitly add them to a new list and assign it like...

coordinates = [lat, lon]

It would then set coordinates equal to...

[
 [48.01,48.02,48.03,48.04,48.05,48.06,48.07,48.08,48.10],
 [-6.15,-6.10,-6.05,-6.00,-5.95,-5.90,-5.85,-5.79,-5.74]
]


标签: python arrays