第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 Python 中合并多邊形形狀文件

在 Python 中合并多邊形形狀文件

繁星淼淼 2022-09-27 10:52:52
我的 python3 腳本創(chuàng)建了一個(gè)變量,其值是形狀文件列表,每個(gè)形狀文件都是一個(gè)表示地理區(qū)域的多邊形geometries_list[<shapefile.Shape at 0x7f060abfae48>, <shapefile.Shape at 0x7f05dcaf1cc0>, <shapefile.Shape at 0x7f060a86b278>, <shapefile.Shape at 0x7f05da470668>]我想“合并”多邊形。我嘗試了以下代碼from functools import reducefrom shapely.geometry import Polygonunion = reduce(lambda x,y: x.union(y), geometries_list) 但它給出了結(jié)果:屬性錯(cuò)誤:“Shape”對(duì)象沒(méi)有屬性“并集”我看到另一種方法,它涉及創(chuàng)建一個(gè)形狀文件編寫(xiě)器對(duì)象并連續(xù)覆蓋列表上的每個(gè)多邊形 https://gis.stackexchange.com/questions/103033/using-pyshp-to-merge-two-shapefiles 此方法可能有效,但每個(gè)覆蓋都保存到磁盤
查看完整描述

1 回答

?
智慧大石

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超3個(gè)贊

也許值得一提的是,shapely.ops.unary_union是合并形狀的更有效方法。


您可以通過(guò)對(duì)象的 GeoJSON 表示形式將對(duì)象轉(zhuǎn)換為對(duì)象,并按如下方式合并它們。shapefile.Shapeshapely.Polygon


from shapely.geometry import shape

from shapely.geometry.ops import unary_union


union = unary_union([shape(s.__geo_interface__) for s in geometries_list])


查看完整回答
反對(duì) 回復(fù) 2022-09-27
  • 1 回答
  • 0 關(guān)注
  • 372 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)