gpt4 book ai didi

python - 如何有效地浏览和比较非常大的字典的值与列表的元素?

转载 作者:行者123 更新时间:2023-12-04 17:10:43 25 4
gpt4 key购买 nike

我有一个字典(list_image_dict)和一个列表(structures.geometry),我想将字典中的每个值与列表中的值进行比较,对其执行快速操作并替换字典中的值。
但是list_image_dict包含 300623 个键/值对,遍历所有值并将它们与 structures.geometry 的每个元素进行比较很长。几十分钟。我的问题是 如何提高执行速度?
我尝试通过简单的 16 核多处理 list_image列表。列表中的每个元素都与structures.geometry 的元素并行比较,它有点快但仍然很慢(仍然是几十分钟)。 structures.geometry仅包含 156 个元素。

def make_sort(layers, structures, threshold):
def coverage(a, b): return a.area/b.area*100
def label(
polygon): return structures.loc[structures.geometry == polygon, "label"].values[0]
frames = pd.concat([*layers], ignore_index=True)
frames.crs = "epsg:3857"
frames = frames.to_crs(epsg=4326)
main = gpd.GeoDataFrame(geometry=frames.geometry)

list_image = main.geometry.tolist()
#list_image has 300623 elements.
list_image_dict = {images.wkt: images for images in list_image}

for key, value in list_image_dict.items(): #main loop on list_image_dict
liste=[]
for item in structures.geometry: #structures has 156 elements.
if value.intersects(item):
x = value.intersection(item)
#for a certain threshold coverage (in percent) present on the image
#the polygon is added to the liste.
if coverage(x, item) >= threshold:
liste.append([x, str(label(item))])
list_image_dict[key] = liste
return list_image_dict

在评论中的人的帮助下,这种方式导致了几分钟的减少,但仍然很长。
def make_sort(layers, structures, threshold):
def coverage(a, b): return a.area/b.area*100

label = structures["label"].to_list()
geom = structures["geometry"].to_list()

frames = pd.concat([*layers], ignore_index=True)
frames.crs = "epsg:3857"
frames = frames.to_crs(epsg=4326)
main = gpd.GeoDataFrame(geometry=frames.geometry)

final = []
for elem in main.geometry:
liste=[]
for item in structures.geometry:
if coverage(elem.intersection(item), item) >= threshold:
liste.append([elem.intersection(item), label[geom.index(item)]])

final.append({elem.wkt: liste})

result = dict(ChainMap(*final))
return result

最佳答案

IIUC,现在,您有 2 个 GeoDataFrame:main (300623 个多边形)和 structures (156 个多边形)。首先要找到交点,然后仅选择覆盖范围大于 threshold 的多边形.瓶颈是从 structures 中找到一个多边形的交点。到 main 的 300K 个多边形.
我认为更好的解决方案是使用 空间索引 R-Tree .为此,您需要安装 PyGeos访问 main.sindex .
要快速找到哪些多边形与另一个多边形相交:

for idx, item in structures.iterrows():
print(item['label'])

# All polygons...
indexes = main.sindex.query(item['geometry'], predicate='intersects')
# ...greater than or equal to threshold
indexes = main.iloc[indexes, main.columns.get_loc('geometry')] \
.apply(coverage, b=item['geometry']).ge(threshold) \
.loc[lambda x: x].index
# Do stuff here
...

关于python - 如何有效地浏览和比较非常大的字典的值与列表的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69508218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com