-
Notifications
You must be signed in to change notification settings - Fork 1
/
qualityaffected.twb
2886 lines (2885 loc) · 205 KB
/
qualityaffected.twb
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
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20211.21.0320.1853 -->
<workbook original-version='18.1' source-build='2021.1.0 (20211.21.0320.1853)' source-platform='win' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<AutoCreateAndUpdateDSDPhoneLayouts />
<IntuitiveSorting />
<IntuitiveSorting_SP2 />
<MapboxVectorStylesAndLayers />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<_.fcp.SetMembershipControl.true...SetMembershipControl />
<SheetIdentifierTracking />
<WindowsPersistSimpleIdentifiers />
<WorksheetBackgroundTransparency />
<ZoneBackgroundTransparency />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12' inline='true' name='federated.1k2qfwx0arp3w21f2e0120vglced' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12' name='textscan.1ugh8rt059lov31edxkz30klmufd'>
<connection class='textscan' directory='C:/Users/mahesh/Downloads' filename='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' password='' server='' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='textscan.1ugh8rt059lov31edxkz30klmufd' name='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' table='[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12#csv]' type='table'>
<columns character-set='windows-1252' header='yes' locale='en_US' separator=','>
<column datatype='string' name='State Name' ordinal='0' />
<column datatype='string' name='District Name' ordinal='1' />
<column datatype='string' name='Block Name' ordinal='2' />
<column datatype='string' name='Panchayat Name' ordinal='3' />
<column datatype='string' name='Village Name' ordinal='4' />
<column datatype='string' name='Habitation Name' ordinal='5' />
<column datatype='string' name='Quality Parameter' ordinal='6' />
<column datatype='date' name='Year' ordinal='7' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation connection='textscan.1ugh8rt059lov31edxkz30klmufd' name='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' table='[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12#csv]' type='table'>
<columns character-set='windows-1252' header='yes' locale='en_US' separator=','>
<column datatype='string' name='State Name' ordinal='0' />
<column datatype='string' name='District Name' ordinal='1' />
<column datatype='string' name='Block Name' ordinal='2' />
<column datatype='string' name='Panchayat Name' ordinal='3' />
<column datatype='string' name='Village Name' ordinal='4' />
<column datatype='string' name='Habitation Name' ordinal='5' />
<column datatype='string' name='Quality Parameter' ordinal='6' />
<column datatype='date' name='Year' ordinal='7' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='character-set'>"ibm-5348_P100-1997"</attribute>
<attribute datatype='string' name='collation'>"en_US"</attribute>
<attribute datatype='string' name='field-delimiter'>","</attribute>
<attribute datatype='string' name='header-row'>"true"</attribute>
<attribute datatype='string' name='locale'>"en_US"</attribute>
<attribute datatype='string' name='single-char'>""</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>State Name</remote-name>
<remote-type>129</remote-type>
<local-name>[State Name]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>State Name</remote-alias>
<ordinal>0</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>District Name</remote-name>
<remote-type>129</remote-type>
<local-name>[District Name]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>District Name</remote-alias>
<ordinal>1</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Block Name</remote-name>
<remote-type>129</remote-type>
<local-name>[Block Name]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>Block Name</remote-alias>
<ordinal>2</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Panchayat Name</remote-name>
<remote-type>129</remote-type>
<local-name>[Panchayat Name]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>Panchayat Name</remote-alias>
<ordinal>3</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Village Name</remote-name>
<remote-type>129</remote-type>
<local-name>[Village Name]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>Village Name</remote-alias>
<ordinal>4</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Habitation Name</remote-name>
<remote-type>129</remote-type>
<local-name>[Habitation Name]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>Habitation Name</remote-alias>
<ordinal>5</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Quality Parameter</remote-name>
<remote-type>129</remote-type>
<local-name>[Quality Parameter]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>Quality Parameter</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Year</remote-name>
<remote-type>133</remote-type>
<local-name>[Year]</local-name>
<parent-name>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv]</parent-name>
<remote-alias>Year</remote-alias>
<ordinal>7</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column datatype='string' name='[District Name]' role='dimension' type='nominal' />
<column datatype='string' name='[Quality Parameter]' role='dimension' type='nominal' />
<column datatype='string' name='[State Name]' role='dimension' semantic-role='[State].[Name]' type='nominal' />
<_.fcp.ObjectModelTableType.true...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='table' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column-instance column='[Quality Parameter]' derivation='None' name='[none:Quality Parameter:nk]' pivot='key' type='nominal' />
<column-instance column='[State Name]' derivation='None' name='[none:State Name:nk]' pivot='key' type='nominal' />
<group caption='Action (District Name,Quality Parameter,State Name)' hidden='true' name='[Action (District Name,Quality Parameter,State Name)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[District Name]' />
<groupfilter function='level-members' level='[Quality Parameter]' />
<groupfilter function='level-members' level='[State Name]' />
</groupfilter>
</group>
<layout _.fcp.SchemaViewerObjectModel.false...dim-percentage='0.5' _.fcp.SchemaViewerObjectModel.false...measure-percentage='0.4' dim-ordering='alphabetic' measure-ordering='alphabetic' show-aliased-fields='true' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[none:Quality Parameter:nk]' type='palette'>
<map to='#4e79a7'>
<bucket>"Arsenic"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Salinity"</bucket>
</map>
<map to='#76b7b2'>
<bucket>"Nitrate"</bucket>
</map>
<map to='#e15759'>
<bucket>"Iron"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Fluoride"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:State Name:nk]' type='palette'>
<map to='#499894'>
<bucket>"KARNATAKA"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"ANDHRA PRADESH"</bucket>
</map>
<map to='#59a14f'>
<bucket>"GUJARAT"</bucket>
</map>
<map to='#79706e'>
<bucket>"ORISSA"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"KERALA"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"HARYANA"</bucket>
</map>
<map to='#9d7660'>
<bucket>"WEST BENGAL"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"ASSAM"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"UTTAR PRADESH"</bucket>
</map>
<map to='#b6992d'>
<bucket>"JAMMU AND KASHMIR"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"PUNJAB"</bucket>
</map>
<map to='#d37295'>
<bucket>"RAJASTHAN"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"UTTARAKHAND"</bucket>
</map>
<map to='#e15759'>
<bucket>"MADHYA PRADESH"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"JHARKHAND"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"BIHAR"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"TAMIL NADU"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"MAHARASHTRA"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"CHHATTISGARH"</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"India"' />
<semantic-value key='[State].[Name]' value='%null%' />
</semantic-values>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
<objects>
<object caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' id='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F'>
<properties context=''>
<relation connection='textscan.1ugh8rt059lov31edxkz30klmufd' name='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' table='[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12#csv]' type='table'>
<columns character-set='windows-1252' header='yes' locale='en_US' separator=','>
<column datatype='string' name='State Name' ordinal='0' />
<column datatype='string' name='District Name' ordinal='1' />
<column datatype='string' name='Block Name' ordinal='2' />
<column datatype='string' name='Panchayat Name' ordinal='3' />
<column datatype='string' name='Village Name' ordinal='4' />
<column datatype='string' name='Habitation Name' ordinal='5' />
<column datatype='string' name='Quality Parameter' ordinal='6' />
<column datatype='date' name='Year' ordinal='7' />
</columns>
</relation>
</properties>
</object>
</objects>
</_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
</datasource>
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<worksheets>
<worksheet name='Blockwise quality parameters'>
<table>
<view>
<datasources>
<datasource caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12' name='federated.1k2qfwx0arp3w21f2e0120vglced' />
</datasources>
<datasource-dependencies datasource='federated.1k2qfwx0arp3w21f2e0120vglced'>
<column datatype='string' name='[Block Name]' role='dimension' type='nominal' />
<column datatype='string' name='[Quality Parameter]' role='dimension' type='nominal' />
<_.fcp.ObjectModelTableType.false...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='integer' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column datatype='string' name='[State Name]' role='dimension' semantic-role='[State].[Name]' type='nominal' />
<_.fcp.ObjectModelTableType.true...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='table' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column-instance column='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' derivation='Count' name='[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' pivot='key' type='quantitative' />
<column-instance column='[Block Name]' derivation='None' name='[none:Block Name:nk]' pivot='key' type='nominal' />
<column-instance column='[Quality Parameter]' derivation='None' name='[none:Quality Parameter:nk]' pivot='key' type='nominal' />
<column-instance column='[State Name]' derivation='None' name='[none:State Name:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]'>
<groupfilter function='member' level='[none:State Name:nk]' member='"ANDHRA PRADESH"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<shelf-sorts>
<shelf-sort-v2 dimension-to-sort='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Block Name:nk]' direction='DESC' is-on-innermost-dimension='true' measure-to-sort-by='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' shelf='columns' />
</shelf-sorts>
<slices>
<column>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]</rows>
<cols>([federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk] / [federated.1k2qfwx0arp3w21f2e0120vglced].[none:Block Name:nk])</cols>
</table>
<simple-id uuid='{9AB01213-E075-4117-9CC5-E39904DB954C}' />
</worksheet>
<worksheet name='Districtwise quality parameters'>
<layout-options>
<title>
<formatted-text>
<run fontalignment='1' fontcolor='#e15759' fontname='Cooper Black'>District Wise quality parameters</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12' name='federated.1k2qfwx0arp3w21f2e0120vglced' />
</datasources>
<datasource-dependencies datasource='federated.1k2qfwx0arp3w21f2e0120vglced'>
<column datatype='string' name='[District Name]' role='dimension' type='nominal' />
<column datatype='string' name='[Quality Parameter]' role='dimension' type='nominal' />
<_.fcp.ObjectModelTableType.false...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='integer' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column datatype='string' name='[State Name]' role='dimension' semantic-role='[State].[Name]' type='nominal' />
<_.fcp.ObjectModelTableType.true...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='table' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column-instance column='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' derivation='Count' name='[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' pivot='key' type='quantitative' />
<column-instance column='[District Name]' derivation='None' name='[none:District Name:nk]' pivot='key' type='nominal' />
<column-instance column='[Quality Parameter]' derivation='None' name='[none:Quality Parameter:nk]' pivot='key' type='nominal' />
<column-instance column='[State Name]' derivation='None' name='[none:State Name:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]'>
<groupfilter function='member' level='[none:State Name:nk]' member='"ANDHRA PRADESH"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<shelf-sorts>
<shelf-sort-v2 dimension-to-sort='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:District Name:nk]' direction='DESC' is-on-innermost-dimension='true' measure-to-sort-by='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' shelf='columns' />
</shelf-sorts>
<slices>
<column>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<format attr='title' class='0' field='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' scope='rows' value='Quality affected count' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' />
<lod column='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' />
<lod column='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' />
<lod column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]</rows>
<cols>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:District Name:nk]</cols>
</table>
<simple-id uuid='{FFC0AEE4-AC74-4499-B2FB-8D11C92545B4}' />
</worksheet>
<worksheet name='Quality Parameters'>
<layout-options>
<title>
<formatted-text>
<run fontalignment='1' fontcolor='#e15759' fontname='Cooper Black'>Quality Parameters</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12' name='federated.1k2qfwx0arp3w21f2e0120vglced' />
</datasources>
<datasource-dependencies datasource='federated.1k2qfwx0arp3w21f2e0120vglced'>
<_.fcp.ObjectModelTableType.false...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='integer' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column datatype='string' name='[Quality Parameter]' role='dimension' type='nominal' />
<_.fcp.ObjectModelTableType.true...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='table' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column-instance column='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' derivation='Count' name='[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' pivot='key' type='quantitative' />
<column-instance column='[Quality Parameter]' derivation='None' name='[none:Quality Parameter:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Circle' />
<encodings>
<size column='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' />
<text column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' />
<text column='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' />
<color column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-line-first' value='true' />
<format attr='mark-labels-line-last' value='true' />
<format attr='mark-labels-range-min' value='true' />
<format attr='mark-labels-range-max' value='true' />
<format attr='mark-labels-mode' value='all' />
<format attr='mark-labels-range-scope' value='pane' />
<format attr='mark-labels-range-field' value='' />
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='false' />
</style-rule>
</style>
</pane>
</panes>
<rows />
<cols />
<mark-labels>
<mark-label id='0' label-state='on'>
<tuple-reference>
<tuple-descriptor>
<pane-descriptor>
<x-fields />
<y-fields />
</pane-descriptor>
<columns>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]</field>
</columns>
</tuple-descriptor>
<tuple>
<value>4314</value>
<value>"Arsenic"</value>
</tuple>
</tuple-reference>
</mark-label>
<mark-label id='1' label-state='on'>
<tuple-reference>
<tuple-descriptor>
<pane-descriptor>
<x-fields />
<y-fields />
</pane-descriptor>
<columns>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]</field>
</columns>
</tuple-descriptor>
<tuple>
<value>2758</value>
<value>"Nitrate"</value>
</tuple>
</tuple-reference>
</mark-label>
</mark-labels>
</table>
<simple-id uuid='{CB49EBD7-8375-4442-AABB-93C6A1F83C82}' />
</worksheet>
<worksheet name='Statewise quality parameters'>
<layout-options>
<title>
<formatted-text>
<run fontalignment='1' fontcolor='#e15759' fontname='Cooper Black'>State-wise Quality Affected Habitation</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12' name='federated.1k2qfwx0arp3w21f2e0120vglced' />
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<datasource-dependencies datasource='federated.1k2qfwx0arp3w21f2e0120vglced'>
<column datatype='string' name='[Panchayat Name]' role='dimension' type='nominal' />
<column datatype='string' name='[Quality Parameter]' role='dimension' type='nominal' />
<_.fcp.ObjectModelTableType.false...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='integer' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column datatype='string' name='[State Name]' role='dimension' semantic-role='[State].[Name]' type='nominal' />
<_.fcp.ObjectModelTableType.true...column caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv' datatype='table' name='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' role='measure' type='quantitative' />
<column-instance column='[__tableau_internal_object_id__].[QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F]' derivation='Count' name='[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' pivot='key' type='quantitative' />
<column-instance column='[Panchayat Name]' derivation='None' name='[none:Panchayat Name:nk]' pivot='key' type='nominal' />
<column-instance column='[Quality Parameter]' derivation='None' name='[none:Quality Parameter:nk]' pivot='key' type='nominal' />
<column-instance column='[State Name]' derivation='None' name='[none:State Name:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Panchayat Name:nk]'>
<groupfilter function='level-members' level='[none:Panchayat Name:nk]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]'>
<groupfilter function='level-members' level='[none:Quality Parameter:nk]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<slices>
<column>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]</column>
<column>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Panchayat Name:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='mark'>
<encoding attr='color' field='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' palette='red_gold_10_0' type='interpolated' />
</style-rule>
<style-rule element='legend-title-text'>
<format attr='color' field='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' value='Count of Quality Affected'>
<formatted-text>
<run>Count of Quality Affected</run>
</formatted-text>
</format>
</style-rule>
<style-rule element='map'>
<format attr='washout' value='0.0' />
</style-rule>
<style-rule element='quick-filter'>
<format attr='font-family' value='Tableau Semibold' />
<format attr='background-color' value='#e9edf5' />
</style-rule>
<style-rule element='quick-filter-title'>
<format attr='font-size' value='10' />
<format attr='text-align' value='center' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<text column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]' />
<lod column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]' />
<color column='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' />
<lod column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' />
<geometry column='[federated.1k2qfwx0arp3w21f2e0120vglced].[Geometry (generated)]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
<format attr='mark-labels-mode' value='all' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1k2qfwx0arp3w21f2e0120vglced].[Latitude (generated)]</rows>
<cols>[federated.1k2qfwx0arp3w21f2e0120vglced].[Longitude (generated)]</cols>
</table>
<simple-id uuid='{B0407855-1466-4D8A-A3F3-3D5B910E4A60}' />
</worksheet>
</worksheets>
<dashboards>
<dashboard name='Dashboard'>
<style />
<size maxheight='800' maxwidth='1000' minheight='800' minwidth='1000' />
<datasources>
<datasource caption='QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12' name='federated.1k2qfwx0arp3w21f2e0120vglced' />
</datasources>
<datasource-dependencies datasource='federated.1k2qfwx0arp3w21f2e0120vglced'>
<column datatype='string' name='[Quality Parameter]' role='dimension' type='nominal' />
<column datatype='string' name='[State Name]' role='dimension' semantic-role='[State].[Name]' type='nominal' />
<column-instance column='[Quality Parameter]' derivation='None' name='[none:Quality Parameter:nk]' pivot='key' type='nominal' />
<column-instance column='[State Name]' derivation='None' name='[none:State Name:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<zones>
<zone _.fcp.SetMembershipControl.false...type='layout-basic' _.fcp.SetMembershipControl.true...type-v2='layout-basic' h='100000' id='25' w='100000' x='0' y='0'>
<zone _.fcp.SetMembershipControl.false...type='layout-basic' _.fcp.SetMembershipControl.true...type-v2='layout-basic' h='98000' id='21' w='98400' x='800' y='1000'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='padding' value='1' />
<format attr='background-color' value='#e9f3f2' />
</zone-style>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
<format attr='background-color' value='#f9eee8' />
</zone-style>
</zone>
<zone h='36375' id='3' name='Quality Parameters' w='39000' x='2600' y='21875'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='background-color' value='#f5ead7' />
</zone-style>
</zone>
<zone h='38375' id='4' name='Statewise quality parameters' w='50800' x='47000' y='23375'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='background-color' value='#f5ead7' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='color' _.fcp.SetMembershipControl.true...type-v2='color' h='7750' id='10' name='Statewise quality parameters' pane-specification-id='0' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' w='14300' x='83200' y='61875' />
<zone _.fcp.SetMembershipControl.false...type='filter' _.fcp.SetMembershipControl.true...type-v2='filter' h='6875' id='9' mode='dropdown' name='Statewise quality parameters' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' w='16800' x='30300' y='11000' />
<zone h='33875' id='13' name='Districtwise quality parameters' w='57100' x='21200' y='64625'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='background-color' value='#f5ead7' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='filter' _.fcp.SetMembershipControl.true...type-v2='filter' h='6000' id='19' mode='dropdown' name='Districtwise quality parameters' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]' w='16800' x='47800' y='10750'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='background-color' value='#e6ecf0' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='text' _.fcp.SetMembershipControl.true...type-v2='text' forceUpdate='true' h='5250' id='24' w='79400' x='7400' y='2625'>
<formatted-text>
<run bold='true' fontname='Georgia' fontsize='26'>QUALITY Affected HABITATION 2012</run>
<run>Æ </run>
</formatted-text>
</zone>
</zones>
<devicelayouts>
<devicelayout auto-generated='true' name='Phone'>
<size maxheight='1150' minheight='1150' sizing-mode='vscroll' />
<zones>
<zone _.fcp.SetMembershipControl.false...type='layout-basic' _.fcp.SetMembershipControl.true...type-v2='layout-basic' h='100000' id='31' w='100000' x='0' y='0'>
<zone _.fcp.SetMembershipControl.false...type='layout-flow' _.fcp.SetMembershipControl.true...type-v2='layout-flow' h='98000' id='30' param='vert' w='98400' x='800' y='1000'>
<zone _.fcp.SetMembershipControl.false...type='text' _.fcp.SetMembershipControl.true...type-v2='text' forceUpdate='true' h='5250' id='24' w='79400' x='7400' y='2625'>
<formatted-text>
<run bold='true' fontname='Georgia' fontsize='26'>QUALITY Affected HABITATION 2012</run>
<run>Æ </run>
</formatted-text>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='36375' id='3' is-fixed='true' name='Quality Parameters' w='39000' x='2600' y='21875'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
<format attr='background-color' value='#f5ead7' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='filter' _.fcp.SetMembershipControl.true...type-v2='filter' h='6875' id='9' mode='dropdown' name='Statewise quality parameters' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' w='16800' x='30300' y='11000'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='38375' id='4' is-fixed='true' name='Statewise quality parameters' w='50800' x='47000' y='23375'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
<format attr='background-color' value='#f5ead7' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='color' _.fcp.SetMembershipControl.true...type-v2='color' h='7750' id='10' name='Statewise quality parameters' pane-specification-id='0' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' w='14300' x='83200' y='61875'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='filter' _.fcp.SetMembershipControl.true...type-v2='filter' h='6000' id='19' mode='dropdown' name='Districtwise quality parameters' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]' w='16800' x='47800' y='10750'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
<format attr='background-color' value='#e6ecf0' />
</zone-style>
</zone>
<zone fixed-size='271' h='33875' id='13' is-fixed='true' name='Districtwise quality parameters' w='57100' x='21200' y='64625'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
<format attr='background-color' value='#f5ead7' />
</zone-style>
</zone>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
<format attr='background-color' value='#f9eee8' />
</zone-style>
</zone>
</zones>
</devicelayout>
</devicelayouts>
<simple-id uuid='{4567F49D-DAAC-4C47-B65A-A10B5246D07A}' />
</dashboard>
<dashboard name='Story ' type='storyboard'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontalignment='1' fontname='Lucida Fax' fontsize='22'>Visualization of Water quality affected habitats 2012</run>
</formatted-text>
</title>
</layout-options>
<style />
<size maxheight='964' maxwidth='1016' minheight='964' minwidth='1016' />
<zones>
<zone _.fcp.SetMembershipControl.false...type='layout-basic' _.fcp.SetMembershipControl.true...type-v2='layout-basic' h='100000' id='2' w='100000' x='0' y='0'>
<zone _.fcp.SetMembershipControl.false...type='layout-flow' _.fcp.SetMembershipControl.true...type-v2='layout-flow' h='98340' id='11' param='vert' removable='false' w='98426' x='787' y='830'>
<zone _.fcp.SetMembershipControl.false...type='title' _.fcp.SetMembershipControl.true...type-v2='title' h='4253' id='12' w='98426' x='787' y='830'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='layout-flow' _.fcp.SetMembershipControl.true...type-v2='layout-flow' h='94087' id='9' param='vert' removable='false' w='98426' x='787' y='5083'>
<zone _.fcp.SetMembershipControl.false...type='layout-flow' _.fcp.SetMembershipControl.true...type-v2='layout-flow' h='94087' id='7' param='vert' removable='false' w='98426' x='787' y='5083'>
<zone _.fcp.SetMembershipControl.false...type='layout-flow' _.fcp.SetMembershipControl.true...type-v2='layout-flow' h='94087' id='1' param='vert' removable='false' w='98426' x='787' y='5083'>
<zone _.fcp.SetMembershipControl.false...type='flipboard-nav' _.fcp.SetMembershipControl.true...type-v2='flipboard-nav' h='10477' id='4' is-fixed='true' paired-zone-id='5' removable='false' w='98426' x='787' y='5083' />
<zone _.fcp.SetMembershipControl.false...type='flipboard' _.fcp.SetMembershipControl.true...type-v2='flipboard' h='83610' id='5' paired-zone-id='4' removable='false' w='98426' x='787' y='15560'>
<flipboard active-id='1' nav-type='caption' show-nav-arrows='true'>
<story-points>
<story-point caption='Iron is the highest affecting parameter.' captured-sheet='Quality Parameters' id='1' />
<story-point caption='Rajasthan has the highest quality affected habitation.' captured-sheet='Statewise quality parameters' id='4'>
<capturedDeltas>
<worksheet name='Statewise quality parameters'>
<style delta-type='added'>
<style-rule element='axis'>
<encoding attr='space' class='0' field='[federated.1k2qfwx0arp3w21f2e0120vglced].[Latitude (generated)]' field-type='quantitative' max='4577630.3852457413' min='318822.85887590935' projection='EPSG:3857' range-type='fixed' scope='rows' type='space' />
<encoding attr='space' class='0' field='[federated.1k2qfwx0arp3w21f2e0120vglced].[Longitude (generated)]' field-type='quantitative' max='11500112.641534714' min='7277222.7514127903' projection='EPSG:3857' range-type='fixed' scope='cols' type='space' />
</style-rule>
</style>
</worksheet>
</capturedDeltas>
</story-point>
<story-point caption='Barmer district has the highest effected habitation.' captured-sheet='Districtwise quality parameters' id='5'>
<capturedDeltas>
<worksheet name='Districtwise quality parameters'>
<filter class='categorical' column='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]'>
<groupfilter function='member' level='[none:State Name:nk]' member='"RAJASTHAN"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
</worksheet>
</capturedDeltas>
</story-point>
<story-point caption='Barmer block has the highest number quality affected habitation.' captured-sheet='Blockwise quality parameters' id='7' />
<story-point caption='Quality affected habitation dashboard.' captured-sheet='Dashboard' id='6' />
</story-points>
</flipboard>
</zone>
</zone>
</zone>
</zone>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
</zone-style>
</zone>
</zones>
<simple-id uuid='{525B5B7E-7FF7-4A5E-A86B-4DCE2B9C9C9B}' />
</dashboard>
</dashboards>
<windows source-height='30'>
<window class='worksheet' name='Quality Parameters'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='0' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Habitation Name:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{423524AD-AA47-4C26-AE07-A66452A27088}' />
</window>
<window class='worksheet' name='Statewise quality parameters'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card mode='dropdown' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' type='filter' />
<card pane-specification-id='0' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[__tableau_internal_object_id__].[cnt:QUALITY_AFFECTED_HABITATIONS_AS_ON_1_APR_12.csv_1AFD18869CC8435B9EF4296B6C635B2F:qk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Block Name:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:District Name:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Panchayat Name:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]</field>
</color-one-way>
</highlight>
<default-map-tool-selection tool='2' />
</viewpoint>
<simple-id uuid='{67338A94-827D-45BA-B825-55DA564C6108}' />
</window>
<window class='worksheet' name='Districtwise quality parameters'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card mode='dropdown' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]' type='filter' />
<card pane-specification-id='0' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Village Name:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{201A74B8-808B-4D9D-933D-081D19611E0C}' />
</window>
<window class='worksheet' name='Blockwise quality parameters'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card mode='dropdown' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]' type='filter' />
<card pane-specification-id='0' param='[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Block Name:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:Quality Parameter:nk]</field>
<field>[federated.1k2qfwx0arp3w21f2e0120vglced].[none:State Name:nk]</field>
</color-one-way>