2

我只需要没有完全包含在DotSpatial. 如果我使用feature.Intersects(),它会给我相交和包含的特征,而当我使用 时feature.Contains(),它给我的只是包含的特征。

我已经像这样手动完成了。

feature1.Intersects(feature2) && !feature1.Contains(feature2)

有什么DotSpatial方法可以直接做到吗?

4

1 回答 1

2

因此,为了在不必同时执行相交和“不包含”测试的情况下执行此操作,您可以使用 Touches。从您可以在此处找到的入门指南:入门指南触摸应该具有您想要的定义。请注意,在底部的示例中,即使考虑了所有县,Placer 县本身也不会出现在结果集中,但它周围的每个县都会出现。

在此处输入图像描述

    IFeatureSet counties;
    IFeature placer;

    private void Form1_Load(object sender, EventArgs e)
    {
        // Open a FeatureSet from a shapefile containing Counties
        counties = Shapefile.Open("D:\\Data\\Counties\\CntyBnds_ESRI.shp");

        // Loop through the features to find the Feature with the Name equal to "Placer"
        foreach (IFeature f in counties.Features)
        {
            if (f.DataRow["NAME"].ToString() == "Placer")
            {
                placer = f;
                break;
            }
        }

        // Add the counties layer to the map to show all the counties
        this.map1.Layers.Add(counties);
    }

    private void button1_Click(object sender, EventArgs e)
    {

        FeatureSet result = new FeatureSet();

        // Cycle thorugh the shapes using the Touches operation
        foreach (IFeature county in counties.Features)
        {
            if (county.Touches(placer))
            {
                // Add only the features that touch to the result dataset.
                result.AddFeature(county);
            }
        }

        // Add the result to the map.
        this.map1.Layers.Add(result);
    }

在此处输入图像描述

于 2015-04-22T23:34:57.037 回答