这是以前的问题,在哪里可以提高 python 中函数的时间性能我需要找到一种有效的方法来拆分我的文本文件
我有以下文本文件(超过 32 GB)未排序
....................
0 274 593869.99 6734999.96 121.83 1,
0 273 593869.51 6734999.92 121.57 1,
0 273 593869.15 6734999.89 121.57 1,
0 273 593868.79 6734999.86 121.65 1,
0 272 593868.44 6734999.84 121.65 1,
0 273 593869.00 6734999.94 124.21 1,
0 273 593868.68 6734999.92 124.32 1,
0 274 593868.39 6734999.90 124.44 1,
0 275 593866.94 6734999.71 121.37 1,
0 273 593868.73 6734999.99 127.28 1,
.............................
第一列和第二列是网格中 x、y、z 点的位置 ID(例如:0 -273)。
def point_grid_id(x,y,minx,maxy,distx,disty):
"""give id (row,col)"""
col = int((x - minx)/distx)
row = int((maxy - y)/disty)
return (row, col)
这(minx, maxx)
是我的网格的原点 size distx,disty
。Id瓦片的数量是
tiles_id = [j for j in np.ndindex(ny, nx)] #ny = number of row, nx= number of columns
from [(0,0),(0,1),(0,2),...,(ny-1,nx-1)]
n = len(tiles_id)
我需要以文件数量对 ~32 GB 文件进行切片n (= len(tiles_id))
。
我可以在不排序但读取文件 n 次的情况下执行此操作。出于这个原因,我希望为文件起始形式找到一种有效的拆分方法(0,0) (= tiles_id[0])
。之后,我只能读取一次拆分文件。