Example #1
0
        public IFeatureSet DissolveWithStats(int fieldIndex, bool selectedOnly, FieldOperationList operations = null)
        {
            var result = _shapefile.DissolveWithStats(fieldIndex, selectedOnly, operations.GetInternal());

            return(WrapShapefile(result));
        }
Example #2
0
        public IFeatureSet AggregateShapesWithStats(bool selectedOnly, int fieldIndex = -1, FieldOperationList operations = null)
        {
            var result = _shapefile.AggregateShapesWithStats(selectedOnly, fieldIndex, operations.GetInternal());

            return(WrapShapefile(result));
        }