QGIS/python/plugins/processing/tests/testdata/expected/dissolve_disjoint.geojson
Nyall Dawson 290154744b [feature][processing] Add "Keep disjoint features separate" option
for dissolve algorithm

If enabled, this option will cause disjoint features and parts to
be exported as separate features (instead of as parts of a
single multipart feature).
2022-03-17 18:12:27 +10:00

11 lines
1.1 KiB
JSON

{
"type": "FeatureCollection",
"name": "dissolve_disjoint",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "fid": "overlapping_polys.0", "class": "a" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.0, -10.0 ], [ 8.0, -10.0 ], [ 8.0, -11.0 ], [ 6.0, -11.0 ], [ 6.0, -6.0 ], [ 7.0, -6.0 ], [ 7.0, -5.0 ], [ 8.0, -5.0 ], [ 8.0, -4.0 ], [ 11.0, -4.0 ], [ 11.0, -6.0 ], [ 9.0, -6.0 ], [ 9.0, -7.0 ], [ 8.0, -7.0 ], [ 8.0, -9.0 ], [ 9.0, -9.0 ], [ 9.0, -10.0 ] ] ] ] } },
{ "type": "Feature", "properties": { "fid": "overlapping_polys.0", "class": "a" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.0, -10.0 ], [ 0.0, -8.0 ], [ 3.0, -8.0 ], [ 3.0, -10.0 ], [ 0.0, -10.0 ] ] ] ] } },
{ "type": "Feature", "properties": { "fid": "overlapping_polys.0", "class": "a" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.0, -3.0 ], [ 2.0, -3.0 ], [ 2.0, -2.0 ], [ 5.0, -2.0 ], [ 5.0, -5.0 ], [ 3.0, -5.0 ], [ 3.0, -6.0 ], [ 0.0, -6.0 ], [ 0.0, -3.0 ] ] ] ] } }
]
}