-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathFootballDataEngineering Dashboard.twb
6408 lines (6407 loc) · 477 KB
/
FootballDataEngineering Dashboard.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 20232.23.0909.1159 -->
<workbook original-version='18.1' source-build='2023.2.2 (20232.23.0909.1159)' source-platform='mac' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<_.fcp.AccessibleZoneTabOrder.true...AccessibleZoneTabOrder />
<_.fcp.AnimationOnByDefault.true...AnimationOnByDefault />
<AutoCreateAndUpdateDSDPhoneLayouts />
<MapboxVectorStylesAndLayers />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<SetMembershipControl />
<SheetIdentifierTracking />
<SortTagCleanup />
<WindowsPersistSimpleIdentifiers />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<_.fcp.AnimationOnByDefault.false...style>
<_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule element='animation'>
<_.fcp.AnimationOnByDefault.false...format attr='animation-on' value='ao-on' />
</_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule>
</_.fcp.AnimationOnByDefault.false...style>
<datasources>
<datasource caption='stadium_cleaned_2023-10-01_22_37_47.376621' inline='true' name='federated.09b9rka1n3q36o1clh6td15n720y' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='stadium_cleaned_2023-10-01_22_37_47.376621' name='textscan.1l2olbp0h0ogyg14c39dx1vdqd5u'>
<connection class='textscan' directory='/Users/airscholar/Downloads' filename='stadium_cleaned_2023-10-01_22_37_47.376621.csv' password='' server='' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='textscan.1l2olbp0h0ogyg14c39dx1vdqd5u' name='stadium_cleaned_2023-10-01_22_37_47.376621.csv' table='[stadium_cleaned_2023-10-01_22_37_47.376621#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_US' separator=','>
<column datatype='integer' name='rank' ordinal='0' />
<column datatype='string' name='stadium' ordinal='1' />
<column datatype='integer' name='capacity' ordinal='2' />
<column datatype='string' name='region' ordinal='3' />
<column datatype='string' name='country' ordinal='4' />
<column datatype='string' name='city' ordinal='5' />
<column datatype='string' name='images' ordinal='6' />
<column datatype='string' name='home_team' ordinal='7' />
<column datatype='string' name='location' ordinal='8' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation connection='textscan.1l2olbp0h0ogyg14c39dx1vdqd5u' name='stadium_cleaned_2023-10-01_22_37_47.376621.csv' table='[stadium_cleaned_2023-10-01_22_37_47.376621#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_US' separator=','>
<column datatype='integer' name='rank' ordinal='0' />
<column datatype='string' name='stadium' ordinal='1' />
<column datatype='integer' name='capacity' ordinal='2' />
<column datatype='string' name='region' ordinal='3' />
<column datatype='string' name='country' ordinal='4' />
<column datatype='string' name='city' ordinal='5' />
<column datatype='string' name='images' ordinal='6' />
<column datatype='string' name='home_team' ordinal='7' />
<column datatype='string' name='location' ordinal='8' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='character-set'>"UTF-8"</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>rank</remote-name>
<remote-type>20</remote-type>
<local-name>[rank]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>rank</remote-alias>
<ordinal>0</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>stadium</remote-name>
<remote-type>129</remote-type>
<local-name>[stadium]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>stadium</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>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>capacity</remote-name>
<remote-type>20</remote-type>
<local-name>[capacity]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>capacity</remote-alias>
<ordinal>2</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>region</remote-name>
<remote-type>129</remote-type>
<local-name>[region]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>region</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>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>country</remote-name>
<remote-type>129</remote-type>
<local-name>[country]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>country</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>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>city</remote-name>
<remote-type>129</remote-type>
<local-name>[city]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>city</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>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>images</remote-name>
<remote-type>129</remote-type>
<local-name>[images]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>images</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>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>home_team</remote-name>
<remote-type>129</remote-type>
<local-name>[home_team]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>home_team</remote-alias>
<ordinal>7</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>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>location</remote-name>
<remote-type>129</remote-type>
<local-name>[location]</local-name>
<parent-name>[stadium_cleaned_2023-10-01_22_37_47.376621.csv]</parent-name>
<remote-alias>location</remote-alias>
<ordinal>8</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>[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column caption='RegionCount' datatype='integer' name='[Calculation_4489455516772052992]' role='measure' type='quantitative'>
<calculation class='tableau' formula='COUNT([stadium])' />
</column>
<_.fcp.ObjectModelTableType.true...column caption='stadium_cleaned_2023-10-01_22_37_47.376621.csv' datatype='table' name='[__tableau_internal_object_id__].[stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D]' role='measure' type='quantitative' />
<column caption='Capacity' datatype='integer' name='[capacity]' role='measure' type='quantitative' />
<column caption='City - Split 1' datatype='string' name='[city - Split 1]' role='dimension' semantic-role='[City].[Name]' type='nominal' user:SplitFieldIndex='1' user:SplitFieldOrigin='[federated.09b9rka1n3q36o1clh6td15n720y].[city]'>
<calculation class='tableau' formula='TRIM( SPLIT( [city], ",", 1 ) )' />
</column>
<column caption='City' datatype='string' name='[city]' role='dimension' semantic-role='[City].[Name]' type='nominal' />
<column caption='Country' datatype='string' name='[country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal'>
<semantic-values semantic-role='[Country].[Name]'>
<semantic-value key='"England"' value='"United Kingdom"' />
<semantic-value key='"Scotland"' value='"United Kingdom"' />
<semantic-value key='"Wales"' value='"United Kingdom"' />
</semantic-values>
</column>
<column caption='Home Team' datatype='string' name='[home_team]' role='dimension' type='nominal' />
<column caption='Images' datatype='string' name='[images]' role='dimension' semantic-role='[URL]' type='nominal' />
<column caption='Location' datatype='string' name='[location]' role='dimension' type='nominal' />
<column caption='Rank' datatype='integer' name='[rank]' role='measure' type='quantitative' />
<column caption='Region' datatype='string' name='[region]' role='dimension' type='nominal' />
<column caption='Stadium' datatype='string' name='[stadium]' role='dimension' type='nominal' />
<drill-paths>
<drill-path name='country, city'>
<field>[country]</field>
<field>[city]</field>
</drill-path>
</drill-paths>
<layout _.fcp.SchemaViewerObjectModel.false...dim-percentage='0.5' _.fcp.SchemaViewerObjectModel.false...measure-percentage='0.4' dim-ordering='alphabetic' measure-ordering='alphabetic' show-structure='true' />
<semantic-values>
<semantic-value key='[Country].[Name]' value='"United States"' />
</semantic-values>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
<objects>
<object caption='stadium_cleaned_2023-10-01_22_37_47.376621.csv' id='stadium_cleaned_2023-10-01_22_37_47.376621.csv_58002140A41B40E6954425F89A841A8D'>
<properties context=''>
<relation connection='textscan.1l2olbp0h0ogyg14c39dx1vdqd5u' name='stadium_cleaned_2023-10-01_22_37_47.376621.csv' table='[stadium_cleaned_2023-10-01_22_37_47.376621#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_US' separator=','>
<column datatype='integer' name='rank' ordinal='0' />
<column datatype='string' name='stadium' ordinal='1' />
<column datatype='integer' name='capacity' ordinal='2' />
<column datatype='string' name='region' ordinal='3' />
<column datatype='string' name='country' ordinal='4' />
<column datatype='string' name='city' ordinal='5' />
<column datatype='string' name='images' ordinal='6' />
<column datatype='string' name='home_team' ordinal='7' />
<column datatype='string' name='location' ordinal='8' />
</columns>
</relation>
</properties>
</object>
</objects>
</_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
</datasource>
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<worksheets>
<worksheet name='Geographical Distribution of Stadiums'>
<table>
<view>
<datasources>
<datasource caption='stadium_cleaned_2023-10-01_22_37_47.376621' name='federated.09b9rka1n3q36o1clh6td15n720y' />
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<datasource-dependencies datasource='federated.09b9rka1n3q36o1clh6td15n720y'>
<column caption='City - Split 1' datatype='string' name='[city - Split 1]' role='dimension' semantic-role='[City].[Name]' type='nominal' user:SplitFieldIndex='1' user:SplitFieldOrigin='[federated.09b9rka1n3q36o1clh6td15n720y].[city]'>
<calculation class='tableau' formula='TRIM( SPLIT( [city], ",", 1 ) )' />
</column>
<column caption='City' datatype='string' name='[city]' role='dimension' semantic-role='[City].[Name]' type='nominal' />
<column caption='Country' datatype='string' name='[country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal'>
<semantic-values semantic-role='[Country].[Name]'>
<semantic-value key='"England"' value='"United Kingdom"' />
<semantic-value key='"Scotland"' value='"United Kingdom"' />
<semantic-value key='"Wales"' value='"United Kingdom"' />
</semantic-values>
</column>
<column caption='Images' datatype='string' name='[images]' role='dimension' semantic-role='[URL]' type='nominal' />
<column-instance column='[city - Split 1]' derivation='None' name='[none:city - Split 1:nk]' pivot='key' type='nominal' />
<column-instance column='[country]' derivation='None' name='[none:country:nk]' pivot='key' type='nominal' />
<column-instance column='[images]' derivation='None' name='[none:images:nk]' pivot='key' type='nominal' />
<column-instance column='[region]' derivation='None' name='[none:region:nk]' pivot='key' type='nominal' />
<column-instance column='[stadium]' derivation='None' name='[none:stadium:nk]' pivot='key' type='nominal' />
<column caption='Region' datatype='string' name='[region]' role='dimension' type='nominal' />
<column caption='Stadium' datatype='string' name='[stadium]' role='dimension' type='nominal' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<encoding attr='space' class='0' field='[federated.09b9rka1n3q36o1clh6td15n720y].[Longitude (generated)]' field-type='quantitative' max='8931736.8122333121' min='-9504411.7846343163' projection='EPSG:3857' range-type='fixed' scope='cols' type='space' />
<encoding attr='space' class='0' field='[federated.09b9rka1n3q36o1clh6td15n720y].[Latitude (generated)]' field-type='quantitative' max='14986221.420893097' min='-1572380.657374064' projection='EPSG:3857' range-type='fixed' scope='rows' type='space' />
</style-rule>
<style-rule element='map'>
<format attr='washout' value='0.0' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' />
<lod column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:country:nk]' />
<lod column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:city - Split 1:nk]' />
<lod column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:images:nk]' />
<lod column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-cull' value='true' />
<format attr='mark-labels-show' value='false' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.09b9rka1n3q36o1clh6td15n720y].[Latitude (generated)]</rows>
<cols>[federated.09b9rka1n3q36o1clh6td15n720y].[Longitude (generated)]</cols>
</table>
<simple-id uuid='{D606722D-F7D2-44F1-AA65-41A4396D01CF}' />
</worksheet>
<worksheet name='Stadiums Location By Regions'>
<table>
<view>
<datasources>
<datasource caption='stadium_cleaned_2023-10-01_22_37_47.376621' name='federated.09b9rka1n3q36o1clh6td15n720y' />
</datasources>
<datasource-dependencies datasource='federated.09b9rka1n3q36o1clh6td15n720y'>
<column caption='RegionCount' datatype='integer' name='[Calculation_4489455516772052992]' role='measure' type='quantitative'>
<calculation class='tableau' formula='COUNT([stadium])' />
</column>
<column-instance column='[region]' derivation='None' name='[none:region:nk]' pivot='key' type='nominal' />
<column-instance column='[Calculation_4489455516772052992]' derivation='User' name='[pcto:usr:Calculation_4489455516772052992:qk]' pivot='key' type='quantitative'>
<table-calc ordering-type='Rows' type='PctTotal' />
</column-instance>
<column caption='Region' datatype='string' name='[region]' role='dimension' type='nominal' />
<column caption='Stadium' datatype='string' name='[stadium]' role='dimension' type='nominal' />
<column-instance column='[Calculation_4489455516772052992]' derivation='User' name='[usr:Calculation_4489455516772052992:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<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.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' />
<text column='[federated.09b9rka1n3q36o1clh6td15n720y].[pcto:usr:Calculation_4489455516772052992:qk]' />
</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.09b9rka1n3q36o1clh6td15n720y].[usr:Calculation_4489455516772052992:qk]</rows>
<cols>[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]</cols>
</table>
<simple-id uuid='{0C11220E-7D5A-46D2-B3FB-0BEE6E3706B2}' />
</worksheet>
<worksheet name='Top 10 Stadiums By Capacity'>
<table>
<view>
<datasources>
<datasource caption='stadium_cleaned_2023-10-01_22_37_47.376621' name='federated.09b9rka1n3q36o1clh6td15n720y' />
</datasources>
<datasource-dependencies datasource='federated.09b9rka1n3q36o1clh6td15n720y'>
<column caption='Capacity' datatype='integer' name='[capacity]' role='measure' type='quantitative' />
<column-instance column='[stadium]' derivation='None' name='[none:stadium:nk]' pivot='key' type='nominal' />
<column caption='Stadium' datatype='string' name='[stadium]' role='dimension' type='nominal' />
<column-instance column='[capacity]' derivation='Sum' name='[sum:capacity:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<filter class='categorical' column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]'>
<groupfilter count='10' end='top' function='end' units='records' user:ui-marker='end' user:ui-top-by-field='true'>
<groupfilter direction='DESC' expression='SUM([capacity])' function='order' user:ui-marker='order'>
<groupfilter function='level-members' level='[none:stadium:nk]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</groupfilter>
</groupfilter>
</filter>
<computed-sort column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]' direction='DESC' using='[federated.09b9rka1n3q36o1clh6td15n720y].[sum:capacity:qk]' />
<slices>
<column>[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium: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>
<text column='[federated.09b9rka1n3q36o1clh6td15n720y].[sum:capacity:qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]</rows>
<cols />
</table>
<simple-id uuid='{946D0ADE-5364-4A83-AB94-10655A939CC9}' />
</worksheet>
<worksheet name='Top 10 Stadiums By Rank'>
<table>
<view>
<datasources>
<datasource caption='stadium_cleaned_2023-10-01_22_37_47.376621' name='federated.09b9rka1n3q36o1clh6td15n720y' />
</datasources>
<datasource-dependencies datasource='federated.09b9rka1n3q36o1clh6td15n720y'>
<column-instance column='[rank]' derivation='None' name='[none:rank:qk]' pivot='key' type='quantitative' />
<column-instance column='[stadium]' derivation='None' name='[none:stadium:nk]' pivot='key' type='nominal' />
<column caption='Rank' datatype='integer' name='[rank]' role='measure' type='quantitative' />
<column caption='Stadium' datatype='string' name='[stadium]' role='dimension' type='nominal' />
<column-instance column='[rank]' derivation='Sum' name='[sum:rank:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<filter class='quantitative' column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:rank:qk]' included-values='in-range'>
<min>1</min>
<max>10</max>
</filter>
<computed-sort column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]' direction='ASC' using='[federated.09b9rka1n3q36o1clh6td15n720y].[sum:rank:qk]' />
<slices>
<column>[federated.09b9rka1n3q36o1clh6td15n720y].[none:rank:qk]</column>
</slices>
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<text column='[federated.09b9rka1n3q36o1clh6td15n720y].[sum:rank:qk]' />
</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.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]</rows>
<cols />
</table>
<simple-id uuid='{57FE7A71-144C-4D6A-B81B-F251BA1E415D}' />
</worksheet>
<worksheet name='Top Stadiums By Capacity '>
<table>
<view>
<datasources>
<datasource caption='stadium_cleaned_2023-10-01_22_37_47.376621' name='federated.09b9rka1n3q36o1clh6td15n720y' />
</datasources>
<datasource-dependencies datasource='federated.09b9rka1n3q36o1clh6td15n720y'>
<column caption='Capacity' datatype='integer' name='[capacity]' role='measure' type='quantitative' />
<column-instance column='[region]' derivation='None' name='[none:region:nk]' pivot='key' type='nominal' />
<column-instance column='[capacity]' derivation='Sum' name='[pcto:sum:capacity:qk]' pivot='key' type='quantitative'>
<table-calc ordering-type='Rows' type='PctTotal' />
</column-instance>
<column caption='Region' datatype='string' name='[region]' role='dimension' type='nominal' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style>
<style-rule element='cell'>
<format attr='width' value='337' />
<format attr='height' value='312' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Pie' />
<encodings>
<color column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' />
<text column='[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' />
<text column='[federated.09b9rka1n3q36o1clh6td15n720y].[pcto:sum:capacity:qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
<format attr='minheight' value='-1' />
<format attr='maxheight' value='-1' />
</style-rule>
</style>
</pane>
</panes>
<rows />
<cols />
</table>
<simple-id uuid='{E912E8E0-133D-4139-A1C6-093462240B95}' />
</worksheet>
</worksheets>
<dashboards>
<dashboard _.fcp.AccessibleZoneTabOrder.true...enable-sort-zone-taborder='true' name='Dashboard 1'>
<style />
<size sizing-mode='automatic' />
<zones>
<zone h='100000' id='4' type-v2='layout-basic' w='100000' x='0' y='0'>
<zone h='97978' id='7' param='horz' type-v2='layout-flow' w='98720' x='640' y='1011'>
<zone h='97978' id='5' type-v2='layout-basic' w='98720' x='640' y='1011'>
<zone h='59925' id='3' name='Geographical Distribution of Stadiums' w='89040' x='640' y='39064'>
<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 h='38053' id='9' name='Top Stadiums By Capacity ' w='24680' x='74680' y='1011'>
<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 h='38053' id='10' name='Top 10 Stadiums By Rank' w='17687' x='640' y='1011'>
<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 h='38053' id='11' name='Top 10 Stadiums By Capacity' w='18313' x='18327' y='1011'>
<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 h='38053' id='12' name='Stadiums Location By Regions' w='38040' x='36640' y='1011'>
<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 fixed-size='101' h='59925' id='6' is-fixed='true' param='vert' type-v2='layout-flow' w='9680' x='89680' y='39064'>
<zone h='26043' id='8' name='Geographical Distribution of Stadiums' pane-specification-id='0' param='[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' type-v2='color' w='9680' x='89680' y='39064'>
<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>
</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>
<devicelayouts>
<devicelayout auto-generated='true' name='Phone'>
<size maxheight='1550' minheight='1550' sizing-mode='vscroll' />
<zones>
<zone h='100000' id='14' type-v2='layout-basic' w='100000' x='0' y='0'>
<zone h='97978' id='13' param='vert' type-v2='layout-flow' w='98720' x='640' y='1011'>
<zone fixed-size='280' h='38053' id='10' is-fixed='true' name='Top 10 Stadiums By Rank' w='17687' x='640' y='1011'>
<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='38053' id='11' is-fixed='true' name='Top 10 Stadiums By Capacity' w='18313' x='18327' y='1011'>
<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='38053' id='12' is-fixed='true' name='Stadiums Location By Regions' w='38040' x='36640' y='1011'>
<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='38053' id='9' is-fixed='true' name='Top Stadiums By Capacity ' w='24680' x='74680' y='1011'>
<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='59925' id='3' is-fixed='true' name='Geographical Distribution of Stadiums' w='89040' x='640' y='39064'>
<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 h='26043' id='8' name='Geographical Distribution of Stadiums' pane-specification-id='0' param='[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' type-v2='color' w='9680' x='89680' y='39064'>
<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>
<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>
</devicelayout>
</devicelayouts>
<simple-id uuid='{77875DBB-D69E-4002-A955-3243DBBDB21C}' />
</dashboard>
</dashboards>
<windows source-height='30'>
<window class='worksheet' name='Stadiums Location By Regions'>
<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.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]</field>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{C5F00AF0-1490-48AF-8EA5-60944C9F80E8}' />
</window>
<window class='worksheet' name='Top 10 Stadiums By Capacity'>
<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>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{BAD0305B-C6AF-44A1-B468-8CF4089834DE}' />
</window>
<window class='worksheet' name='Top 10 Stadiums By Rank'>
<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>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:rank:qk]</field>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{EE325362-2059-42AB-AB34-702C303BC9D8}' />
</window>
<window class='worksheet' name='Top Stadiums By Capacity '>
<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.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{DC23063E-4C96-4AF9-AB25-DDB5B47150BC}' />
</window>
<window class='worksheet' name='Geographical Distribution of Stadiums'>
<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.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:city - Split 1:nk]</field>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:country:nk]</field>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:images:nk]</field>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]</field>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:stadium:nk]</field>
</color-one-way>
</highlight>
<default-map-tool-selection tool='1' />
</viewpoint>
<simple-id uuid='{CEE96B51-B243-4DED-B5E5-0990C937EE8F}' />
</window>
<window class='dashboard' maximized='true' name='Dashboard 1'>
<viewpoints>
<viewpoint name='Geographical Distribution of Stadiums'>
<zoom type='entire-view' />
<highlight>
<color-one-way>
<field>[federated.09b9rka1n3q36o1clh6td15n720y].[none:region:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<viewpoint name='Stadiums Location By Regions'>
<zoom type='entire-view' />
<selection-collection>
<node-selection select-tuples='false'>
<oriented-node-reference orientation='vertical'>
<node-reference>
<axis>[federated.09b9rka1n3q36o1clh6td15n720y].[usr:Calculation_4489455516772052992:qk]</axis>
</node-reference>
<page-reference />
</oriented-node-reference>
</node-selection>
</selection-collection>
</viewpoint>
<viewpoint name='Top 10 Stadiums By Capacity' />
<viewpoint name='Top 10 Stadiums By Rank' />
<viewpoint name='Top Stadiums By Capacity ' />
</viewpoints>
<active id='-1' />
<device-preview visible='true' />
<simple-id uuid='{7E8182DE-E06B-4767-A8DF-0AFAFD9BD586}' />
</window>
</windows>
<thumbnails>
<thumbnail height='384' name='Dashboard 1' width='384'>
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