我有一個具有多個多邊形的GeoJson文件。 就是這樣。外部信封到一組多邊形
我用單張呈現此GeoJSON的一個網站。
我想繪製一個包圍所有多邊形的polygo的輪廓。像這樣的東西。
GeoJSON的格式,我使用:
{
"features": [
{
"geometry": {
"coordinates": [
[
[
1074.426,
-1136.986
],
[
1088.241,
-1123.171
]
]
],
"type": "Polygon"
},
"properties": {
"number": "2009",
"type": "",
"spaceid": null,
"alias": null,
"roomkey": "5/2009"
},
"type": "Feature"
}
],
"bbox": [
2445.578,
2445.578
],
"crs": {
"properties": {
"name": "urn:ogc:def:crs:OGC:1.3:CRS84"
},
"type": "name"
},
"type": "FeatureCollection"
}
任何指針會有所幫助:)謝謝
你希望包圍份額邊的多邊形?如果不是,凸包是您的主要選擇(如其他答案中所述)。如果您的多邊形共享邊,則有可能的解決方案可以根據不共享的邊(以及組合的多邊形的外部邊界)組合外部多邊形(和內部環)。 –