// Copyright (C) Stichting Deltares 2019. All rights reserved. // // This file is part of Riskeer. // // Riskeer is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System.Collections.Generic; using System.Drawing; using System.Linq; using Core.Common.Base.Geometry; using Core.Components.Gis.Data; using Core.Components.Gis.Features; using Core.Components.Gis.Geometries; using Core.Components.Gis.Style; using Core.Components.Gis.Theme; using DotSpatial.Controls; using DotSpatial.Data; using DotSpatial.Symbology; using GeoAPI.Geometries; using NetTopologySuite.Geometries; namespace Core.Components.DotSpatial.Converter { /// /// The converter that converts data into data. /// public class MapPolygonDataConverter : FeatureBasedMapDataConverter { protected override IEnumerable CreateFeatures(MapFeature mapFeature) { var geometryList = new List(); foreach (MapGeometry mapGeometry in mapFeature.MapGeometries) { IEnumerable[] pointCollections = mapGeometry.PointCollections.ToArray(); Coordinate[] outerRingCoordinates = ConvertPoint2DElementsToCoordinates(pointCollections[0]).ToArray(); ILinearRing outerRing = new LinearRing(outerRingCoordinates); var innerRings = new ILinearRing[pointCollections.Length - 1]; for (var i = 1; i < pointCollections.Length; i++) { Coordinate[] innerRingCoordinates = ConvertPoint2DElementsToCoordinates(pointCollections[i]).ToArray(); innerRings[i - 1] = new LinearRing(innerRingCoordinates); } IPolygon polygon = new Polygon(outerRing, innerRings); geometryList.Add(polygon); } yield return new Feature(GetGeometry(geometryList)); } protected override IFeatureSymbolizer CreateSymbolizer(MapPolygonData mapData) { PolygonStyle polygonStyle = mapData.Style; return new PolygonSymbolizer(polygonStyle.FillColor, GetStrokeColor(polygonStyle), polygonStyle.StrokeThickness); } protected override IFeatureScheme CreateScheme() { return new PolygonScheme(); } protected override IFeatureCategory CreateFeatureCategory(PolygonCategoryTheme categoryTheme) { return CreateCategory(categoryTheme.Style); } protected override IFeatureCategory CreateDefaultCategory(MapPolygonData mapData) { return CreateCategory(mapData.Style); } private static Color GetStrokeColor(PolygonStyle style) { Color strokeColor = style.StrokeColor; if (style.StrokeThickness == 0) { strokeColor = Color.Transparent; } return strokeColor; } private static IFeatureCategory CreateCategory(PolygonStyle style) { return new PolygonCategory(style.FillColor, GetStrokeColor(style), style.StrokeThickness); } private static IGeometry GetGeometry(List geometryList) { IGeometry geometry; var factory = new GeometryFactory(); if (geometryList.Count > 1) { geometry = factory.CreateMultiPolygon(geometryList.ToArray()); } else { ILinearRing shell = null; var holes = new ILinearRing[0]; if (geometryList.Count == 1) { IPolygon polygon = geometryList.First(); shell = polygon.Shell; holes = polygon.Holes; } geometry = factory.CreatePolygon(shell, holes); } return geometry; } } }