Statistics
| Revision:

gvsig-projects-pool / org.gvsig.topology / trunk / org.gvsig.topology / org.gvsig.topology.lib / org.gvsig.topology.lib.impl / src / main / resources / org / gvsig / topology / rules / en / MustNotOverlapPolygon.json @ 712

History | View | Annotate | Download (1.93 KB)

1
{
2
    "id": "MustNotOverlapPolygon",
3
    "name": "Must Not Overlap",
4
    "description": [ 
5
        "<img src=\"@@@.d/must_not_overlap.png\">\n",
6
        "Requires that the interior of polygons in the dataset not overlap.",
7
        "The polygons can share edges or vertices.",
8
        "This rule is used when an area cannot belong to two or more polygons.",
9
        "It is useful for modeling administrative boundaries, such as ZIP Codes",
10
        "or voting districts, and mutually exclusive area classifications,",
11
        "such as land cover or landform type."
12
    ],
13
    "actions" : {
14
        "CreateFeature": {
15
            "name" : "Create feature",
16
            "description": [ 
17
                "The Create Feature fix creates a new polygon feature out of",
18
                "the error shape and removes the portion of overlap from each",
19
                "of the features, causing the error to create a planar",
20
                "representation of the feature geometry.\n",
21
                "This fix can be applied to one or more selected Must Not Overlap errors."
22
            ]
23
        },
24
        "Subtract": {
25
            "name" : "Subtract",
26
            "description": [ 
27
                "The Subtract fix removes the overlapping portion of geometry",
28
                "from each feature that is causing the error and leaves a gap",
29
                "or void in its place. This fix can be applied to one or more",
30
                "selected Must Not Overlap errors."
31
            ]
32
        },
33
        "Merge": {
34
            "name" : "Merge",
35
            "description": [ 
36
                "The Merge fix adds the portion of overlap from one feature",
37
                "and subtracts it from the others that are violating the rule.",
38
                "You need to pick the feature that receives the portion of",
39
                "overlap using the Merge dialog box.",
40
                "This fix can be applied to one Must Not Overlap error only."
41
            ]
42
        }
43
    }
44
}
45