-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcities.json
More file actions
2638 lines (2638 loc) · 106 KB
/
cities.json
File metadata and controls
2638 lines (2638 loc) · 106 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
{
"schema": {
"country": "string",
"region": "string",
"cities": [
{
"name": "string",
"suhoor_meals": [
"string"
],
"iftar_meals": [
"string"
],
"desserts_and_drinks": [
"string"
],
"rituals_and_traditions": [
"string"
],
"notes": "string",
"population": "string (optional)",
"muslim_population": "string (optional)",
"muslim_percentage": "number (optional)",
"ramadan_traditions": "string (optional)",
"religious_cultural": "string (optional)",
"tags": [
"string (optional)"
],
"slug": "string (optional)"
}
]
},
"data": [
{
"country": "Afghanistan",
"region": "South Asia",
"cities": [
{
"name": "Kabul",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Local iftar and suhoor; Taraweeh in mosques; family and community gatherings; charity and feeding the needy; emphasis on Qur'an and Laylat al-Qadr.",
"population": "~40 million",
"muslim_population": "~40 million (99.7% of Afghanistan, Kabul metro ~6 million)",
"muslim_percentage": 99,
"ramadan_traditions": "Local iftar and suhoor; Taraweeh in mosques; family and community gatherings; charity and feeding the needy; emphasis on Qur'an and Laylat al-Qadr.",
"religious_cultural": "Ramadan observed with mosque and community programs; Laylat al-Qadr; zakat and sadaqah; strong emphasis on family, worship, and charity.",
"tags": [
"south-asia",
"capital-city",
"large-population",
"young-demographic",
"emerging-tech"
],
"slug": "kabul"
}
]
},
{
"country": "Algeria",
"region": "Maghreb",
"cities": [
{
"name": "Algiers",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Algerian iftar (chorba, bourek, dates); drummers for suhoor; Taraweeh in historic mosques; family and neighborhood iftars; Ramadan sweets.",
"population": "~44 million",
"muslim_population": "~43 million (99% of Algeria)",
"muslim_percentage": 99,
"ramadan_traditions": "Algerian iftar (chorba, bourek, dates); drummers for suhoor; Taraweeh in historic mosques; family and neighborhood iftars; Ramadan sweets.",
"religious_cultural": "Algerian Maliki and Islamic heritage; Laylat al-Qadr; mosque and community programs; charity; strong family and cultural observance.",
"tags": [
"maghreb",
"large-market",
"resource-wealth",
"francophone",
"untapped-potential"
],
"slug": "algiers"
}
]
},
{
"country": "Azerbaijan",
"region": "Middle East",
"cities": [
{
"name": "Baku",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Azerbaijani iftar; plov, dates, tea; Taraweeh in Baku and historic mosques; family and community; charity.",
"population": "~10.2 million",
"muslim_population": "~9.8 million (96% of Azerbaijan)",
"muslim_percentage": 96,
"ramadan_traditions": "Azerbaijani iftar; plov, dates, tea; Taraweeh in Baku and historic mosques; family and community; charity.",
"religious_cultural": "Caucasus Islamic heritage; Sunni majority; Laylat al-Qadr; mosque and cultural observance.",
"tags": [
"caucasus",
"europe-asia-bridge",
"oil-diversification",
"young-population",
"growing-ecosystem"
],
"slug": "baku"
}
]
},
{
"country": "Bahrain",
"region": "GCC",
"cities": [
{
"name": "Manama",
"suhoor_meals": [
"bread, cheese, dates",
"light stews"
],
"iftar_meals": [
"dates and water",
"rice with meat stews",
"fish dishes"
],
"desserts_and_drinks": [
"luqaimat",
"regional sweets"
],
"rituals_and_traditions": [
"Gargee'an celebrations around mid-Ramadan",
"Community iftars supported by charities and mosques"
],
"notes": "Bahrain's mid-Ramadan children's celebrations mirror Gargee'an traditions seen elsewhere in the Gulf.[web:18]",
"population": "~1.5 million",
"muslim_population": "~1.1 million (73% of Bahrain)",
"muslim_percentage": 73,
"ramadan_traditions": "Bahraini iftar (dates, gahwa, main dishes); Taraweeh in mosques; charity and community; family majlis.",
"religious_cultural": "Gulf Ramadan; Sunni and Shia observance; Laylat al-Qadr; mosque and community programs.",
"tags": [
"arabian-peninsula",
"islamic-finance",
"business-friendly",
"gcc-access",
"early-adopter"
],
"slug": "manama"
}
]
},
{
"country": "Bangladesh",
"region": "South Asia",
"cities": [
{
"name": "Dhaka",
"suhoor_meals": [
"rice with curry",
"paratha and dal"
],
"iftar_meals": [
"dates and water",
"biryani",
"panta ilish (fermented rice with hilsa fish) for some",
"piaju (lentil fritters)",
"beguni (battered fried eggplant)"
],
"desserts_and_drinks": [
"rooh afza drinks",
"mishti (sweets)"
],
"rituals_and_traditions": [
"Crowded iftar markets selling fritters and biryanis",
"Strong culture of giving food to the poor during Ramadan"
],
"notes": "Bangladeshi iftars feature biryani, panta ilish, and various fried snacks, with a big emphasis on charity.[web:4][web:14]",
"population": "~170 million",
"muslim_population": "~155 million (90% of Bangladesh)",
"muslim_percentage": 90,
"ramadan_traditions": "Bengali Ramadan; iftar with piaju, chola, dates, sherbet; Taraweeh in mosques; Ramadan bazaars; charity and neighborhood iftars; family sehri and iftar.",
"religious_cultural": "Bangladeshi Sunni tradition; Laylat al-Qadr; Qur'an and hadith study; zakat and sadaqah; mosque and madrasa programs; strong community and family focus.",
"tags": [
"south-asia",
"competitive-costs",
"young-population",
"growing-sector",
"digital-payments"
],
"slug": "dhaka"
},
{
"name": "Chittagong",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Piaju, chola, dates at iftar; Taraweeh; Ramadan bazaars; charity and neighborhood iftars; family sehri and iftar.",
"population": "~170 million",
"muslim_population": "~155 million (90% of Bangladesh); Chittagong is second largest city",
"muslim_percentage": 90,
"ramadan_traditions": "Piaju, chola, dates at iftar; Taraweeh; Ramadan bazaars; charity and neighborhood iftars; family sehri and iftar.",
"religious_cultural": "Sunni tradition; Laylat al-Qadr; Qur'an study; zakat; mosque and madrasa programs; strong community focus.",
"tags": [
"south-asia",
"port-city",
"competitive-costs",
"growing-sector",
"young-workforce"
],
"slug": "chittagong"
}
]
},
{
"country": "Belgium",
"region": "Europe",
"cities": [
{
"name": "Brussels",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Iftar at mosques and community centers; multicultural traditions; Taraweeh; charity; family and community.",
"population": "~1.2 million",
"muslim_population": "~250,000-300,000 (20-25% of Brussels)",
"muslim_percentage": 23,
"ramadan_traditions": "Iftar at mosques and community centers; multicultural traditions; Taraweeh; charity; family and community.",
"religious_cultural": "European Muslim community; Laylat al-Qadr; mosque and association programs; Moroccan and Turkish heritage.",
"tags": [
"europe",
"eu-capital",
"high-muslim-concentration",
"multilingual",
"growing-tech-hub"
],
"slug": "brussels"
}
]
},
{
"country": "Bosnia and Herzegovina",
"region": "Europe",
"cities": [
{
"name": "Sarajevo",
"suhoor_meals": [
"bread, cheese, local meats"
],
"iftar_meals": [
"dates",
"soups and meat dishes"
],
"desserts_and_drinks": [
"local sweets and coffee"
],
"rituals_and_traditions": [
"Iftar cannon fired from Yellow Fortress to signal sunset",
"People gather around the fortress and mosques for iftar"
],
"notes": "Sarajevo maintains the iftar cannon tradition with crowds gathering at the Yellow Fortress.[web:2]"
}
]
},
{
"country": "Canada",
"region": "North America",
"cities": [
{
"name": "Toronto",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Iftar at mosques and community centers; multicultural traditions; Taraweeh; charity; family and community observance.",
"population": "~3 million (city), ~6.4 million (metro)",
"muslim_population": "~400,000-500,000 (15-18% of Toronto)",
"muslim_percentage": 16,
"ramadan_traditions": "Iftar at mosques and community centers; multicultural traditions; Taraweeh; charity; family and community observance.",
"religious_cultural": "Diverse Canadian Muslim community; Laylat al-Qadr; mosque and Islamic association programs; multicultural Ramadan.",
"tags": [
"north-america",
"major-tech-hub",
"ai-innovation",
"diverse-talent",
"quality-of-life",
"multicultural",
"large-muslim-population"
],
"slug": "toronto"
},
{
"name": "Vancouver",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Iftar at mosques and community centers; multicultural traditions; Taraweeh; charity; family and community observance.",
"population": "~675,000 (city), ~2.8 million (metro)",
"muslim_population": "~80,000-100,000 (12-15% of Vancouver)",
"muslim_percentage": 13,
"ramadan_traditions": "Iftar at mosques and community centers; multicultural traditions; Taraweeh; charity; family and community observance.",
"religious_cultural": "Diverse Canadian Muslim community; Laylat al-Qadr; mosque and Islamic association programs; multicultural Ramadan.",
"tags": [
"north-america",
"growing-tech-hub",
"gaming-industry",
"quality-of-life",
"multicultural",
"asia-pacific-gateway"
],
"slug": "vancouver"
}
]
},
{
"country": "China",
"region": "East Asia",
"cities": [
{
"name": "Xi'an",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Chinese Muslim (Hui) Ramadan; iftar with halal local dishes; mosque and community iftars; Taraweeh; charity; family and neighborhood.",
"population": "~13 million (metro)",
"muslim_population": "~200,000-300,000 (2-3% of Xi'an metro)",
"muslim_percentage": 2,
"ramadan_traditions": "Chinese Muslim (Hui) Ramadan; iftar with halal local dishes; mosque and community iftars; Taraweeh; charity; family and neighborhood.",
"religious_cultural": "Hui and Uyghur traditions; Laylat al-Qadr; mosque and community; Silk Road Islamic heritage.",
"tags": [
"east-asia",
"hui-muslim-community",
"growing-tech-hub",
"manufacturing-tech",
"historic"
],
"slug": "xian"
}
]
},
{
"country": "Côte d'Ivoire",
"region": "Africa",
"cities": [
{
"name": "Abidjan",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Local iftar and suhoor; Taraweeh in mosques; family and community gatherings; charity and feeding the needy; emphasis on Qur'an and Laylat al-Qadr.",
"population": "~27 million",
"muslim_population": "~11 million (42% of Côte d'Ivoire); Abidjan has significant Muslim population",
"muslim_percentage": 42,
"ramadan_traditions": "Local iftar and suhoor; Taraweeh in mosques; family and community gatherings; charity and feeding the needy; emphasis on Qur'an and Laylat al-Qadr.",
"religious_cultural": "Ramadan observed with mosque and community programs; Laylat al-Qadr; zakat and sadaqah; strong emphasis on family, worship, and charity.",
"tags": [
"west-africa",
"francophone",
"economic-hub",
"resource-wealth",
"stable"
],
"slug": "abidjan"
}
]
},
{
"country": "Egypt",
"region": "Middle East/North Africa",
"cities": [
{
"name": "Cairo",
"suhoor_meals": [
"fava beans (ful medames)",
"baladi bread",
"cheese and eggs"
],
"iftar_meals": [
"dates and water",
"ful medames with bread",
"various stews and rice"
],
"desserts_and_drinks": [
"karkadeh (hibiscus drink)",
"kunafa and basbousa"
],
"rituals_and_traditions": [
"Fanoos (Ramadan lanterns) decorating streets and homes",
"Lanterns carried by children while singing Ramadan songs",
"Family iftars that often extend into late-night socializing"
],
"notes": "Colorful fanoos lanterns and ful with karkadeh are widely associated with Egyptian Ramadan.[web:1]",
"population": "~106 million",
"muslim_population": "~95 million (90% of Egypt)",
"muslim_percentage": 90,
"ramadan_traditions": "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.",
"religious_cultural": "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.",
"tags": [
"north-africa",
"largest-arab-population",
"cost-effective",
"cultural-center",
"large-talent-pool"
],
"slug": "cairo"
},
{
"name": "Alexandria",
"suhoor_meals": [
"ful medames",
"bread and cheese"
],
"iftar_meals": [
"seafood dishes alongside standard Egyptian iftar items"
],
"desserts_and_drinks": [
"karkadeh",
"local sweets"
],
"rituals_and_traditions": [
"Coastal iftars with extended families",
"Neighborhood lantern displays similar to Cairo"
],
"notes": "Coastal influence adds more fish/seafood to otherwise typical Egyptian Ramadan meals.[web:1]",
"population": "~6.4 million",
"muslim_population": "~5.8 million (90% of Egypt, Alexandria metro)",
"muslim_percentage": 90,
"ramadan_traditions": "Coastal Egyptian Ramadan; fanous and meshaharati; iftar with seafood and Egyptian dishes; Taraweeh in historic mosques; street and family iftars.",
"religious_cultural": "Mediterranean and Egyptian blend; Al-Azhar presence; Laylat al-Qadr; charity and community; strong mosque and neighborhood culture.",
"tags": [
"middle-east",
"major-city",
"port-city",
"growing-tech-hub",
"large-population"
],
"slug": "alexandria"
}
]
},
{
"country": "France",
"region": "Europe",
"cities": [
{
"name": "Paris",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "French Muslim Ramadan; iftar at mosques and homes; Grand Mosque of Paris; Ramadan in the banlieues; charity and community; multicultural North African and sub-Saharan traditions.",
"population": "~12.3 million (Île-de-France)",
"muslim_population": "~1.7 million (8-10% of Île-de-France region)",
"muslim_percentage": 9,
"ramadan_traditions": "French Muslim Ramadan; iftar at mosques and homes; Grand Mosque of Paris; Ramadan in the banlieues; charity and community; multicultural North African and sub-Saharan traditions.",
"religious_cultural": "Major European Muslim community; Laylat al-Qadr; mosque and association-led programs; debate on Ramadan in secular France; solidarity and charity.",
"tags": [
"europe",
"major-tech-hub",
"large-muslim-population",
"diverse-talent",
"startup-ecosystem"
],
"slug": "paris"
}
]
},
{
"country": "India",
"region": "South Asia",
"cities": [
{
"name": "Hyderabad",
"suhoor_meals": [
"paratha with curry",
"tea"
],
"iftar_meals": [
"dates and water",
"haleem",
"samosas",
"fruit chaat"
],
"desserts_and_drinks": [
"falooda",
"rooh afza-based drinks"
],
"rituals_and_traditions": [
"Haleem stalls all over the city during Ramadan",
"Night markets around Charminar packed after taraweeh"
],
"notes": "Hyderabadi haleem is one of the most famous South Asian Ramadan dishes.[web:5][web:13]",
"population": "~10 million (metro)",
"muslim_population": "~1.8-2.2 million (30-35% of Hyderabad)",
"muslim_percentage": 32,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"high-muslim-concentration",
"major-tech-hub",
"islamic-heritage",
"muslim-cultural-center"
],
"slug": "hyderabad"
},
{
"name": "Delhi",
"suhoor_meals": [
"paratha, eggs, chai"
],
"iftar_meals": [
"shami kebab",
"biryani",
"samosas"
],
"desserts_and_drinks": [
"rooh afza sharbat"
],
"rituals_and_traditions": [
"Old Delhi food streets like Jama Masjid area crowded for iftar and late-night snacks",
"Seheriwalas (drummers) waking people up for suhoor in some neighborhoods"
],
"notes": "India shares many Ramadan foods with Pakistan and Bangladesh, including haleem, biryani, and rooh afza drinks.[web:5][web:13][web:16]",
"population": "~20 million (metro)",
"muslim_population": "~2.5-3 million (12-15% of Delhi metro)",
"muslim_percentage": 13,
"ramadan_traditions": "Indian Muslim Ramadan; Old Delhi iftar (kebabs, phirni, dates); Jama Masjid and neighborhood mosques; Taraweeh; Ramadan bazaars; sehri and iftar with family.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity and dastarkhwan; mosque and shrine visits; blend of Urdu and regional customs.",
"tags": [
"south-asia",
"capital-city",
"islamic-heritage",
"major-tech-hub",
"large-muslim-population"
],
"slug": "delhi"
},
{
"name": "Kolkata",
"suhoor_meals": [
"paratha and curry",
"chai"
],
"iftar_meals": [
"biryani",
"chops and cutlets",
"samosas"
],
"desserts_and_drinks": [
"sweet lassi",
"rooh afza"
],
"rituals_and_traditions": [
"Ramadan food lanes around Zakaria Street and central mosques",
"Strong street-food culture after iftar"
],
"notes": "Kolkata's Ramadan is known for dense street-food scenes centered on mosques and market lanes.[web:4]",
"population": "~15 million (metro)",
"muslim_population": "~2.5-3 million (18-22% of Kolkata metro)",
"muslim_percentage": 20,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"large-muslim-population",
"growing-tech-hub",
"affordable",
"historic-significance"
],
"slug": "kolkata"
},
{
"name": "Mumbai",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Mumbai Ramadan; Mohammed Ali Road and Bhendi Bazaar iftar; kebabs, haleem, dates; Taraweeh in historic mosques; Ramadan markets; community and family iftars.",
"population": "~26 million (metro)",
"muslim_population": "~3.5-4 million (12-15% of Mumbai metro)",
"muslim_percentage": 13,
"ramadan_traditions": "Mumbai Ramadan; Mohammed Ali Road and Bhendi Bazaar iftar; kebabs, haleem, dates; Taraweeh in historic mosques; Ramadan markets; community and family iftars.",
"religious_cultural": "Cosmopolitan Indian Muslim community; Laylat al-Qadr; Sunni and Bohra traditions; charity and feeding; strong mosque and community culture.",
"tags": [
"south-asia",
"major-tech-hub",
"large-muslim-population",
"diverse-talent",
"high-purchasing-power"
],
"slug": "mumbai"
},
{
"name": "Lucknow",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"population": "~5 million (metro)",
"muslim_population": "~1.2-1.5 million (25-30% of Lucknow)",
"muslim_percentage": 27,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"indo-islamic-culture",
"shia-center",
"growing-tech-hub",
"affordable"
],
"slug": "lucknow"
},
{
"name": "Bengaluru",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"population": "~13 million (metro)",
"muslim_population": "~1.5-2 million (12-15% of Bengaluru metro)",
"muslim_percentage": 13,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"major-tech-hub",
"silicon-valley-india",
"large-muslim-population",
"diverse-talent"
],
"slug": "bengaluru"
},
{
"name": "Ahmedabad",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"population": "~8.5 million (metro)",
"muslim_population": "~800,000-1 million (12-15% of Ahmedabad)",
"muslim_percentage": 13,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"growing-tech-hub",
"affordable",
"manufacturing-tech",
"muslim-community"
],
"slug": "ahmedabad"
},
{
"name": "Chennai",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"population": "~11 million (metro)",
"muslim_population": "~800,000-1 million (10-12% of Chennai metro)",
"muslim_percentage": 11,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"major-tech-hub",
"it-services",
"muslim-community",
"diverse-talent"
],
"slug": "chennai"
},
{
"name": "Pune",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"population": "~7 million (metro)",
"muslim_population": "~600,000-800,000 (10-12% of Pune metro)",
"muslim_percentage": 11,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"major-tech-hub",
"it-services",
"affordable",
"muslim-community"
],
"slug": "pune"
},
{
"name": "Jaipur",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"population": "~5 million (metro)",
"muslim_population": "~400,000-500,000 (8-10% of Jaipur)",
"muslim_percentage": 9,
"ramadan_traditions": "Sehri and iftar with regional dishes; Taraweeh in mosques; Ramadan bazaars; dastarkhwan; family and neighborhood iftars.",
"religious_cultural": "Mughal and Indian Islamic heritage; Laylat al-Qadr; Sunni majority; charity; mosque and shrine visits; diverse regional customs.",
"tags": [
"south-asia",
"growing-tech-hub",
"affordable",
"tourism-tech",
"muslim-community"
],
"slug": "jaipur"
}
]
},
{
"country": "Indonesia",
"region": "Southeast Asia",
"cities": [
{
"name": "Jakarta",
"suhoor_meals": [
"rice with side dishes",
"soups"
],
"iftar_meals": [
"dates and water",
"kolak (sweet banana, coconut, palm sugar dessert)",
"gorengan (fried snacks)"
],
"desserts_and_drinks": [
"es buah (fruit drink)",
"sweet iced teas"
],
"rituals_and_traditions": [
"Nyekar/nyadran style grave visits and prayers in some Javanese communities before Ramadan",
"Crowded street food markets (pasar Ramadan) each evening"
],
"notes": "Indonesian Ramadan includes cemetery visits (nyekar/nyadran) and abundant sweet snacks at iftar.[web:2][web:4][web:9]",
"population": "~275 million",
"muslim_population": "~230 million (87% of Indonesia)",
"muslim_percentage": 87,
"ramadan_traditions": "Ngabuburit (pre-iftar activities); takjil (sweet snacks at iftar); kolak, es campur; mosque iftars; mudik (homecoming) before Eid; Ramadan markets and street food.",
"religious_cultural": "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.",
"tags": [
"southeast-asia",
"largest-muslim-population",
"unicorns",
"massive-market",
"young-population"
],
"slug": "jakarta"
},
{
"name": "Yogyakarta",
"suhoor_meals": [
"rice with local dishes"
],
"iftar_meals": [
"kolak",
"local snacks and rice dishes"
],
"desserts_and_drinks": [
"iced teas and juices"
],
"rituals_and_traditions": [
"Padusan ritual cleansing in springs or lakes before Ramadan",
"Javanese cultural elements woven into pre-Ramadan observances"
],
"notes": "Padusan is a Javanese ritual cleansing used to welcome Ramadan.[web:2]"
},
{
"name": "Aceh",
"suhoor_meals": [
"rice and fish or meat dishes"
],
"iftar_meals": [
"dates",
"meugang meat dishes (beef, goat, or buffalo) eaten around start of Ramadan"
],
"desserts_and_drinks": [
"local sweets and drinks"
],
"rituals_and_traditions": [
"Meugang, a communal meat feast with family just before Ramadan begins"
],
"notes": "Meugang is a distinctive Acehnese pre-Ramadan meat feast.[web:2]"
},
{
"name": "Bandung",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Ngabuburit and takjil; kolak, es campur; mosque iftars; mudik before Eid; Ramadan markets; tadarus and Taraweeh.",
"population": "~275 million",
"muslim_population": "~230 million (87% of Indonesia); West Java region highly Muslim",
"muslim_percentage": 87,
"ramadan_traditions": "Ngabuburit and takjil; kolak, es campur; mosque iftars; mudik before Eid; Ramadan markets; tadarus and Taraweeh.",
"religious_cultural": "Indonesian blend of tradition and community; Laylat al-Qadr; bedug and mosque life; charity and open houses.",
"tags": [
"southeast-asia",
"creative-hub",
"university-ecosystem",
"lower-costs",
"islamic-lifestyle"
],
"slug": "bandung"
},
{
"name": "Surabaya",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Ngabuburit and takjil; kolak, es campur; mosque iftars; mudik before Eid; Ramadan markets; tadarus and Taraweeh.",
"population": "~3.7 million",
"muslim_population": "~3.2 million (87% of Indonesia, Surabaya metro)",
"muslim_percentage": 87,
"ramadan_traditions": "Ngabuburit and takjil; kolak, es campur; mosque iftars; mudik before Eid; Ramadan markets; tadarus and Taraweeh.",
"religious_cultural": "Indonesian blend of tradition and community; Laylat al-Qadr; bedug and mosque life; charity and open houses.",
"tags": [
"southeast-asia",
"large-population",
"major-city",
"growing-tech-hub",
"port-city"
],
"slug": "surabaya"
},
{
"name": "Semarang",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Ngabuburit and takjil; kolak, es campur; mosque iftars; mudik before Eid; Ramadan markets; tadarus and Taraweeh.",
"population": "~2.1 million",
"muslim_population": "~1.8 million (87% of Indonesia, Semarang metro)",
"muslim_percentage": 87,
"ramadan_traditions": "Ngabuburit and takjil; kolak, es campur; mosque iftars; mudik before Eid; Ramadan markets; tadarus and Taraweeh.",
"religious_cultural": "Indonesian blend of tradition and community; Laylat al-Qadr; bedug and mosque life; charity and open houses.",
"tags": [
"southeast-asia",
"major-city",
"growing-tech-hub",
"affordable",
"muslim-population"
],
"slug": "semarang"
}
]
},
{
"country": "Iran",
"region": "Middle East",
"cities": [
{
"name": "Tehran",
"suhoor_meals": [
"barbari bread with cheese and herbs",
"light stews and rice"
],
"iftar_meals": [
"dates and water",
"ash-e reshteh (noodle and bean soup)",
"khoresht stews with rice"
],
"desserts_and_drinks": [
"sholeh zard (saffron rice pudding)",
"tea"
],
"rituals_and_traditions": [
"Late-night street life after iftar",
"Special religious gatherings and Quran recitation sessions"
],
"notes": "Ash-e reshteh and sholeh zard are widely associated with Iranian Ramadan tables.[web:12][web:13]",
"population": "~89 million",
"muslim_population": "~88 million (99% of Iran, 90-95% Shia)",
"muslim_percentage": 99,
"ramadan_traditions": "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.",
"religious_cultural": "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.",
"tags": [
"middle-east",
"large-population",
"resilient-ecosystem",
"strong-engineering",
"domestic-platforms",
"sanctions-resilient"
],
"slug": "tehran"
},
{
"name": "Mazandaran (province)",
"suhoor_meals": [
"local bread, cheese, herbs",
"rice dishes"
],
"iftar_meals": [
"dates and water",
"regional stews with rice"
],
"desserts_and_drinks": [
"tea and local sweets"
],
"rituals_and_traditions": [
"Some communities begin fasting three days before Ramadan starts, effectively fasting 33 days"
],
"notes": "In Mazandaran, some people traditionally start fasting at the end of Sha'ban, adding three extra days.[web:12]"
},
{
"name": "Mashhad",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Shia Ramadan at Imam Reza shrine; sohoor and iftar near the shrine; Rawda and dua; Persian dishes; emphasis on Imam Ali (AS) and Laylat al-Qadr.",
"population": "~3.5 million",
"muslim_population": "~3.5 million (99% Shia Muslim, Mashhad metro)",
"muslim_percentage": 99,
"ramadan_traditions": "Shia Ramadan at Imam Reza shrine; sohoor and iftar near the shrine; Rawda and dua; Persian dishes; emphasis on Imam Ali (AS) and Laylat al-Qadr.",
"religious_cultural": "Major Shia pilgrimage center; Shab-e-Qadr observances; shrine and seminary programs; charity and feeding pilgrims; Persian and Shia tradition.",
"tags": [
"middle-east",
"holy-city",
"shia-center",
"large-population",
"growing-tech-hub"
],
"slug": "mashhad"
}
]
},
{
"country": "Iraq",
"region": "Middle East",
"cities": [
{
"name": "Baghdad",
"suhoor_meals": [],
"iftar_meals": [],
"desserts_and_drinks": [],
"rituals_and_traditions": [],
"notes": "Iraqi iftar (tamr, qamar al-din, kleicha); meshaharati; Taraweeh in historic mosques; family and neighborhood iftars; emphasis on charity in difficult times.",
"population": "~42 million",
"muslim_population": "~40 million (95% of Iraq, Baghdad metro ~8 million)",
"muslim_percentage": 95,
"ramadan_traditions": "Iraqi iftar (tamr, qamar al-din, kleicha); meshaharati; Taraweeh in historic mosques; family and neighborhood iftars; emphasis on charity in difficult times.",
"religious_cultural": "Historic Abbasid and Islamic heritage; Laylat al-Qadr; Sunni and Shia observance; resilience and community during Ramadan; mosque and shrine visits.",
"tags": [
"middle-east",
"historic-capital",
"large-population",
"young-demographic",
"emerging-tech"
],
"slug": "baghdad"
}
]
},
{
"country": "Jordan",
"region": "Middle East",
"cities": [
{
"name": "Amman",
"suhoor_meals": [
"bread, cheese, hummus, foul"
],
"iftar_meals": [
"dates and water",
"mansaf (lamb with rice and jameed yogurt)",
"various rice and meat dishes"
],
"desserts_and_drinks": [
"qatayef",
"juices"
],
"rituals_and_traditions": [
"Mansaf at large family gatherings and special Ramadan occasions"
],
"notes": "Mansaf, Jordan’s national dish, is central to celebrations and gatherings, including Ramadan.[web:5]",
"population": "~11 million",
"muslim_population": "~10 million (95% of Jordan)",
"muslim_percentage": 95,
"ramadan_traditions": "Jordanian iftar (dates, soup, main dishes); Taraweeh in mosques; family and community iftars; charity; Ramadan lights and atmosphere.",
"religious_cultural": "Levantine Ramadan; Laylat al-Qadr; mosque and community programs; proximity to Jerusalem and holy sites.",