Beispiel #1
0
 public void TestMultiPolygonWithEmpty()
 {
     new GeometryOperationValidator(
         DPSimplifierResult.GetResult(
             "MULTIPOLYGON (EMPTY, ((-36 91.5, 4.5 91.5, 4.5 57.5, -36 57.5, -36 91.5)), ((25.5 57.5, 61.5 57.5, 61.5 23.5, 25.5 23.5, 25.5 57.5)))",
             10.0))
     .Test();
 }
Beispiel #2
0
 public void TestMultiLineStringWithEmpty()
 {
     new GeometryOperationValidator(
         DPSimplifierResult.GetResult(
             "MULTILINESTRING( EMPTY, (0 0, 50 0, 70 0, 80 0, 100 0), (0 0, 50 1, 60 1, 100 0) )",
             10.0))
     .Test();
 }
Beispiel #3
0
        public void TestFlattishPolygon()
        {
            const string geomStr = "POLYGON ((0 0, 50 0, 53 0, 55 0, 100 0, 70 1,  60 1, 50 1, 40 1, 0 0))";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }
Beispiel #4
0
        public void TestPolygonReduction()
        {
            const string geomStr = "POLYGON ((120 120, 121 121, 122 122, 220 120, 180 199, 160 200, 140 199, 120 120))";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }
Beispiel #5
0
        public void TestPolygonReductionWithSplit()
        {
            const string geomStr = "POLYGON ((40 240, 160 241, 280 240, 280 160, 160 240, 40 140, 40 240))";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }
Beispiel #6
0
        public void TestMultiLineString()
        {
            const string geomStr = "MULTILINESTRING( (0 0, 50 0, 70 0, 80 0, 100 0), (0 0, 50 1, 60 1, 100 0) )";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }
Beispiel #7
0
        public void TestTinyLineString()
        {
            const string geomStr = "LINESTRING (0 5, 1 5, 2 5, 5 5)";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }
Beispiel #8
0
        public void TestTinySquare()
        {
            const string geomStr = "POLYGON ((0 5, 5 5, 5 0, 0 0, 0 1, 0 5))";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }
Beispiel #9
0
        public void TestPolygonNoReduction()
        {
            const string geomStr =
                "POLYGON ((20 220, 40 220, 60 220, 80 220, 100 220, 120 220, 140 220, 140 180, 100 180, 60 180, 20 180, 20 220))";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }
Beispiel #10
0
        public void TestPoint()
        {
            const string geomStr = "POINT (10 10)";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    1))
            .SetExpectedResult(geomStr)
            .Test();
        }
Beispiel #11
0
        public void TestMultiPoint()
        {
            const string geomStr = "MULTIPOINT(80 200, 240 200, 240 60, 80 60, 80 200, 140 199, 120 120)";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .SetExpectedResult(geomStr)
            .Test();
        }
Beispiel #12
0
        public void TestTinyHole()
        {
            const string geomStr =
                "POLYGON ((10 10, 10 310, 370 310, 370 10, 10 10), (160 190, 180 190, 180 170, 160 190))";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    30.0))
            .TestEmpty(false);
        }
Beispiel #13
0
        public void TestEmptyPolygon()
        {
            const string geomStr = "POLYGON(EMPTY)";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    1))
            .SetExpectedResult(geomStr)
            .Test();
        }
Beispiel #14
0
        public void TestPolygonWithTouchingHole()
        {
            const string geomStr =
                "POLYGON ((80 200, 240 200, 240 60, 80 60, 80 200), (120 120, 220 120, 180 199, 160 200, 140 199, 120 120))";
            const string resStr =
                "POLYGON ((80 200, 160 200, 240 200, 240 60, 80 60, 80 200), (160 200, 140 199, 120 120, 220 120, 180 199, 160 200)))";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .SetExpectedResult(resStr)
            .Test();
        }
Beispiel #15
0
        public void TestGeometryCollection()
        {
            const string geomStr = "GEOMETRYCOLLECTION ("
                                   + "MULTIPOINT (80 200, 240 200, 240 60, 80 60, 80 200, 140 199, 120 120),"
                                   + "POLYGON ((80 200, 240 200, 240 60, 80 60, 80 200)),"
                                   + "LINESTRING (80 200, 240 200, 240 60, 80 60, 80 200, 140 199, 120 120)"
                                   + ")";

            new GeometryOperationValidator(
                DPSimplifierResult.GetResult(
                    geomStr,
                    10.0))
            .Test();
        }