-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaces_dataset.json
More file actions
2594 lines (2594 loc) · 67.6 KB
/
Copy pathplaces_dataset.json
File metadata and controls
2594 lines (2594 loc) · 67.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
[
{
"id": "wr-001",
"name": "Effia Nkwanta Regional Hospital",
"category": "hospital",
"town": "Sekondi",
"address": "Effia Nkwanta, Sekondi, Western Region",
"latitude": 4.9342,
"longitude": -1.7082,
"rating": 3.8,
"phone": "+233 312 022 071",
"hours": "24/7 emergency; OPD Mon–Fri 8am–4pm",
"description": "The largest public hospital in the Western Region, serving as the regional referral centre. Offers general medicine, surgery, maternity, paediatrics, and emergency services.",
"tags": [
"hospital",
"emergency",
"regional referral",
"public health",
"doctor",
"clinic",
"medical",
"trauma",
"maternity"
],
"verified_source": "Ghana Health Service registry"
},
{
"id": "wr-002",
"name": "Axim Government Hospital",
"category": "hospital",
"town": "Axim",
"address": "Axim, Nzema East Municipal District, Western Region",
"latitude": 4.8697,
"longitude": -2.239,
"rating": 3.5,
"phone": "+233 312 094 003",
"hours": "24/7 emergency",
"description": "District-level government hospital serving Axim and surrounding coastal communities. Provides general outpatient care, maternity, and basic emergency services.",
"tags": [
"hospital",
"government",
"axim",
"emergency",
"doctor",
"medical",
"clinic"
],
"verified_source": "Ghana Health Service"
},
{
"id": "wr-003",
"name": "St. Martin's de Porres Hospital",
"category": "hospital",
"town": "Eikwe",
"address": "Eikwe, Ellembelle District, Western Region",
"latitude": 4.96,
"longitude": -2.31,
"rating": 4.2,
"phone": "+233 312 095 010",
"hours": "24/7 emergency",
"description": "Catholic mission hospital widely regarded as one of the best private health facilities in the Western Region, with strong maternal and surgical services.",
"tags": [
"hospital",
"catholic",
"mission",
"maternity",
"surgery",
"medical",
"doctor",
"private"
],
"verified_source": "Catholic Health Service Ghana"
},
{
"id": "wr-004",
"name": "Tarkwa Government Hospital",
"category": "hospital",
"town": "Tarkwa",
"address": "Tarkwa-Nsuaem Municipality, Western Region",
"latitude": 5.3,
"longitude": -1.994,
"rating": 3.4,
"phone": "+233 312 020 250",
"hours": "24/7 emergency",
"description": "Government hospital serving the Tarkwa mining belt. Provides general medical, surgical, and maternity services for the municipality.",
"tags": [
"hospital",
"tarkwa",
"mining belt",
"government",
"emergency",
"medical"
],
"verified_source": "Ghana Health Service"
},
{
"id": "wr-005",
"name": "Kwesimintsim Government Hospital",
"category": "hospital",
"town": "Takoradi",
"address": "Kwesimintsim, Takoradi, Western Region",
"latitude": 4.909,
"longitude": -1.778,
"rating": 3.6,
"phone": "+233 312 023 471",
"hours": "24/7 emergency",
"description": "Major public hospital in Takoradi metropolis, complementing Effia Nkwanta with primary and secondary care for the western suburbs.",
"tags": [
"hospital",
"takoradi",
"kwesimintsim",
"government",
"medical",
"emergency"
],
"verified_source": "Ghana Health Service"
},
{
"id": "wr-006",
"name": "Jubilee Hospital Takoradi",
"category": "hospital",
"town": "Takoradi",
"address": "Anaji, Takoradi, Western Region",
"latitude": 4.905,
"longitude": -1.76,
"rating": 4.0,
"phone": "+233 312 022 800",
"hours": "24/7 emergency",
"description": "Modern private hospital in Takoradi offering specialist care including cardiology, orthopaedics, and diagnostic imaging.",
"tags": [
"hospital",
"private",
"specialist",
"takoradi",
"imaging",
"diagnostic",
"medical"
],
"verified_source": "Western Regional Health Directorate"
},
{
"id": "wr-101",
"name": "University of Mines and Technology (UMaT)",
"category": "university",
"town": "Tarkwa",
"address": "Essikado-Tarkwa Road, Tarkwa, Western Region",
"latitude": 5.3009,
"longitude": -1.9871,
"rating": 4.3,
"phone": "+233 312 020 280",
"hours": "Mon–Fri 8am–5pm",
"description": "Ghana's premier public university for mining, petroleum, and geological engineering. Established 2004 from the former Tarkwa School of Mines.",
"tags": [
"university",
"umat",
"mining",
"engineering",
"petroleum",
"geology",
"education",
"tertiary",
"school"
],
"verified_source": "umat.edu.gh"
},
{
"id": "wr-102",
"name": "Takoradi Technical University (TTU)",
"category": "university",
"town": "Takoradi",
"address": "Effia-Kuma Road, Takoradi, Western Region",
"latitude": 4.908,
"longitude": -1.772,
"rating": 4.0,
"phone": "+233 312 022 173",
"hours": "Mon–Fri 8am–5pm",
"description": "Public technical university offering engineering, business, applied sciences, and hospitality programmes. Formerly Takoradi Polytechnic.",
"tags": [
"university",
"ttu",
"technical",
"polytechnic",
"engineering",
"business",
"education",
"school"
],
"verified_source": "ttu.edu.gh"
},
{
"id": "wr-103",
"name": "Fijai Senior High School",
"category": "school",
"town": "Takoradi",
"address": "Fijai, Takoradi, Western Region",
"latitude": 4.9165,
"longitude": -1.753,
"rating": 4.1,
"phone": "+233 312 020 460",
"hours": "Mon–Fri 7am–4pm",
"description": "Co-educational public senior high school well known for strong science and mathematics performance in the Western Region.",
"tags": [
"school",
"senior high",
"shs",
"fijai",
"secondary",
"education",
"science"
],
"verified_source": "Ghana Education Service"
},
{
"id": "wr-104",
"name": "Sekondi College",
"category": "school",
"town": "Sekondi",
"address": "Sekondi, Western Region",
"latitude": 4.932,
"longitude": -1.7099,
"rating": 3.9,
"phone": "+233 312 046 035",
"hours": "Mon–Fri 7am–4pm",
"description": "Historic boys' senior high school established 1947, with notable alumni in Ghanaian public life.",
"tags": [
"school",
"senior high",
"shs",
"boys",
"sekondi",
"secondary",
"education"
],
"verified_source": "Ghana Education Service"
},
{
"id": "wr-105",
"name": "Takoradi Senior High School",
"category": "school",
"town": "Takoradi",
"address": "Anaji, Takoradi, Western Region",
"latitude": 4.906,
"longitude": -1.761,
"rating": 4.0,
"phone": "+233 312 022 514",
"hours": "Mon–Fri 7am–4pm",
"description": "Major co-educational senior high school in central Takoradi serving the metropolis.",
"tags": [
"school",
"senior high",
"shs",
"takoradi",
"secondary",
"education"
],
"verified_source": "Ghana Education Service"
},
{
"id": "wr-106",
"name": "Methodist Girls' Senior High School",
"category": "school",
"town": "Tarkwa",
"address": "Tarkwa, Western Region",
"latitude": 5.306,
"longitude": -1.99,
"rating": 4.2,
"phone": "+233 312 020 318",
"hours": "Mon–Fri 7am–4pm",
"description": "All-girls Methodist senior high school in Tarkwa with strong academic record.",
"tags": [
"school",
"senior high",
"shs",
"girls",
"methodist",
"tarkwa",
"education"
],
"verified_source": "Ghana Education Service"
},
{
"id": "wr-107",
"name": "Ahantaman Senior High School",
"category": "school",
"town": "Agona Nkwanta",
"address": "Agona Nkwanta, Ahanta West District, Western Region",
"latitude": 4.923,
"longitude": -1.96,
"rating": 3.8,
"phone": "+233 312 020 870",
"hours": "Mon–Fri 7am–4pm",
"description": "Co-educational senior high school serving Ahanta West District communities.",
"tags": [
"school",
"senior high",
"shs",
"ahanta",
"agona nkwanta",
"education"
],
"verified_source": "Ghana Education Service"
},
{
"id": "wr-201",
"name": "Busua Beach",
"category": "beach",
"town": "Busua",
"address": "Busua, Ahanta West District, Western Region",
"latitude": 4.781,
"longitude": -1.9605,
"rating": 4.5,
"phone": null,
"hours": "Open 24 hours",
"description": "One of Ghana's most popular beaches, with a long curve of soft white sand, calm surfable waves, and several beachfront lodges. About 30 km west of Takoradi.",
"tags": [
"beach",
"busua",
"swimming",
"surf",
"surfing",
"sand",
"ocean",
"sea",
"coast",
"tourist",
"tourism"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-202",
"name": "Axim Beach",
"category": "beach",
"town": "Axim",
"address": "Axim Bay, Nzema East, Western Region",
"latitude": 4.865,
"longitude": -2.2415,
"rating": 4.3,
"phone": null,
"hours": "Open 24 hours",
"description": "Wide palm-fringed beach overlooked by Fort St. Antonio. Less crowded than Busua, with strong surf — best for sunbathing and walking.",
"tags": [
"beach",
"axim",
"ocean",
"sea",
"fort st antonio",
"tourist",
"coast",
"sand",
"swimming"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-203",
"name": "Butre Beach",
"category": "beach",
"town": "Butre",
"address": "Butre village, Ahanta West, Western Region",
"latitude": 4.809,
"longitude": -1.923,
"rating": 4.4,
"phone": null,
"hours": "Open 24 hours",
"description": "Quiet, scenic beach at the mouth of the Butre River, framed by the ruins of Fort Batenstein on the hill. A favourite for kayaking and birdwatching.",
"tags": [
"beach",
"butre",
"fort batenstein",
"river",
"kayak",
"scenic",
"quiet",
"sand",
"ocean"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-204",
"name": "Cape Three Points Beach",
"category": "beach",
"town": "Cape Three Points",
"address": "Cape Three Points, Ahanta West, Western Region",
"latitude": 4.747,
"longitude": -2.086,
"rating": 4.6,
"phone": null,
"hours": "Open 24 hours",
"description": "The southernmost point of Ghana, marked by the Cape Three Points lighthouse. Dramatic Atlantic coastline with rocky headlands and undeveloped beaches.",
"tags": [
"beach",
"cape three points",
"lighthouse",
"southernmost",
"remote",
"scenic",
"ocean",
"coast"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-205",
"name": "Akwidaa Beach",
"category": "beach",
"town": "Akwidaa",
"address": "Akwidaa, Ahanta West, Western Region",
"latitude": 4.753,
"longitude": -2.067,
"rating": 4.4,
"phone": null,
"hours": "Open 24 hours",
"description": "Long, undeveloped white-sand beach near Cape Three Points. Home to the Green Turtle Lodge eco-resort. Very few crowds, ideal for relaxation.",
"tags": [
"beach",
"akwidaa",
"green turtle lodge",
"remote",
"eco",
"sand",
"ocean",
"coast"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-206",
"name": "Princess Town Beach",
"category": "beach",
"town": "Princess Town",
"address": "Princess Town, Ahanta West, Western Region",
"latitude": 4.76,
"longitude": -2.15,
"rating": 4.2,
"phone": null,
"hours": "Open 24 hours",
"description": "Quiet fishing village beach with the historic Fort Gross Friedrichsburg standing on the headland.",
"tags": [
"beach",
"princess town",
"fort",
"fishing village",
"quiet",
"ocean",
"coast"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-301",
"name": "Fort St. Antonio",
"category": "fort",
"town": "Axim",
"address": "Axim Bay, Nzema East, Western Region",
"latitude": 4.8645,
"longitude": -2.2387,
"rating": 4.3,
"phone": null,
"hours": "Tue–Sun 9am–5pm",
"description": "Built by the Portuguese in 1515, Fort St. Antonio is the second-oldest European fort in Ghana. Now a UNESCO World Heritage Site, it overlooks Axim Bay.",
"tags": [
"fort",
"castle",
"portuguese",
"axim",
"unesco",
"history",
"historical",
"heritage",
"colonial"
],
"verified_source": "UNESCO World Heritage; Ghana Museums and Monuments Board"
},
{
"id": "wr-302",
"name": "Fort Metal Cross",
"category": "fort",
"town": "Dixcove",
"address": "Dixcove, Ahanta West, Western Region",
"latitude": 4.806,
"longitude": -1.943,
"rating": 4.2,
"phone": null,
"hours": "Tue–Sun 9am–4pm",
"description": "British-built fort completed in 1697 in Dixcove. Renowned for its commanding views of the harbour and for its role in the Atlantic slave trade. UNESCO World Heritage Site.",
"tags": [
"fort",
"british",
"dixcove",
"unesco",
"history",
"historical",
"heritage",
"slave trade",
"colonial"
],
"verified_source": "UNESCO; Ghana Museums and Monuments Board"
},
{
"id": "wr-303",
"name": "Fort Batenstein",
"category": "fort",
"town": "Butre",
"address": "Butre, Ahanta West, Western Region",
"latitude": 4.81,
"longitude": -1.9215,
"rating": 3.9,
"phone": null,
"hours": "Sunrise–sunset (ruins)",
"description": "Dutch fort built in 1656 on a hill overlooking Butre village and lagoon. Now in ruins but with stunning views over the river mouth and beach.",
"tags": [
"fort",
"dutch",
"butre",
"ruins",
"history",
"historical",
"heritage",
"scenic",
"colonial"
],
"verified_source": "Ghana Museums and Monuments Board"
},
{
"id": "wr-304",
"name": "Fort Orange (Fort Oranje)",
"category": "fort",
"town": "Sekondi",
"address": "Sekondi, Western Region",
"latitude": 4.943,
"longitude": -1.705,
"rating": 3.8,
"phone": null,
"hours": "Mon–Fri 9am–4pm",
"description": "Dutch fort built in 1640 in Sekondi, currently used as a lighthouse. UNESCO World Heritage Site.",
"tags": [
"fort",
"dutch",
"sekondi",
"lighthouse",
"unesco",
"history",
"heritage",
"colonial"
],
"verified_source": "UNESCO; Ghana Museums and Monuments Board"
},
{
"id": "wr-305",
"name": "Fort Gross Friedrichsburg",
"category": "fort",
"town": "Princess Town",
"address": "Princess Town (Pokesu), Ahanta West, Western Region",
"latitude": 4.761,
"longitude": -2.149,
"rating": 4.0,
"phone": null,
"hours": "Daily during daylight",
"description": "Brandenburg-Prussian fort built in 1683 — the only German-built fort in Ghana. Now operates as a guesthouse with sea views.",
"tags": [
"fort",
"german",
"brandenburg",
"princess town",
"history",
"guesthouse",
"unesco",
"heritage"
],
"verified_source": "UNESCO; Ghana Museums and Monuments Board"
},
{
"id": "wr-306",
"name": "Fort Dorothea",
"category": "fort",
"town": "Akwidaa",
"address": "Akwidaa (Akwida), Ahanta West, Western Region",
"latitude": 4.751,
"longitude": -2.07,
"rating": 3.7,
"phone": null,
"hours": "Sunrise–sunset (ruins)",
"description": "Brandenburger fort built in 1685 near Akwidaa. Now in ruins, with the foundations and outer walls still visible.",
"tags": [
"fort",
"brandenburg",
"akwidaa",
"ruins",
"history",
"heritage"
],
"verified_source": "Ghana Museums and Monuments Board"
},
{
"id": "wr-401",
"name": "Nzulezu Stilt Village",
"category": "nature",
"town": "Beyin",
"address": "Lake Tadane, near Beyin, Jomoro District, Western Region",
"latitude": 5.0167,
"longitude": -2.65,
"rating": 4.7,
"phone": "+233 312 095 040",
"hours": "Daily 8am–5pm; canoe trips depart Beyin visitor centre",
"description": "A 400-year-old village built entirely on stilts above Lake Tadane. UNESCO tentative World Heritage Site. Reached by a one-hour canoe ride from Beyin through the Amansuri wetland.",
"tags": [
"nature",
"stilt village",
"nzulezu",
"lake tadane",
"unesco",
"ramsar",
"wetland",
"tourism",
"tourist",
"cultural",
"amansuri"
],
"verified_source": "UNESCO Tentative List; visitghana.com"
},
{
"id": "wr-402",
"name": "Ankasa Conservation Area",
"category": "nature",
"town": "Ankasa",
"address": "Ankasa, Jomoro/Ellembelle Districts, Western Region",
"latitude": 5.27,
"longitude": -2.64,
"rating": 4.5,
"phone": "+233 312 095 050",
"hours": "Daily 6am–6pm",
"description": "509 sq km of pristine rainforest — Ghana's most biodiverse protected area. Home to forest elephants, bongos, monkeys, and over 600 butterfly species.",
"tags": [
"nature",
"national park",
"rainforest",
"ankasa",
"conservation",
"wildlife",
"elephants",
"monkeys",
"forest",
"ecotourism"
],
"verified_source": "Wildlife Division, Forestry Commission Ghana"
},
{
"id": "wr-403",
"name": "Amansuri Wetland",
"category": "nature",
"town": "Beyin",
"address": "Jomoro District, Western Region",
"latitude": 5.03,
"longitude": -2.7,
"rating": 4.4,
"phone": null,
"hours": "Open daily",
"description": "Ramsar-designated wetland — the largest inland swamp forest in Ghana. Hosts crocodiles, herons, kingfishers, and is a key bird area.",
"tags": [
"nature",
"wetland",
"ramsar",
"swamp forest",
"amansuri",
"birds",
"birdwatching",
"wildlife",
"conservation"
],
"verified_source": "Ramsar Convention; Ghana Wildlife Society"
},
{
"id": "wr-404",
"name": "Cape Three Points Lighthouse",
"category": "nature",
"town": "Cape Three Points",
"address": "Cape Three Points, Ahanta West, Western Region",
"latitude": 4.735,
"longitude": -2.087,
"rating": 4.5,
"phone": null,
"hours": "External viewing daily",
"description": "Active lighthouse marking the southernmost point of Ghana. Built in 1925, it commands dramatic Atlantic views from a 56-metre cliff.",
"tags": [
"nature",
"lighthouse",
"cape three points",
"southernmost",
"scenic",
"viewpoint",
"ocean"
],
"verified_source": "Ghana Maritime Authority"
},
{
"id": "wr-405",
"name": "Bia National Park",
"category": "nature",
"town": "Bia",
"address": "Sefwi-Wiawso, Western North Region (border with Western Region)",
"latitude": 6.5,
"longitude": -3.07,
"rating": 4.0,
"phone": null,
"hours": "Daily 6am–6pm",
"description": "Biosphere reserve and national park with semi-deciduous forest. Home to forest elephants, chimpanzees, and several monkey species.",
"tags": [
"nature",
"national park",
"biosphere",
"wildlife",
"elephants",
"chimpanzees",
"forest"
],
"verified_source": "UNESCO MAB; Wildlife Division"
},
{
"id": "wr-501",
"name": "Best Western Plus Atlantic Hotel",
"category": "hotel",
"town": "Takoradi",
"address": "Liberation Road, Takoradi, Western Region",
"latitude": 4.9035,
"longitude": -1.756,
"rating": 4.4,
"phone": "+233 312 028 800",
"hours": "24 hours",
"description": "Four-star international-chain hotel in central Takoradi. Pool, fitness centre, conference rooms, on-site restaurant. Popular with oil industry executives.",
"tags": [
"hotel",
"lodge",
"accommodation",
"stay",
"luxury",
"best western",
"takoradi",
"business",
"pool",
"conference"
],
"verified_source": "Ghana Tourism Authority registry"
},
{
"id": "wr-502",
"name": "Raybow International Hotel",
"category": "hotel",
"town": "Takoradi",
"address": "Cape Coast Road, Takoradi, Western Region",
"latitude": 4.91,
"longitude": -1.748,
"rating": 4.0,
"phone": "+233 312 023 391",
"hours": "24 hours",
"description": "Long-established three-star hotel in Takoradi with a swimming pool, restaurant, bar, and conference facilities.",
"tags": [
"hotel",
"lodge",
"accommodation",
"stay",
"raybow",
"takoradi",
"pool",
"restaurant"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-503",
"name": "Planters Lodge",
"category": "hotel",
"town": "Takoradi",
"address": "Airport Ridge, Takoradi, Western Region",
"latitude": 4.894,
"longitude": -1.774,
"rating": 4.3,
"phone": "+233 312 022 233",
"hours": "24 hours",
"description": "Boutique colonial-style hotel set in lush gardens near the airport. Renowned for its restaurant, pool, and tranquil atmosphere.",
"tags": [
"hotel",
"lodge",
"accommodation",
"stay",
"boutique",
"planters",
"takoradi",
"garden",
"pool",
"restaurant"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-504",
"name": "Africa Beach Hotel",
"category": "hotel",
"town": "Takoradi",
"address": "Beach Road, Takoradi, Western Region",
"latitude": 4.887,
"longitude": -1.765,
"rating": 3.9,
"phone": "+233 312 022 631",
"hours": "24 hours",
"description": "Beachfront hotel with direct ocean views, restaurant, and event hall. Popular for weddings and corporate retreats.",
"tags": [
"hotel",
"beach",
"beachfront",
"ocean",
"wedding",
"events",
"takoradi",
"stay"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-505",
"name": "Green Turtle Lodge",
"category": "hotel",
"town": "Akwidaa",
"address": "Akwidaa Beach, near Cape Three Points, Western Region",
"latitude": 4.753,
"longitude": -2.068,
"rating": 4.6,
"phone": "+233 244 893 566",
"hours": "24 hours",
"description": "Eco-friendly beachfront lodge with thatched bungalows. Solar-powered, vegetarian-leaning kitchen, sea turtle conservation programme.",
"tags": [
"hotel",
"lodge",
"eco",
"ecotourism",
"beach",
"akwidaa",
"sea turtle",
"sustainable",
"remote",
"stay"
],
"verified_source": "greenturtlelodge.com"
},
{
"id": "wr-506",
"name": "Busua Inn",
"category": "hotel",
"town": "Busua",
"address": "Busua Beach, Ahanta West, Western Region",
"latitude": 4.782,
"longitude": -1.961,
"rating": 4.4,
"phone": "+233 244 700 116",
"hours": "24 hours",
"description": "Charming small beachfront inn at Busua, with a celebrated restaurant serving fresh seafood and continental dishes.",
"tags": [
"hotel",
"inn",
"lodge",
"busua",
"beach",
"seafood",
"restaurant",
"stay",
"boutique"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-507",
"name": "Lou Moon Lodge",
"category": "hotel",
"town": "Axim",
"address": "Axim coastline, Nzema East, Western Region",
"latitude": 4.854,
"longitude": -2.224,
"rating": 4.7,
"phone": "+233 244 350 320",
"hours": "24 hours",
"description": "Luxury private peninsula resort near Axim with chalets, infinity pool, private beach, and fine-dining restaurant.",
"tags": [
"hotel",
"lodge",
"luxury",
"axim",
"resort",
"beach",
"pool",
"fine dining",
"stay"
],
"verified_source": "loumoonlodge.com"
},
{
"id": "wr-508",
"name": "Ankobra Beach Resort",
"category": "hotel",
"town": "Axim",
"address": "Ankobra River mouth, near Axim, Western Region",
"latitude": 4.8775,
"longitude": -2.254,
"rating": 4.2,
"phone": "+233 312 094 280",
"hours": "24 hours",
"description": "Beach resort at the mouth of the Ankobra River, with thatched chalets, restaurant, and access to the lagoon and beach.",
"tags": [
"hotel",
"resort",
"beach",
"axim",
"ankobra",
"river",
"stay"
],
"verified_source": "Ghana Tourism Authority"
},
{
"id": "wr-601",
"name": "Captain Hook's Restaurant",
"category": "restaurant",
"town": "Takoradi",
"address": "Beach Road, Takoradi, Western Region",
"latitude": 4.8915,
"longitude": -1.753,
"rating": 4.5,
"phone": "+233 244 320 110",
"hours": "Mon–Sun 11am–10pm",
"description": "Popular seafood restaurant in Takoradi specialising in grilled tilapia, lobster, prawns, and fresh fish straight from the harbour. Pepper soup highly recommended.",
"tags": [
"restaurant",
"seafood",
"tilapia",
"lobster",
"prawn",
"pepper soup",
"fish",
"grilled fish",
"takoradi",
"food",
"eat"
],
"verified_source": "GTA listing"
},
{
"id": "wr-602",
"name": "Aqua Safari Restaurant",
"category": "restaurant",
"town": "Takoradi",
"address": "Anaji Estate, Takoradi, Western Region",
"latitude": 4.907,
"longitude": -1.77,
"rating": 4.3,
"phone": "+233 244 671 200",
"hours": "Mon–Sun 11am–11pm",
"description": "Mid-range restaurant in Takoradi serving Ghanaian classics and continental dishes. Known for jollof rice, banku with tilapia, and grilled chicken.",
"tags": [
"restaurant",
"ghanaian",
"jollof",
"jollof rice",
"banku",
"tilapia",
"grilled fish",
"continental",
"takoradi",
"food",
"eat"
],
"verified_source": "GTA listing"
},
{
"id": "wr-603",
"name": "Sir Max Hotel Restaurant",
"category": "restaurant",
"town": "Takoradi",
"address": "Effia Kuma, Takoradi, Western Region",
"latitude": 4.909,
"longitude": -1.769,
"rating": 4.1,
"phone": "+233 312 020 870",
"hours": "Daily 7am–10pm",
"description": "Hotel restaurant well known for traditional fufu with light soup and groundnut soup, palmnut soup, and waakye on weekends.",
"tags": [
"restaurant",
"fufu",
"light soup",
"groundnut soup",
"palmnut soup",
"waakye",
"ghanaian",
"traditional",
"takoradi",
"food",
"eat",
"chop bar"
],
"verified_source": "GTA listing"
},