怎么把Lat Lon坐标的Pandas DataFrame转换成矩阵? (蟒蛇)

时间:2020-08-03 21:08:46

标签: python pandas coordinates gis

我有一个卫星数据点的DataFrame。这些点排列在从北南稍微旋转的均匀间隔的网格中。我想将这些数据转换成矩阵,然后输入到卷积神经网络中。我想删除Lat Lon数据,但保留网格结构。我该怎么办?

    Gamma0_VV   lat         lon         dist       cell
0   0.172325    39.378442   -74.398499  0.003194    0.0             
1   0.101932    39.378459   -74.398385  0.012222    0.0             
2   0.116957    39.378549   -74.398407  0.017423    0.0             
3   0.139411    39.378638   -74.398429  0.025786    0.0             
4   0.134255    39.378728   -74.398451  0.035122    0.0     

我想要某种形式的东西:

Gamma0_VV (zeros for simplicity)
[[0, 0, 0, ... 0, 0],
 [0, 0, 0, ... 0, 0],
 [0, 0, 0, ... 0, 0]]

enter image description here

0 个答案:

没有答案