Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Removed 'Criteria' folder: - There's only one criteria implementation remaining making the folder obsolete

WTI-1551

    • -1
    • +0
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
    • -3
    • +3
    ./Core.Components.Gis/Core.Components.Gis.csproj
    • -1
    • +0
    ./Core.Components.Gis/Theme/CategoryTheme.cs
    • -0
    • +28
    ./Core.Components.Gis/Theme/ICriteria.cs
    • -0
    • +62
    ./Core.Components.Gis/Theme/ValueCriteria.cs
    • -0
    • +39
    ./Core.Components.Gis/Theme/ValueCriteriaOperator.cs
  1. … 11 more files in changeset.
Start removal of interval criteria: - Does not work in DotSpatial, ranges are specified as a "substring" rather than a full string (e.g. x<= 5 would also include results <=5x, where x is an arbitrary number of digits_

WTI-1551

    • -44
    • +11
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
    • -2
    • +0
    ./Core.Components.Gis/Core.Components.Gis.csproj
  1. … 6 more files in changeset.
- Added thematical test data for point map data - Fixed bug, surround values with ' in the filter expressions for ValueCriteria send to DotSpatial components

WTI-1551

    • -2
    • +2
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
  1. … 5 more files in changeset.
Corrected filter expression when an unequal operator is used for the ValueCriteria

WTI-1551

    • -1
    • +1
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
  1. … 4 more files in changeset.
- Renamed enum values of the RangeCriteria operator to resolve ambiguity - Implemented generic tests for the FeatureBasedMapDataConverter to assert correctness of the applied algorithm

WTI-1551

    • -4
    • +4
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
  1. … 4 more files in changeset.
- Converted algorithm to create (categorial) schemes according to the Template Pattern => made mandatory functions abstract - Implemented categorial theming conversion for the polygon map data

WTI-1551

    • -12
    • +3
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
    • -1
    • +22
    ./Core.Components.DotSpatial/Converter/MapPolygonDataConverter.cs
  1. … 2 more files in changeset.
Pulled generic elements of the converters up: - Removed duplicate definitions - Converted algorithm to create (categorial) schemes according to the Template Pattern

WTI-1551

    • -3
    • +138
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
    • -73
    • +20
    ./Core.Components.DotSpatial/Converter/MapLineDataConverter.cs
    • -58
    • +16
    ./Core.Components.DotSpatial/Converter/MapPointDataConverter.cs
- Created first (specific) implementation of categories for the MapLineData

WTI-1551

    • -0
    • +74
    ./Core.Components.DotSpatial/Converter/MapLineDataConverter.cs
  1. … 2 more files in changeset.
- Created first (specific) implementation of categories for the MapPointData

WTI-1551

    • -2
    • +15
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
    • -0
    • +69
    ./Core.Components.DotSpatial/Converter/MapPointDataConverter.cs
  1. … 2 more files in changeset.
- Moved files to the correct folders - Added XMLDoc - Cleaned up files

WTI-1551

    • -3
    • +2
    ./Core.Components.Gis/Theme/CategoryTheme.cs
  1. … 9 more files in changeset.
- Got rid of the IMapCategory and made a concrete implementation called CategoryTheme to hold the thematic styling for the categories: -- Introduced test factory and test objects -- Cleaned up tests

WTI-1551

    • -1
    • +1
    ./Core.Components.Gis/Core.Components.Gis.csproj
    • -1
    • +1
    ./Core.Components.Gis/Data/FeatureBasedMapData.cs
    • -0
    • +62
    ./Core.Components.Gis/Theme/CategoryTheme.cs
    • -43
    • +0
    ./Core.Components.Gis/Theme/IMapCategory.cs
    • -13
    • +12
    ./Core.Components.Gis/Theme/MapTheme.cs
  1. … 10 more files in changeset.
Renamed IMapCriteria to ICriteria: - Works on general elements, not on specific MapElements

WTI-1551

    • -1
    • +1
    ./Core.Components.Gis/Core.Components.Gis.csproj
    • -0
    • +25
    ./Core.Components.Gis/Theme/Criteria/ICriteria.cs
  1. … 2 more files in changeset.
- Moved files to a separate Theme folder -- Adjusted namespaces

WTI-1551

    • -10
    • +8
    ./Core.Components.Gis/Core.Components.Gis.csproj
    • -0
    • +1
    ./Core.Components.Gis/Data/FeatureBasedMapData.cs
    • -75
    • +0
    ./Core.Components.Gis/Data/MapTheme.cs
    • -0
    • +25
    ./Core.Components.Gis/Theme/Criteria/IMapCriteria.cs
    • -0
    • +78
    ./Core.Components.Gis/Theme/Criteria/RangeCriteria.cs
    • -0
    • +49
    ./Core.Components.Gis/Theme/Criteria/RangeCriteriaOperator.cs
    • -0
    • +62
    ./Core.Components.Gis/Theme/Criteria/ValueCriteria.cs
    • -0
    • +39
    ./Core.Components.Gis/Theme/Criteria/ValueCriteriaOperator.cs
    • -0
    • +43
    ./Core.Components.Gis/Theme/IMapCategory.cs
  1. … 8 more files in changeset.
- Added RangeCriteria: -- Allows map styling based on intervals of values - Imporved variable names

WTI-1551

    • -0
    • +2
    ./Core.Components.Gis/Core.Components.Gis.csproj
    • -0
    • +78
    ./Core.Components.Gis/Data/Categories/RangeCriteria.cs
    • -0
    • +49
    ./Core.Components.Gis/Data/Categories/RangeCriteriaOperator.cs
  1. … 3 more files in changeset.
- Added IMapCriteria to apply styling to the MapCategories based on equivalence.

WTI-1551

    • -0
    • +3
    ./Core.Components.Gis/Core.Components.Gis.csproj
    • -0
    • +27
    ./Core.Components.Gis/Data/Categories/IMapCriteria.cs
    • -0
    • +62
    ./Core.Components.Gis/Data/Categories/ValueCriteria.cs
    • -0
    • +39
    ./Core.Components.Gis/Data/Categories/ValueCriteriaOperator.cs
  1. … 2 more files in changeset.
- Added MapTheme property to the abstract FeatureBasedMapData class - Improved tests

WTI-1551

    • -0
    • +5
    ./Core.Components.Gis/Data/FeatureBasedMapData.cs
  1. … 3 more files in changeset.
- Added MapTheme class to define categorial themes based on an map attribute - Moved theming related classes from DotSpatial to Gis.Data

WTI-1551

    • -1
    • +0
    ./Core.Components.DotSpatial/Core.Components.DotSpatial.csproj
    • -0
    • +5
    ./Core.Components.Gis/Core.Components.Gis.csproj
    • -0
    • +36
    ./Core.Components.Gis/Data/Categories/IMapCategory.cs
    • -0
    • +75
    ./Core.Components.Gis/Data/MapTheme.cs
  1. … 3 more files in changeset.
- Added category interface to define categories for map data objects

WTI-1551

    • -0
    • +36
    ./Core.Components.DotSpatial/Categories/IMapCategory.cs
    • -0
    • +1
    ./Core.Components.DotSpatial/Core.Components.DotSpatial.csproj
Merged revision(s) 13330 from branches/Release/17_2

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/branches/Release/17_3@13334 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 438b83594e5342f1f643ac6e1cf9ba0976e6aa15

Former-commit-id: c9c5a5113bed6ecc4c098122b42a7453b2938f3f

    • -2
    • +2
    ./Core.Components.Chart/Data/ChartMultipleAreaData.cs
    • -2
    • +2
    ./Core.Components.Chart/Data/ChartMultipleLineData.cs
    • -2
    • +3
    ./Core.Components.Chart/Data/PointBasedChartData.cs
  1. … 5 more files in changeset.
Fixed build Related to Issue [WTI-1521]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/branches/Release/17_2@13330 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 150a2eca0f0fbbc5a5de7d3664aa9b6a976d2ed1

Former-commit-id: beecf4927e252106b8d44fbf3b8df2a2b6ed44b5

    • -2
    • +2
    ./Core.Components.Chart/Data/ChartMultipleAreaData.cs
    • -2
    • +2
    ./Core.Components.Chart/Data/ChartMultipleLineData.cs
    • -2
    • +3
    ./Core.Components.Chart/Data/PointBasedChartData.cs
  1. … 5 more files in changeset.
Merged revision(s) 13319-13322 from branches/Release/17_2

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/branches/Release/17_3@13326 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 2563a1499ad29304598230c409b02f7497e726c2

Former-commit-id: eea5ee43cf18c016aafe9f2cf23e33102f2b79e8

    • -1
    • +2
    ./Core.Components.OxyPlot/Converter/Chart/ChartMultipleAreaDataConverter.cs
  1. … 16 more files in changeset.
Merged revision(s) 13248 from trunk

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/branches/Release/17_2@13321 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 16850980043edf6cef771bf95679659504ad64f4

Former-commit-id: 411cb325b88620c7b5ec81f8a492a5ed6e53e77d

    • -1
    • +2
    ./Core.Components.OxyPlot/Converter/Chart/ChartMultipleAreaDataConverter.cs
  1. … 12 more files in changeset.
Directly evaluate enumerations when applicable. Related to Issue [WTI-1393]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13317 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: cf8406a712503f8ef9b24bd41b7cf5047467cdc8

Former-commit-id: 366b18ed1a959d4a942dfdc092b9dba5ee848da9

    • -1
    • +1
    ./Core.Components.Gis.Forms/Views/WellKnownMapDataControl.cs
    • -2
    • +1
    ./Core.Components.Gis/Data/FeatureBasedMapData.cs
  1. … 26 more files in changeset.
Directly evaluate enumerations Related to Issue [WTI-1393]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13288 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: b576755cf796f255cf0595630d3589639bc27c4a

Former-commit-id: ecaf869c5373e50070e70929208558dc272632a5

    • -1
    • +1
    ./Core.Components.DotSpatial/Converter/FeatureBasedMapDataConverter.cs
    • -1
    • +1
    ./Core.Components.DotSpatial/Converter/MapLineDataConverter.cs
    • -2
    • +2
    ./Core.Components.DotSpatial/Converter/MapPointDataConverter.cs
    • -2
    • +3
    ./Core.Components.Gis.Forms/Views/WellKnownMapDataControl.cs
    • -1
    • +1
    ./Core.Components.Gis.IO/Readers/PointShapeFileReader.cs
    • -1
    • +1
    ./Core.Components.Gis.IO/Readers/PolygonShapeFileReader.cs
    • -2
    • +2
    ./Core.Components.Gis.IO/Readers/PolylineShapeFileReader.cs
    • -1
    • +2
    ./Core.Components.Gis/Data/FeatureBasedMapData.cs
  1. … 43 more files in changeset.
Updated usages of NotSupported and InvalidEnumArgumentExceptions: - Updated XMLDocs - Updated / added tests

Related to Issue [WTI-1230]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13267 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 37f10d5033eafc2f35871a58645d68f0a91ea97c

Former-commit-id: 6ec8f10c878dfa70b94c3971ddece9505b40e8af

    • -8
    • +23
    ./Core.Components.DotSpatial/Converter/MapDataHelper.cs
    • -8
    • +24
    ./Core.Components.OxyPlot/Converter/ChartDataHelper.cs
  1. … 2 more files in changeset.
Removed version numbers from user control references. Related to Issue [WTI-1506]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13265 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: db2e8c444bb7c29ffc8166b1b67268401be80964

Former-commit-id: 744027694ae45fec7938a4ff0c48cb85152d1534

    • -1
    • +1
    ./Core.Components.Gis.Forms/Views/WmtsLocationControl.resx
  1. … 10 more files in changeset.
Updated usages of NotSupported and InvalidEnumArgumentExceptions: - Updated XMLDocs - Updated / added tests Related to Issue [WTI-1230]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13264 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: d3162961c723e775a827d6f6421b44ba77951c70

Former-commit-id: 1db8b50dda1bd801e08a88cb40760a99f9d87e10

    • -0
    • +10
    ./Core.Components.BruTile/Configurations/WellKnownTileSourceLayerConfiguration.cs
  1. … 7 more files in changeset.
Review related changes Related to Issue [WTI-1401]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13259 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 189bb4185e34716015c3d9809d50ae051776300c

Former-commit-id: 9e44f73e293d616e01951327a35d999a4657dc34

    • -5
    • +5
    ./Core.Components.Gis.IO/Readers/PolygonShapeFileReader.cs
    • -3
    • +3
    ./Core.Components.Gis.IO/Readers/PolylineShapeFileReader.cs
    • -1
    • +2
    ./Core.Components.OxyPlot/Converter/Chart/ChartMultipleLineDataConverter.cs
  1. … 31 more files in changeset.
Review related changes Related to Issue [WTI-1432]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13248 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: f54de987bf5858d2da4fd0b35854c00db600d37d

Former-commit-id: 05e06c518a154daeba77a517d095a1f321af08bc

    • -1
    • +2
    ./Core.Components.OxyPlot/Converter/Chart/ChartMultipleAreaDataConverter.cs
  1. … 12 more files in changeset.
Rename (Core)UtilsResources to (Core)UtilResources Related to Issue [WTI-1505]

git-svn-id: https://repos.deltares.nl/repos/WettelijkToetsInstrumentarium/trunk@13232 5a3db67b-de53-47b5-99c8-a1c30a6650e2

Former-commit-id: 3e11966a39b5153186958c643b763923bb6c0e32

Former-commit-id: 9971c0c407374663f99f15c6858c58e9670f9ef7

    • -2
    • +2
    ./Core.Components.Gis.IO/Readers/PointShapeFileReader.cs
    • -2
    • +2
    ./Core.Components.Gis.IO/Readers/PolygonShapeFileReader.cs
    • -2
    • +2
    ./Core.Components.Gis.IO/Readers/PolylineShapeFileReader.cs
    • -2
    • +2
    ./Core.Components.Gis.IO/Readers/ShapeFileReaderBase.cs
    • -2
    • +2
    ./Core.Components.Gis.IO/Readers/WmtsConnectionInfoReader.cs
    • -2
    • +2
    ./Core.Components.Gis.IO/Writers/ShapeFileWriterBase.cs
    • -2
    • +2
    ./Core.Components.Gis.IO/Writers/WmtsConnectionInfoWriter.cs
  1. … 15 more files in changeset.