-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFieldStatsHelperDPViewModel.cs
654 lines (564 loc) · 23.2 KB
/
FieldStatsHelperDPViewModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
//Copyright 2017 Esri
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
using ArcGIS.Core.Data;
using ArcGIS.Desktop.Core;
using ArcGIS.Desktop.Core.Events;
using ArcGIS.Desktop.Framework;
using ArcGIS.Desktop.Framework.Contracts;
using ArcGIS.Desktop.Framework.Threading.Tasks;
using ArcGIS.Desktop.Mapping;
using MathNet.Numerics.Statistics;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Data;
using System.Windows.Input;
namespace Esri.APL.FieldStatsQueryHelper {
/// <summary>
/// View Model
/// </summary>
internal class FieldStatsHelperDPViewModel : DockPane
{
#region Private Properties
private const string DockPaneId = "FieldStatsHelper_DockPane";
// Lock collections for use by multiple threads
private readonly object _lockMapCollections = new object();
private readonly object _lockLayerCollections = new object();
private readonly object _lockFieldCollections = new object();
// UI lists, readonly collections, and properties
private readonly ObservableCollection<Map> _listOfMaps = new ObservableCollection<Map>();
private readonly ObservableCollection<FeatureLayer> _listOfLayers = new ObservableCollection<FeatureLayer>();
private readonly ObservableCollection<FieldDescription> _listOfFields = new ObservableCollection<FieldDescription>();
private readonly ReadOnlyObservableCollection<Map> _readOnlyListOfMaps;
private readonly ReadOnlyObservableCollection<FeatureLayer> _readOnlyListOfLayers;
private readonly ReadOnlyObservableCollection<FieldDescription> _readOnlyListOfFields;
private Map _selectedMap;
private FeatureLayer _selectedLayer;
private FieldDescription _selectedField;
// Field stats
private double _fieldMin = Double.NaN, _fieldMax = Double.NaN, _fieldMean = Double.NaN,
_fieldMedian = Double.NaN, _fieldStdDev = Double.NaN;
private int _fieldNulls = int.MinValue;
// Histogram range
private double _rangeMin, _rangeMax, _rangeLowerVal, _rangeUpperVal;
// SQL clause
private string _sqlClause = String.Empty;
// Handlers for buttons on the dockpane
private ICommand _retrieveMapsCommand;
private ICommand _addSqlClause;
private ICommand _clearSql;
private ICommand _applyQuery;
#endregion
#region Public Properties
/// <summary>
/// Our List of Maps which is bound to our Dockpane XAML
/// </summary>
public ReadOnlyObservableCollection<Map> ListOfMaps => _readOnlyListOfMaps;
/// <summary>
/// Our list of layers, bound to the UI XAML
/// </summary>
public ReadOnlyObservableCollection<FeatureLayer> ListOfLayers => _readOnlyListOfLayers;
/// <summary>
/// Our List of fieldDescriptions which is bound to our Dockpane XAML
/// </summary>
public ReadOnlyObservableCollection<FieldDescription> ListOfFields => _readOnlyListOfFields;
/// <summary>
/// Data for the histogram
/// </summary>
/// <remarks>
/// Note that multiple fast updates to ChartData and the resulting property update notifications
/// seem to cause enough updates that the UI may not update properly.
/// Try not to update ChartData in a loop; instead, assign a temp variable to it after the loop.
/// </remarks>
public List<ChartHistogramItem> _chartData; // = new ObservableCollection<KeyValuePair<int, double>>();
public List<ChartHistogramItem> ChartData {
get { return _chartData; }
set {
SetProperty(ref _chartData, value);
//_chartData = value;
}
}
public string ChartTitle {
get {
return "2. Specify one or more range filters"; //\n[" + SelectedField?.Name + "]";
}
}
public Map SelectedMap {
get { return _selectedMap; }
set {
System.Diagnostics.Debug.WriteLine("selected map");
// make sure we're on the UI thread
Utils.RunOnUIThread(() => {
SetProperty(ref _selectedMap, value);
if (_selectedMap != null) {
// open /activate the map
Utils.OpenAndActivateMap(_selectedMap.URI);
}
});
System.Diagnostics.Debug.WriteLine("opened and activated map");
// no need to await
UpdateLayers(_selectedMap);
System.Diagnostics.Debug.WriteLine("updated layers");
}
}
public FeatureLayer SelectedLayer {
get { return _selectedLayer; }
set {
SetProperty(ref _selectedLayer, value);
System.Diagnostics.Debug.WriteLine("selected layer");
ClearSql();
// Get fields in the feature layer
UpdateFields(_selectedLayer);
}
}
public FieldDescription SelectedField {
get { return _selectedField; }
set {
SetProperty(ref _selectedField, value);
System.Diagnostics.Debug.WriteLine("selected field");
if (_selectedField != null) {
UpdateFieldStats();
}
System.Diagnostics.Debug.WriteLine("Selected field changed");
}
}
/// <summary>
/// A new field has been selected in the dropdown; find and display its stats
/// </summary>
private void UpdateFieldStats() {
// GetMap needs to be on the MCT
QueuedTask.Run(() => {
List<double> values = new List<double>();
List<long> nulls = new List<long>(); // OIDs of null values
List<long> errors = new List<long>(); // OIDs of non-numeric values
// Get and display statistics for the field
QueryFilter qf = new QueryFilter();
qf.SubFields = _selectedField.Name;
RowCursor rc = SelectedLayer.GetTable().Search(qf);
int iField = rc.FindField(_selectedField.Name);
while (rc.MoveNext()) {
object value = rc.Current.GetOriginalValue(iField);
if (value != DBNull.Value)
try {
values.Add(Convert.ToDouble(value));
} catch {
errors.Add(rc.Current.GetObjectID()); // Shouldn't hit this
} else // Note the null value
nulls.Add(long.MinValue);
}
values.Sort();
double[] aryValues = values.ToArray();
FieldMedian = SortedArrayStatistics.Median(aryValues);
FieldMean = ArrayStatistics.Mean(aryValues);
FieldMin = SortedArrayStatistics.Minimum(aryValues);
FieldMax = SortedArrayStatistics.Maximum(aryValues);
FieldStdDev = Statistics.StandardDeviation(values);
FieldNulls = nulls.Count;
// Find median absolute deviation
//IEnumerable<double> tempValues = values.Select(value => Math.Abs(value - FieldMedian));
//double medianAbsoluteDeviation = Statistics.Median(tempValues);
Histogram histogram = new Histogram(values, 25);
List<ChartHistogramItem> newChartData = new List<ChartHistogramItem>();
for (int i = 0; i < histogram.BucketCount; i++) {
newChartData.Add(new ChartHistogramItem((int)histogram[i].Count, histogram[i].LowerBound, histogram[i].UpperBound));
}
ChartData = newChartData;
// Get min/max values rounded down/up to 3 decimal places
RangeMin = RangeLowerVal = Math.Floor(FieldMin * 1000) / 1000;
RangeMax = RangeUpperVal = Math.Ceiling(FieldMax * 1000) / 1000;
});
}
private void AddSqlClause() {
string clause = SqlWhereClause.Length > 0 ? "\nAND\n" : String.Empty;
clause += SelectedField.Name + " BETWEEN "
+ Math.Round(RangeLowerVal, 3) + " AND " + Math.Round(RangeUpperVal, 3);
SqlWhereClause += clause;
}
private void ClearSql() {
SqlWhereClause = String.Empty;
ApplyQuery();
}
private void ApplyQuery() {
QueuedTask.Run(() => {
SelectedLayer?.SetDefinitionQuery(SqlWhereClause);
});
}
public double FieldMin {
get {
return _fieldMin;
}
set {
SetProperty(ref _fieldMin, value);
}
}
public double FieldMax {
get {
return _fieldMax;
}
set {
SetProperty(ref _fieldMax, value);
}
}
public double FieldMean {
get {
return _fieldMean;
}
set {
SetProperty(ref _fieldMean, value);
}
}
public double FieldMedian {
get {
return _fieldMedian;
}
set {
SetProperty(ref _fieldMedian, value);
}
}
public double FieldStdDev {
get {
return _fieldStdDev;
}
set {
SetProperty(ref _fieldStdDev, value);
}
}
public int FieldNulls {
get {
return _fieldNulls;
}
set {
SetProperty(ref _fieldNulls, value);
}
}
// Implement RelayCommands for buttons on the DockPane
// (using a regular OnClick event would break the MVVM pattern)
public ICommand RetrieveMapsCommand => _retrieveMapsCommand;
public ICommand AddSqlClauseCommand => _addSqlClause;
public ICommand ClearSqlCommand => _clearSql;
public ICommand ApplyQueryCommand => _applyQuery;
#endregion
#region CTor
protected FieldStatsHelperDPViewModel()
{
// setup the lists and sync between background and UI
_readOnlyListOfMaps = new ReadOnlyObservableCollection<Map>(_listOfMaps);
_readOnlyListOfLayers = new ReadOnlyObservableCollection<FeatureLayer>(_listOfLayers);
_readOnlyListOfFields = new ReadOnlyObservableCollection<FieldDescription>(_listOfFields);
BindingOperations.EnableCollectionSynchronization(_readOnlyListOfMaps, _lockMapCollections);
BindingOperations.EnableCollectionSynchronization(_readOnlyListOfLayers, _lockLayerCollections);
BindingOperations.EnableCollectionSynchronization(_readOnlyListOfFields, _lockFieldCollections);
// set up the command to retrieve the maps
_retrieveMapsCommand = new RelayCommand(() => RetrieveMaps(), () => true);
// set up the command to add a sql clause
_addSqlClause = new RelayCommand(() => AddSqlClause(), () => true);
_clearSql = new RelayCommand(() => ClearSql(), () => true);
_applyQuery = new RelayCommand(() => ApplyQuery(), () => true);
}
#endregion
#region Overrides
/// <summary>
/// Set up project document event handlers
/// </summary>
protected override Task InitializeAsync()
{
ProjectItemsChangedEvent.Subscribe(OnProjectCollectionChanged, false);
ProjectOpenedEvent.Subscribe(OnProjectOpened, false);
ProjectClosedEvent.Subscribe(OnProjectClosed, false);
RetrieveMaps();
return base.InitializeAsync();
}
#endregion
#region Show dockpane
/// <summary>
/// Show the DockPane
/// </summary>
internal static void Show()
{
var pane = FrameworkApplication.DockPaneManager.Find(DockPaneId);
pane?.Activate();
}
/// <summary>
/// Text shown near the top of the DockPane
/// </summary>
private string _heading = "1. Choose a Map, Layer, and Field";
public string Heading {
get { return _heading; }
set
{
SetProperty(ref _heading, value);
}
}
/// <summary>
/// The range slider's minimum possible value
/// (different from FieldMin because of rounding/floor function)
/// </summary>
public double RangeMin {
get {
return _rangeMin;
}
set {
SetProperty(ref _rangeMin, value);
}
}
/// <summary>
/// The range slider's maximum possible value
/// (different from FieldMax because of rounding/ceiling function)
/// </summary>
public double RangeMax {
get {
return _rangeMax;
}
set {
SetProperty(ref _rangeMax, value);
}
}
/// <summary>
/// The lower value selected on the range slider
/// </summary>
public double RangeLowerVal {
get {
return _rangeLowerVal;
}
set {
SetProperty(ref _rangeLowerVal, value);
}
}
/// <summary>
/// The upper value selected on the range slider
/// </summary>
public double RangeUpperVal {
get {
return _rangeUpperVal;
}
set {
SetProperty(ref _rangeUpperVal, value);
}
}
public string SqlWhereClause {
get {
return _sqlClause;
}
set {
SetProperty(ref _sqlClause, value);
}
}
#endregion Show dockpane
#region Subscribed Events
/// <summary>
/// Listen to when a project document is closed; clear out maps list
/// </summary>
/// <param name="args"></param>
private void OnProjectClosed(ProjectEventArgs args) {
_listOfMaps.Clear();
}
/// <summary>
/// Listen to when a project document is opened; clear out maps list
/// </summary>
/// <param name="args"></param>
private void OnProjectOpened(ProjectEventArgs args) {
RetrieveMaps();
}
/// <summary>
/// Subscribe to Project Items Changed events which is getting called each
/// time the project items change, which happens when a new map is added or removed in ArcGIS Pro
/// </summary>
/// <param name="args">ProjectItemsChangedEventArgs</param>
private void OnProjectCollectionChanged(ProjectItemsChangedEventArgs args)
{
if (args == null)
return;
var mapItem = args.ProjectItem as MapProjectItem;
if (mapItem == null)
return;
// new project item was added
switch (args.Action) {
case System.Collections.Specialized.NotifyCollectionChangedAction.Add:
var foundItem = _listOfMaps.FirstOrDefault(m => m.URI == mapItem.Path);
// one cannot be found; so add it to our list
if (foundItem == null) {
_listOfMaps.Add(mapItem.GetMap());
}
System.Diagnostics.Debug.WriteLine("Map added");
break;
case System.Collections.Specialized.NotifyCollectionChangedAction.Remove:
Map map = mapItem.GetMap();
// if this is the selected map, resest
if (SelectedMap == map) SelectedMap = null;
// remove from the collection
if (_listOfMaps.Contains(map)) {
_listOfMaps.Remove(map);
}
System.Diagnostics.Debug.WriteLine("Map removed");
break;
case System.Collections.Specialized.NotifyCollectionChangedAction.Reset:
_listOfMaps.Clear();
System.Diagnostics.Debug.WriteLine("Maps reset");
break;
case System.Collections.Specialized.NotifyCollectionChangedAction.Replace:
System.Diagnostics.Debug.WriteLine("Maps list replace");
break;
default:
System.Diagnostics.Debug.WriteLine("Maps list other");
break;
}
}
#endregion
#region Private Helpers
/// <summary>
/// Retrieve map items in the project
/// </summary>
private void RetrieveMaps()
{
System.Diagnostics.Debug.WriteLine("RetrieveMaps");
// clear the collections
_listOfMaps.Clear();
System.Diagnostics.Debug.WriteLine("RetrieveMaps list of maps clear");
if (Project.Current != null)
{
System.Diagnostics.Debug.WriteLine("RetrieveMaps add maps");
// GetMap needs to be on the MCT
QueuedTask.Run(() =>
{
// get the map project items and add to my collection
foreach (MapProjectItem item in Project.Current.GetItems<MapProjectItem>()) {
_listOfMaps.Add(item.GetMap());
}
System.Diagnostics.Debug.WriteLine("RetrieveMaps added maps");
});
}
}
/// <summary>
/// Get the list of layers from the newly selected map
/// </summary>
/// <param name="map"></param>
private void UpdateLayers(Map map) {
// get the layers. GetLayers needs to be on MCT but want to refresh members and properties on UI thread
System.Diagnostics.Debug.WriteLine("UpdateLayers");
_listOfLayers.Clear();
System.Diagnostics.Debug.WriteLine("UpdateLayers list cleared");
if (map == null)
{
System.Diagnostics.Debug.WriteLine("RetrieveMaps no maps");
return;
}
QueuedTask.Run(() =>
{
foreach (var layer in map.GetLayersAsFlattenedList()) {
if (layer is FeatureLayer) _listOfLayers.Add((FeatureLayer) layer);
}
System.Diagnostics.Debug.WriteLine("UpdateLayers new list done");
});
}
/// <summary>
/// Get the list of numeric fields from the newly selected layer
/// </summary>
/// <param name="layer"></param>
private void UpdateFields(FeatureLayer layer) {
System.Diagnostics.Debug.WriteLine("UpdateFields");
_listOfFields.Clear(); ChartData = null;
System.Diagnostics.Debug.WriteLine("UpdateFields list cleared");
if (layer == null) {
System.Diagnostics.Debug.WriteLine("No feature layer selected");
return;
}
QueuedTask.Run(() => {
foreach (var field in layer.GetFieldDescriptions()) {
if (field.Type == FieldType.Integer || field.Type == FieldType.Single || field.Type == FieldType.Double || field.Type == FieldType.SmallInteger) {
_listOfFields.Add(field);
}
}
});
}
#endregion Private Helpers
}
/// <summary>
/// Button implementation to show the DockPane.
/// </summary>
internal class FieldStatsHelperDP_ShowButton : Button
{
protected override void OnClick() {
FieldStatsHelperDPViewModel.Show();
}
}
[ValueConversion(typeof(List<KeyValuePair<double, int>>), typeof(Visibility))]
public class ChartVisibilityDataAvailableConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
if (value != null
&& (value.GetType() == typeof(List<ChartHistogramItem>))
&& ((List<ChartHistogramItem>)value).Count > 0) {
System.Diagnostics.Debug.WriteLine("Chart visible");
return Visibility.Visible;
} else {
String msg = "Chart hidden; ";
if (value == null) msg += "null";
else msg += ((List<ChartHistogramItem>)value).Count + " values";
System.Diagnostics.Debug.WriteLine(msg);
return Visibility.Collapsed;
}
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
throw new NotImplementedException();
}
}
[ValueConversion(typeof(object), typeof(Visibility))]
public class NullToVisibilityConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
return value == null ? Visibility.Visible : Visibility.Collapsed;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
throw new NotImplementedException();
}
}
public class ChartHistogramItem {
private int _count;
private double _rangeMin, _rangeMax;
/// <summary>
/// Create a new histogram item for a range of data values
/// </summary>
/// <param name="count">How many items in the range</param>
/// <param name="rangeMin">The range's smallest value</param>
/// <param name="rangeMax">The range's largest value</param>
public ChartHistogramItem(int count, double rangeMin, double rangeMax) {
this.Count = count;
this.RangeMin = rangeMin;
this.RangeMax = rangeMax;
}
public int Count {
get {
return _count;
}
set {
_count = value;
}
}
public double RangeMax {
get {
return _rangeMax;
}
set {
_rangeMax = value;
}
}
public double RangeMin {
get {
return _rangeMin;
}
set {
_rangeMin = value;
}
}
}
}