-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmore-city-data.json
More file actions
2248 lines (2248 loc) · 82.6 KB
/
more-city-data.json
File metadata and controls
2248 lines (2248 loc) · 82.6 KB
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
[
{
"city": "Tehran",
"country": "Iran",
"region": "Middle East",
"slug": "tehran",
"muslimPopulation": "~88 million (99% of Iran, 90-95% Shia)",
"totalPopulation": "~89 million",
"muslimPercentage": 99,
"youthPopulation": "~30% under 25 years old",
"madrasasIslamicEducation": "Qom seminary system (world's leading Shia Islamic center), numerous Islamic universities, extensive Islamic education network",
"tags": [
"middle-east",
"large-population",
"resilient-ecosystem",
"strong-engineering",
"domestic-platforms",
"sanctions-resilient"
],
"sunnishia": {
"sunni": 5,
"shia": 92
},
"ramadanTraditions": "Shia Ramadan customs; sohoor and iftar with Persian dishes (sholeh zard, zoolbia bamieh); mosque programs and Rawda; Qom seminaries hold special Ramadan lectures; emphasis on dua and night prayers.",
"religiousCultural": "Qom as center of Shia scholarship during Ramadan; commemoration of Imam Ali (AS); Laylat al-Qadr and Shab-e-Qadr observances; charity and feeding the needy."
},
{
"city": "Medina",
"country": "Saudi Arabia",
"region": "Middle East",
"slug": "medina",
"muslimPopulation": "~35 million (93% of Saudi Arabia)",
"totalPopulation": "~35 million",
"muslimPercentage": 93,
"youthPopulation": "~32% under 25 years old",
"madrasasIslamicEducation": "Islamic University of Madinah (world's leading Islamic university), extensive Islamic education network, Islamic Civilization Studies centers",
"tags": [
"middle-east",
"vision-2030",
"islamic-tech",
"smart-city",
"pilgrim-market",
"knowledge-city"
],
"sunnishia": {
"sunni": 85,
"shia": 8
},
"ramadanTraditions": "Taraweeh at the Prophet's Mosque; Rawdah visits; iftar in the haram area; community suhoor; Qiyam and Itikaf; strong emphasis on charity and feeding fasting people.",
"religiousCultural": "City of the Prophet (peace be upon him); Ramadan deeply tied to Prophetic tradition; ziyarah and du'a at the Rawdah; Islamic University and scholarly programs during Ramadan."
},
{
"city": "Karachi",
"country": "Pakistan",
"region": "South Asia",
"slug": "karachi",
"muslimPopulation": "~220 million (96% of Pakistan)",
"totalPopulation": "~230 million",
"muslimPercentage": 96,
"youthPopulation": "~35% under 25 years old, median age 23",
"madrasasIslamicEducation": "International Islamic University Islamabad, Jamia Binoria, thousands of madrasas nationwide",
"tags": [
"south-asia",
"large-population",
"cost-effective",
"english-speaking",
"diaspora-network"
],
"sunnishia": {
"sunni": 85,
"shia": 15
},
"ramadanTraditions": "Sehri and iftar with Pakistani dishes (pakoras, dates, sherbet); Taraweeh in mosques and homes; Ramadan bazaars; charity and dastarkhwan for neighbors; family gatherings.",
"religiousCultural": "Sunni majority with strong mosque culture; Laylat al-Qadr night vigils; zakat and sadaqah; Ramadan TV and radio programs; emphasis on Qur'an and hadith study."
},
{
"city": "Islamabad",
"country": "Pakistan",
"region": "South Asia",
"slug": "islamabad",
"muslimPopulation": "~220 million (96% of Pakistan); Islamabad is the capital",
"totalPopulation": "~230 million",
"muslimPercentage": 96,
"youthPopulation": "~35% under 25 years old, median age 23",
"madrasasIslamicEducation": "International Islamic University Islamabad, Jamia Binoria, thousands of madrasas nationwide",
"tags": [
"south-asia",
"capital-city",
"diaspora-network",
"english-speaking",
"government-supported"
],
"sunnishia": {
"sunni": 85,
"shia": 15
},
"ramadanTraditions": "Sehri and iftar with pakoras, dates, sherbet; Taraweeh in mosques; Ramadan bazaars; dastarkhwan and charity; family and neighborhood gatherings.",
"religiousCultural": "Sunni majority; Laylat al-Qadr; zakat and sadaqah; mosque and madrasa programs; strong community and family observance."
},
{
"city": "Tashkent",
"country": "Uzbekistan",
"region": "Central Asia",
"slug": "tashkent",
"muslimPopulation": "~32 million (88% of Uzbekistan)",
"totalPopulation": "~36 million",
"muslimPercentage": 88,
"youthPopulation": "~30% under 25 years old",
"madrasasIslamicEducation": "International Islamic Academy of Uzbekistan, Mir-i Arab Madrasah (historic), growing Islamic education sector",
"tags": [
"central-asia",
"largest-market",
"government-supported",
"silk-road",
"bilingual"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Plov, dates, bread at iftar; Taraweeh in historic mosques and madrasas; family and community; charity.",
"religiousCultural": "Central Asian Hanafi tradition; Laylat al-Qadr; Silk Road Islamic heritage; shrine and mosque visits."
},
{
"city": "Riyadh",
"country": "Saudi Arabia",
"region": "Middle East",
"slug": "riyadh",
"muslimPopulation": "~32 million (93% of Saudi Arabia)",
"totalPopulation": "~35 million",
"muslimPercentage": 93,
"youthPopulation": "~32% under 25 years old",
"madrasasIslamicEducation": "Imam Muhammad ibn Saud Islamic University, extensive Islamic university system",
"tags": [
"middle-east",
"vision-2030",
"high-investment",
"large-market",
"government-backed"
],
"sunnishia": {
"sunni": 85,
"shia": 8
},
"ramadanTraditions": "Saudi iftar (dates, laban, sambusa); Taraweeh and Qiyam; family majlis; charity and iftar tents; Vision 2030 cultural events; mosque programs and Qur'an competitions.",
"religiousCultural": "Heart of Najd; conservative Ramadan observance; emphasis on Qur'an and sunnah; Laylat al-Qadr; zakat and community feeding; Islamic lectures and exhibitions."
},
{
"city": "Jakarta",
"country": "Indonesia",
"region": "Southeast Asia",
"slug": "jakarta",
"muslimPopulation": "~230 million (87% of Indonesia)",
"totalPopulation": "~275 million",
"muslimPercentage": 87,
"youthPopulation": "~27% under 25 years old",
"madrasasIslamicEducation": "UIN Jakarta, extensive pesantren network, largest Islamic education system globally",
"tags": [
"southeast-asia",
"largest-muslim-population",
"unicorns",
"massive-market",
"young-population"
],
"sunnishia": {
"sunni": 99,
"shia": 1
},
"totalPopulationSource": {
"text": "~275 million",
"source": "Worldometers 2025",
"url": "https://www.worldometers.info/demographics/indonesia-demographics/"
},
"ramadanTraditions": "Ngabuburit (pre-iftar activities); takjil (sweet snacks at iftar); kolak, es campur; mosque iftars; mudik (homecoming) before Eid; Ramadan markets and street food.",
"religiousCultural": "Indonesian Ramadan blend of tradition and community; tadarus (Qur'an reading) in groups; Laylat al-Qadr observances; bedug and call to prayer; charity and open houses."
},
{
"city": "Istanbul",
"country": "Turkey",
"region": "Middle East",
"slug": "istanbul",
"muslimPopulation": "~83 million (99% of Turkey)",
"totalPopulation": "~84 million",
"muslimPercentage": 99,
"youthPopulation": "~26% under 25 years old",
"madrasasIslamicEducation": "Istanbul University Faculty of Theology, extensive imam-hatip schools",
"tags": [
"middle-east",
"europe-asia-bridge",
"growing-ecosystem",
"cultural-influence",
"educated-workforce"
],
"sunnishia": {
"sunni": 80,
"shia": 19
},
"ramadanTraditions": "Iftar under minarets; davul (drum) for suhoor; street iftars and historic mosques; pide and güllaç; Ramadan bazaars; Taraweeh at Sultanahmet and Süleymaniye.",
"religiousCultural": "Ottoman Ramadan heritage; mahya (lights between minarets); Turkish hospitality and iftar invitations; Laylat al-Qadr programs; strong mosque and community culture."
},
{
"city": "Tangier",
"country": "Morocco",
"region": "North Africa",
"slug": "tangier",
"muslimPopulation": "~36 million (99% of Morocco)",
"totalPopulation": "~37 million",
"muslimPercentage": 99,
"youthPopulation": "~30% under 25 years old",
"madrasasIslamicEducation": "Qarawiyyin University system, Al Akhawayn University blending modern and Islamic education",
"tags": [
"north-africa",
"europe-africa-connectivity",
"bilingual",
"nearshore",
"competitive-costs"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Tangier Ramadan; harira and Moroccan sweets; mosque and medina iftars; family gatherings; Taraweeh; charity and community.",
"religiousCultural": "Northern Moroccan and Mediterranean Ramadan; Laylat al-Qadr; Islamic and cultural heritage; strong community and family focus."
},
{
"city": "Casablanca",
"country": "Morocco",
"region": "Maghreb",
"slug": "casablanca",
"muslimPopulation": "~36 million (99% of Morocco); Casablanca is the largest city",
"totalPopulation": "~37 million",
"muslimPercentage": 99,
"youthPopulation": "~30% under 25 years old",
"madrasasIslamicEducation": "Qarawiyyin University system, Al Akhawayn University blending modern and Islamic education",
"tags": [
"maghreb",
"bilingual",
"nearshore",
"competitive-costs",
"economic-capital"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Moroccan iftar (harira, chebakya, dates); Taraweeh at Hassan II and neighborhood mosques; family and community iftars; Ramadan markets.",
"religiousCultural": "Moroccan Maliki tradition; Laylat al-Qadr; charity and hospitality; blend of Arab and Berber; mosque and Sufi brotherhood observances."
},
{
"city": "Algiers",
"country": "Algeria",
"region": "Maghreb",
"slug": "algiers",
"muslimPopulation": "~43 million (99% of Algeria)",
"totalPopulation": "~44 million",
"muslimPercentage": 99,
"youthPopulation": "~27% under 25 years old, median age 28",
"madrasasIslamicEducation": "University of Algiers Islamic studies, network of traditional Islamic schools",
"tags": [
"maghreb",
"large-market",
"resource-wealth",
"francophone",
"untapped-potential"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Algerian iftar (chorba, bourek, dates); drummers for suhoor; Taraweeh in historic mosques; family and neighborhood iftars; Ramadan sweets.",
"religiousCultural": "Algerian Maliki and Islamic heritage; Laylat al-Qadr; mosque and community programs; charity; strong family and cultural observance."
},
{
"city": "Khartoum",
"country": "Sudan",
"region": "Horn of Africa",
"slug": "khartoum",
"muslimPopulation": "~42 million (97% of Sudan)",
"totalPopulation": "~43 million",
"muslimPercentage": 97,
"youthPopulation": "~45% under 25 years old",
"madrasasIslamicEducation": "University of Khartoum Islamic studies, extensive Islamic education tradition",
"tags": [
"horn-of-africa",
"untapped-potential",
"youth-driven",
"arabic-market",
"emerging"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Sudanese iftar (dates, asida, ful); Taraweeh in mosques; family and community; charity; Ramadan markets.",
"religiousCultural": "Sudanese Sunni tradition; Laylat al-Qadr; mosque and Sufi brotherhoods; strong community focus."
},
{
"city": "Cairo",
"country": "Egypt",
"region": "North Africa",
"slug": "cairo",
"muslimPopulation": "~95 million (90% of Egypt)",
"totalPopulation": "~106 million",
"muslimPercentage": 90,
"youthPopulation": "~32% under 25 years old",
"madrasasIslamicEducation": "Al-Azhar University (preeminent Islamic university), extensive Islamic education system",
"tags": [
"north-africa",
"largest-arab-population",
"cost-effective",
"cultural-center",
"large-talent-pool"
],
"sunnishia": {
"sunni": 90,
"shia": 10
},
"ramadanTraditions": "Fanous (Ramadan lanterns); meshaharati (drummer waking people for suhoor); cannon firing at Maghrib; street iftars; qatayef and kunafa; Taraweeh at Al-Azhar and historic mosques.",
"religiousCultural": "Al-Azhar and historic mosques lead Ramadan programs; Egyptian iftar tables (foul, tamr hindi, qamar al-din); Laylat al-Qadr vigils; charity and shared meals in neighborhoods."
},
{
"city": "Dhaka",
"country": "Bangladesh",
"region": "South Asia",
"slug": "dhaka",
"muslimPopulation": "~155 million (90% of Bangladesh)",
"totalPopulation": "~170 million",
"muslimPercentage": 90,
"youthPopulation": "~30% under 25 years old",
"madrasasIslamicEducation": "Al-Jamiatul Ahlia Darul Ulum Moinul Islam, extensive Islamic education network",
"tags": [
"south-asia",
"competitive-costs",
"young-population",
"growing-sector",
"digital-payments"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Bengali Ramadan; iftar with piaju, chola, dates, sherbet; Taraweeh in mosques; Ramadan bazaars; charity and neighborhood iftars; family sehri and iftar.",
"religiousCultural": "Bangladeshi Sunni tradition; Laylat al-Qadr; Qur'an and hadith study; zakat and sadaqah; mosque and madrasa programs; strong community and family focus."
},
{
"city": "Chittagong",
"country": "Bangladesh",
"region": "South Asia",
"slug": "chittagong",
"muslimPopulation": "~155 million (90% of Bangladesh); Chittagong is second largest city",
"totalPopulation": "~170 million",
"muslimPercentage": 90,
"youthPopulation": "~30% under 25 years old",
"madrasasIslamicEducation": "Al-Jamiatul Ahlia Darul Ulum Moinul Islam (major madrasa), extensive Islamic education network",
"tags": [
"south-asia",
"port-city",
"competitive-costs",
"growing-sector",
"young-workforce"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Piaju, chola, dates at iftar; Taraweeh; Ramadan bazaars; charity and neighborhood iftars; family sehri and iftar.",
"religiousCultural": "Sunni tradition; Laylat al-Qadr; Qur'an study; zakat; mosque and madrasa programs; strong community focus."
},
{
"city": "Kuala Lumpur",
"country": "Malaysia",
"region": "Southeast Asia",
"slug": "kuala-lumpur",
"muslimPopulation": "~20 million (60% of Malaysia)",
"totalPopulation": "~33 million",
"muslimPercentage": 60,
"youthPopulation": "~28% under 25 years old",
"madrasasIslamicEducation": "International Islamic University Malaysia, extensive Islamic education network",
"tags": [
"southeast-asia",
"islamic-finance",
"english-speaking",
"tech-hub",
"stable-economy"
],
"sunnishia": {
"sunni": 95,
"shia": 5
},
"ramadanTraditions": "Bazaar Ramadan; bubur lambuk; iftar buffets; Taraweeh at National Mosque and state mosques; Raya preparations; open house culture; moreh (post-Taraweeh supper).",
"religiousCultural": "Malaysian multi-ethnic Ramadan; Islamic arts and lectures; Laylat al-Qadr programs; zakat and corporate iftar; strong emphasis on family and community."
},
{
"city": "Bamako",
"country": "Mali",
"region": "Sahel Region",
"slug": "bamako",
"muslimPopulation": "~19 million (95% of Mali)",
"totalPopulation": "~21 million",
"muslimPercentage": 95,
"youthPopulation": "~47% under 25 years old",
"madrasasIslamicEducation": "Strong Islamic education tradition, numerous madrasas, Islamic universities",
"tags": [
"sahel-region",
"large-youth",
"francophone",
"mobile-first",
"untapped"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "West African iftar; dates, porridge, local dishes; mosque and community iftars; Taraweeh; charity.",
"religiousCultural": "Maliki and Sufi traditions; Laylat al-Qadr; mosque and brotherhood; strong community observance."
},
{
"city": "Lagos",
"country": "Nigeria",
"region": "West Africa",
"slug": "lagos",
"muslimPopulation": "~100 million (50% of Nigeria; Lagos has significant Muslim population)",
"totalPopulation": "~220 million",
"muslimPercentage": 50,
"youthPopulation": "~43% under 25 years old",
"madrasasIslamicEducation": "Bayero University Kano, extensive Islamic education network, Northern Nigeria Islamic institutions",
"tags": [
"west-africa",
"largest-african-economy",
"unicorns",
"fintech",
"massive-market"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Nigerian iftar (dates, pap, local dishes); Taraweeh in mosques; Ramadan markets; charity and community iftars; multicultural Muslim community observances.",
"religiousCultural": "Diverse Nigerian Muslim traditions; Laylat al-Qadr; mosque and Islamic council programs; blend of Yoruba and northern customs; charity and education."
},
{
"city": "Amman",
"country": "Jordan",
"region": "Levant",
"slug": "amman",
"muslimPopulation": "~10 million (95% of Jordan)",
"totalPopulation": "~11 million",
"muslimPercentage": 95,
"youthPopulation": "~32% under 25 years old",
"madrasasIslamicEducation": "University of Jordan Islamic studies, extensive Islamic education",
"tags": [
"levant",
"political-stability",
"educated-workforce",
"government-supported",
"regional-hub"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Jordanian iftar (dates, soup, main dishes); Taraweeh in mosques; family and community iftars; charity; Ramadan lights and atmosphere.",
"religiousCultural": "Levantine Ramadan; Laylat al-Qadr; mosque and community programs; proximity to Jerusalem and holy sites."
},
{
"city": "Bandung",
"country": "Indonesia",
"region": "Southeast Asia",
"slug": "bandung",
"muslimPopulation": "~230 million (87% of Indonesia); West Java region highly Muslim",
"totalPopulation": "~275 million",
"muslimPercentage": 87,
"youthPopulation": "~27% under 25 years old",
"madrasasIslamicEducation": "UIN Sunan Gunung Djati (Islamic State University), extensive pesantren (Islamic boarding school) network",
"tags": [
"southeast-asia",
"creative-hub",
"university-ecosystem",
"lower-costs",
"islamic-lifestyle"
],
"sunnishia": {
"sunni": 99,
"shia": 1
},
"ramadanTraditions": "Ngabuburit and takjil; kolak, es campur; mosque iftars; mudik before Eid; Ramadan markets; tadarus and Taraweeh.",
"religiousCultural": "Indonesian blend of tradition and community; Laylat al-Qadr; bedug and mosque life; charity and open houses."
},
{
"city": "Dakar",
"country": "Senegal",
"region": "West Africa",
"slug": "dakar",
"muslimPopulation": "~16 million (95% of Senegal)",
"totalPopulation": "~17 million",
"muslimPercentage": 95,
"youthPopulation": "~45% under 25 years old",
"madrasasIslamicEducation": "Strong Sufi Islamic tradition, numerous Islamic schools, Université Cheikh Anta Diop Islamic studies",
"tags": [
"west-africa",
"francophone",
"political-stability",
"sufi-tradition",
"gateway"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "West African Ramadan; iftar with thiakry, dates, bissap; mosque and community iftars; Taraweeh; charity and feeding; family and neighborhood gatherings.",
"religiousCultural": "Senegalese Sufi and Sunni traditions; Laylat al-Qadr; zakat and sadaqah; strong brotherhood and mosque culture; Wolof and French in religious life."
},
{
"city": "Dar es Salaam",
"country": "Tanzania",
"region": "East Africa",
"slug": "dar-es-salaam",
"muslimPopulation": "~20 million (35% mainland; Zanzibar ~99% Muslim)",
"totalPopulation": "~63 million",
"muslimPercentage": 35,
"youthPopulation": "~44% under 25 years old",
"madrasasIslamicEducation": "Zanzibar Islamic colleges, strong Swahili-Islamic tradition, numerous madrasas especially in coastal regions",
"tags": [
"east-africa",
"swahili-market",
"coastal-connectivity",
"islamic-heritage",
"eac-access"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "East African iftar; dates, soup, local dishes; Taraweeh in mosques; charity and community iftars.",
"religiousCultural": "Swahili and East African Islam; Laylat al-Qadr; mosque and community; coastal and inland traditions."
},
{
"city": "Kano",
"country": "Nigeria",
"region": "West Africa",
"slug": "kano",
"muslimPopulation": "~50% Muslim; Kano State ~97% Muslim (~13 million in state)",
"totalPopulation": "~220 million",
"muslimPercentage": 97,
"youthPopulation": "~45% under 25 years old (very young population)",
"madrasasIslamicEducation": "Strong Islamic education tradition, numerous madrasas, Islamic universities, historic scholarly heritage",
"tags": [
"west-africa",
"northern-nigeria",
"untapped-market",
"hausa-market",
"islamic-networks"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Dates, pap, local dishes; Taraweeh in mosques; Ramadan markets; charity and community iftars.",
"religiousCultural": "Diverse Nigerian Muslim traditions; Laylat al-Qadr; mosque and Islamic council programs; charity and education."
},
{
"city": "Almaty",
"country": "Kazakhstan",
"region": "Central Asia",
"slug": "almaty",
"muslimPopulation": "~13 million (70% of Kazakhstan)",
"totalPopulation": "~19 million",
"muslimPercentage": 70,
"youthPopulation": "~28% under 25 years old",
"madrasasIslamicEducation": "Kazakh Islamic University, growing Islamic education sector",
"tags": [
"central-asia",
"silk-road",
"resource-wealth",
"educated-population",
"bilingual"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Central Asian iftar; plov and local dishes; Taraweeh in mosques; family and community; charity.",
"religiousCultural": "Hanafi tradition; Laylat al-Qadr; post-Soviet revival of Ramadan; mosque and community programs."
},
{
"city": "Baku",
"country": "Azerbaijan",
"region": "Caucasus",
"slug": "baku",
"muslimPopulation": "~9.8 million (96% of Azerbaijan)",
"totalPopulation": "~10.2 million",
"muslimPercentage": 96,
"youthPopulation": "~26% under 25 years old",
"madrasasIslamicEducation": "Baku Islamic University, growing Islamic education sector",
"tags": [
"caucasus",
"europe-asia-bridge",
"oil-diversification",
"young-population",
"growing-ecosystem"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Azerbaijani iftar; plov, dates, tea; Taraweeh in Baku and historic mosques; family and community; charity.",
"religiousCultural": "Caucasus Islamic heritage; Sunni majority; Laylat al-Qadr; mosque and cultural observance."
},
{
"city": "Tunis",
"country": "Tunisia",
"region": "Maghreb",
"slug": "tunis",
"muslimPopulation": "~12 million (99% of Tunisia)",
"totalPopulation": "~12 million",
"muslimPercentage": 99,
"youthPopulation": "~25% under 25 years old",
"madrasasIslamicEducation": "Zitouna University (historic Islamic learning center), modern universities with Islamic studies programs",
"tags": [
"maghreb",
"high-education",
"francophone",
"proximity-europe",
"progressive-policies"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Tunisian iftar (chorba, brik, dates, assida); meshaharati; Taraweeh in Zitouna and other mosques; street and family iftars; sweets and tea.",
"religiousCultural": "Zitouna Mosque and Maliki tradition; Laylat al-Qadr; North African Ramadan; charity and community; blend of Arab and Berber culture."
},
{
"city": "Abidjan",
"country": "Côte d'Ivoire",
"region": "West Africa",
"slug": "abidjan",
"muslimPopulation": "~11 million (42% of Côte d'Ivoire); Abidjan has significant Muslim population",
"totalPopulation": "~27 million",
"muslimPercentage": 42,
"youthPopulation": "~40% under 25 years old",
"madrasasIslamicEducation": "Islamic University of Côte d'Ivoire, numerous Arabic schools and madrasas",
"tags": [
"west-africa",
"francophone",
"economic-hub",
"resource-wealth",
"stable"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Local iftar and suhoor; Taraweeh in mosques; family and community gatherings; charity and feeding the needy; emphasis on Qur'an and Laylat al-Qadr.",
"religiousCultural": "Ramadan observed with mosque and community programs; Laylat al-Qadr; zakat and sadaqah; strong emphasis on family, worship, and charity."
},
{
"city": "Bishkek",
"country": "Kyrgyzstan",
"region": "Central Asia",
"slug": "bishkek",
"muslimPopulation": "~6 million (90% of Kyrgyzstan)",
"totalPopulation": "~7 million",
"muslimPercentage": 90,
"youthPopulation": "~32% under 25 years old",
"madrasasIslamicEducation": "Islamic University of Kyrgyzstan, network of madrasas, growing Islamic education sector",
"tags": [
"central-asia",
"low-costs",
"entrepreneurial",
"outsourcing-hub",
"easy-business"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Central Asian iftar; plov and local dishes; Taraweeh in mosques; family and community; charity.",
"religiousCultural": "Hanafi tradition; Laylat al-Qadr; mosque and community; blend of Soviet and Islamic revival."
},
{
"city": "Muscat",
"country": "Oman",
"region": "Persian Gulf",
"slug": "muscat",
"muslimPopulation": "~4.5 million (86% of Oman)",
"totalPopulation": "~5.2 million",
"muslimPercentage": 86,
"youthPopulation": "~25% under 25 years old",
"madrasasIslamicEducation": "Oman's moderate Islamic education system, Islamic studies integrated",
"tags": [
"persian-gulf",
"strategic-location",
"moderate-governance",
"trade-routes",
"growing-investment"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Omani iftar (dates, laban, harees); Taraweeh in Sultan Qaboos and other mosques; family majlis; charity; traditional hospitality.",
"religiousCultural": "Ibadi and Sunni tradition; Laylat al-Qadr; mosque and community; Omani hospitality and culture."
},
{
"city": "Dubai",
"country": "UAE",
"region": "Middle East",
"slug": "dubai",
"muslimPopulation": "~7.5 million (76% of UAE)",
"totalPopulation": "~10 million",
"muslimPercentage": 76,
"youthPopulation": "~20% under 25 years old",
"madrasasIslamicEducation": "Al Qasimia University, Islamic Affairs Department schools",
"tags": [
"middle-east",
"business-friendly",
"international-hub",
"high-capital",
"ai-blockchain"
],
"sunnishia": {
"sunni": 85,
"shia": 10
},
"ramadanTraditions": "Iftar tents and buffets; cannon firing; Ramadan souks and night markets; Taraweeh at Jumeirah and other mosques; multicultural iftar; charity and community events.",
"religiousCultural": "Cosmopolitan Ramadan; Islamic and cultural exhibitions; Laylat al-Qadr; zakat and corporate charity; blend of Emirati tradition and expat participation."
},
{
"city": "Kampala",
"country": "Uganda",
"region": "East Africa",
"slug": "kampala",
"muslimPopulation": "~6 million (14% of Uganda)",
"totalPopulation": "~47 million",
"muslimPercentage": 14,
"youthPopulation": "~48% under 25 years old (youngest population in East Africa)",
"madrasasIslamicEducation": "Islamic University in Uganda, numerous madrasas, growing Islamic education sector",
"tags": [
"east-africa",
"youngest-population",
"entrepreneurial",
"english-speaking",
"startup-friendly"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "East African iftar; dates and local dishes; Taraweeh in mosques; charity and community; family gatherings.",
"religiousCultural": "East African Muslim community; Laylat al-Qadr; mosque and Islamic council programs."
},
{
"city": "Manama",
"country": "Bahrain",
"region": "Arabian Peninsula",
"slug": "manama",
"muslimPopulation": "~1.1 million (73% of Bahrain)",
"totalPopulation": "~1.5 million",
"muslimPercentage": 73,
"youthPopulation": "~20% under 25 years old",
"madrasasIslamicEducation": "Al-Hidayah Islamic School, University of Bahrain Islamic Studies",
"tags": [
"arabian-peninsula",
"islamic-finance",
"business-friendly",
"gcc-access",
"early-adopter"
],
"sunnishia": {
"sunni": 38,
"shia": 60
},
"ramadanTraditions": "Bahraini iftar (dates, gahwa, main dishes); Taraweeh in mosques; charity and community; family majlis.",
"religiousCultural": "Gulf Ramadan; Sunni and Shia observance; Laylat al-Qadr; mosque and community programs."
},
{
"city": "Doha",
"country": "Qatar",
"region": "Persian Gulf",
"slug": "doha",
"muslimPopulation": "~1.8 million (65% of Qatar)",
"totalPopulation": "~3 million",
"muslimPercentage": 65,
"youthPopulation": "~18% under 25 years old",
"madrasasIslamicEducation": "Qatar Foundation Islamic studies, Islamic education integrated in system",
"tags": [
"persian-gulf",
"high-capital",
"world-class-infrastructure",
"knowledge-economy",
"high-purchasing-power"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Qatari iftar (dates, thareed, machboos); Taraweeh at State Mosque and others; charity and iftar tents; family and community.",
"religiousCultural": "Gulf Ramadan; Laylat al-Qadr; zakat and community; Islamic culture and education."
},
{
"city": "Mombasa",
"country": "Kenya",
"region": "East Africa",
"slug": "mombasa",
"muslimPopulation": "~5.5 million (11% of Kenya; Mombasa region higher concentration)",
"totalPopulation": "~55 million",
"muslimPercentage": 11,
"youthPopulation": "~40% under 25 years old",
"madrasasIslamicEducation": "Coastal Islamic schools, Swahili-Islamic education tradition",
"tags": [
"east-africa",
"mobile-money",
"swahili-market",
"gateway",
"innovation-hub"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Swahili and East African iftar; dates, soup; Taraweeh in Mombasa and coastal mosques; charity and community.",
"religiousCultural": "Coastal and inland Islam; Laylat al-Qadr; mosque and community; Swahili culture."
},
{
"city": "Penang",
"country": "Malaysia",
"region": "Southeast Asia",
"slug": "penang",
"muslimPopulation": "~60% Muslim; Penang ~40% Muslim but part of federal system",
"totalPopulation": "~33 million",
"muslimPercentage": 40,
"youthPopulation": "~25% under 25 years old",
"madrasasIslamicEducation": "Penang Islamic schools, connection to federal Islamic education system",
"tags": [
"southeast-asia",
"island-hub",
"quality-of-life",
"manufacturing-transition",
"multicultural"
],
"sunnishia": {
"sunni": null,
"shia": null
},
"ramadanTraditions": "Bazaar Ramadan; bubur lambuk; iftar buffets; Taraweeh at state mosques; Raya preparations; moreh; open house culture.",
"religiousCultural": "Multi-ethnic Ramadan; Islamic arts and lectures; Laylat al-Qadr; zakat and community; family and mosque focus."
},
{
"city": "Abu Dhabi",
"country": "UAE",
"region": "Persian Gulf",
"slug": "abu-dhabi",
"muslimPopulation": "~1.5 million (95% of Abu Dhabi emirate)",
"totalPopulation": "~1.6 million",
"muslimPercentage": 95,
"youthPopulation": "~25% under 25 years old",
"madrasasIslamicEducation": "Zayed University Islamic studies, extensive Islamic education network, Al Ain Islamic centers",
"tags": [
"persian-gulf",
"capital-city",
"high-capital",
"ai-strategy",
"world-class-infrastructure",
"high-purchasing-power"
],
"sunnishia": {
"sunni": 85,
"shia": 15
},
"ramadanTraditions": "Local iftar and suhoor; Taraweeh in mosques; family and community gatherings; charity and feeding the needy; emphasis on Qur'an and Laylat al-Qadr.",
"religiousCultural": "Ramadan observed with mosque and community programs; Laylat al-Qadr; zakat and sadaqah; strong emphasis on family, worship, and charity."
},
{
"city": "Lahore",
"country": "Pakistan",
"region": "South Asia",
"slug": "lahore",
"muslimPopulation": "~13 million (96% of Pakistan; Lahore metro area)",
"totalPopulation": "~13.5 million",
"muslimPercentage": 96,
"youthPopulation": "~35% under 25 years old, median age 23",
"madrasasIslamicEducation": "Jamia Naeemia, Jamia Ashrafia, extensive network of Islamic schools and madrasas",
"tags": [
"south-asia",
"large-population",
"cost-effective",
"english-speaking",
"diaspora-network",
"major-tech-hub"
],
"sunnishia": {
"sunni": 85,
"shia": 15
},
"ramadanTraditions": "Sehri and iftar with pakoras, dates, sherbet; Taraweeh in mosques; Ramadan bazaars; dastarkhwan and charity; family and neighborhood gatherings.",
"religiousCultural": "Sunni majority; Laylat al-Qadr; zakat and sadaqah; mosque and madrasa programs; strong community and family observance."
},
{
"city": "Faisalabad",
"country": "Pakistan",
"region": "South Asia",
"slug": "faisalabad",
"muslimPopulation": "~3.5 million (96% of Pakistan; Faisalabad metro)",
"totalPopulation": "~3.7 million",
"muslimPercentage": 96,
"youthPopulation": "~38% under 25 years old",
"madrasasIslamicEducation": "Extensive network of Islamic schools and madrasas, Jamia Islamia",
"tags": [
"south-asia",
"large-population",
"cost-effective",
"industrial-tech",
"emerging-hub"
],
"sunnishia": {
"sunni": 85,
"shia": 15
},
"ramadanTraditions": "Sehri and iftar with pakoras, dates, sherbet; Taraweeh in mosques; Ramadan bazaars; dastarkhwan and charity; family and neighborhood gatherings.",
"religiousCultural": "Sunni majority; Laylat al-Qadr; zakat and sadaqah; mosque and madrasa programs; strong community and family observance."
},
{
"city": "Rawalpindi",
"country": "Pakistan",
"region": "South Asia",
"slug": "rawalpindi",
"muslimPopulation": "~2.2 million (96% of Pakistan; Rawalpindi-Islamabad twin cities)",
"totalPopulation": "~2.3 million",
"muslimPercentage": 96,
"youthPopulation": "~35% under 25 years old",
"madrasasIslamicEducation": "Extensive network of Islamic schools and madrasas",
"tags": [
"south-asia",
"twin-cities",
"cost-effective",
"government-proximity",
"emerging-hub"
],
"sunnishia": {
"sunni": 85,
"shia": 15
},
"ramadanTraditions": "Sehri and iftar with pakoras, dates, sherbet; Taraweeh in mosques; Ramadan bazaars; dastarkhwan and charity; family and neighborhood gatherings.",
"religiousCultural": "Sunni majority; Laylat al-Qadr; zakat and sadaqah; mosque and madrasa programs; strong community and family observance."
},
{
"city": "Multan",
"country": "Pakistan",
"region": "South Asia",
"slug": "multan",
"muslimPopulation": "~2.1 million (96% of Pakistan; Multan metro)",
"totalPopulation": "~2.2 million",
"muslimPercentage": 96,
"youthPopulation": "~40% under 25 years old",
"madrasasIslamicEducation": "Extensive network of Islamic schools and madrasas, strong Islamic education tradition",
"tags": [
"south-asia",
"large-population",
"cost-effective",
"agricultural-tech",
"emerging-hub"
],
"sunnishia": {
"sunni": 85,
"shia": 15
},
"ramadanTraditions": "Sehri and iftar with pakoras, dates, sherbet; Taraweeh in mosques; Ramadan bazaars; dastarkhwan and charity; family and neighborhood gatherings.",
"religiousCultural": "Sunni majority; Laylat al-Qadr; zakat and sadaqah; mosque and madrasa programs; strong community and family observance."
},
{
"city": "New York City",
"country": "United States",
"region": "North America",
"slug": "new-york-city",
"muslimPopulation": "~800,000-1 million (9-10% of NYC population)",
"totalPopulation": "~8.8 million",
"muslimPercentage": 9,
"youthPopulation": "~22% under 25 years old",
"madrasasIslamicEducation": "Islamic schools in Brooklyn, Queens, extensive community Islamic education",
"tags": [
"north-america",
"major-tech-hub",
"high-purchasing-power",
"diverse-talent",
"access-to-capital",
"large-muslim-population"
],
"sunnishia": {
"sunni": 70,
"shia": 20
},
"ramadanTraditions": "American Muslim Ramadan; iftar at Islamic centers and homes; diverse immigrant traditions; Taraweeh in major mosques; charity; Ramadan awareness in the city.",
"religiousCultural": "Diverse Muslim diaspora; Laylat al-Qadr; Islamic Society and mosque networks; interfaith iftars; blend of South Asian, Arab, African American, and other traditions."
},
{
"city": "Dearborn",
"country": "United States",
"region": "North America",
"slug": "dearborn",