-
Notifications
You must be signed in to change notification settings - Fork 1
/
visitgent.json
10126 lines (10048 loc) · 373 KB
/
visitgent.json
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
{
"dataset":{
"id":"http:\/\/www.example.com\/",
"poi":[
{
"id":"7503",
"category":[
null
],
"title":"Yachtcharter Gent",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.046577 3.719954",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Coupure links 9",
"city":"Gent"
}
},
"description":"A small fleet of electrical boats offer the most relaxed\/relaxing way of exploring Ghent\u2019s beauty spots. No stress, no motor noise and, above all, no fuel smell. Experience complete tranquillity together with your family, friends or colleagues. No experience or license required. You will receive a brief explanation before departing",
"attribute":[
{
"text":"476571818",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Yachtcharter Gent",
"url":"www.yachtchartergent.com\/main.html"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8107",
"category":[
"Monumenten & architectuur"
],
"title":"Flanders Opera Ghent",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.049734 3.721981",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Schouwburgstraat 3",
"city":"Gent"
}
},
"description":"In the first half of the 19th century, rich Ghent industrialists initiated the building of a new and luxurious opera house. It was meant to be the showcase for their newly acquired wealth and no expense was spared. In the splendid, horseshoeshaped theatre, being seen was just as important as seeing. The impressive chandelier is an attraction in itself, as are the three salons, in all 90 m long.",
"attribute":[
{
"text":"92681011",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"",
"url":"www.vlaamseopera.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8108",
"category":[
"Monumenten & architectuur"
],
"title":"Former Post Office",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.054283 3.721168",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Korenmarkt null",
"city":"Gent"
}
},
"description":"As soon as the first rays of sunshine announce the arrival of spring, the pavement cafés start appearing on the Korenmarkt. The former post office, with its beautiful clock tower, now houses a shopping centre.",
"attribute":[
]
},
{
"id":"8112",
"category":[
null
],
"title":"Campo",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.056123 3.730076",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Nieuwpoort 31-35",
"city":"Gent"
}
},
"description":"The lively art centre CAMPO offers a varied programme in 3 venues. Established names as well as new young talent get a chance.",
"attribute":[
{
"text":"92230000",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"",
"url":"www.campo.nu"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8112",
"category":[
null
],
"title":"Campo",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.056123 3.730076",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Nieuwpoort 31-35",
"city":"Gent"
}
},
"description":"",
"attribute":[
{
"text":"92230000",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"",
"url":"www.campo.nu"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8113",
"category":[
"Gentse Specialiteiten"
],
"title":"City brewery Gruut",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.049481 3.728219",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Grote Huidevettershoek 10",
"city":"Gent"
}
},
"description":"The Gruut Brewery is one of the rare breweries to use a mix of spices, known as gruut, instead of the traditional hops. Although this brewery uses modern technology it brews its beers in keeping with the ancient traditions. Currently Gruut produces five beers: a white beer, a blonde, an amber beer, a brown beer and a beer called Inferno.",
"attribute":[
{
"text":"092690269",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Stadsbrouwerij Gruut Gent",
"url":"www.gruut.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8115",
"category":[
"Monumenten & architectuur"
],
"title":"'t Toreken",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.056519 3.726190",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Vrijdagmarkt 36",
"city":"Gent"
}
},
"description":"Today the 15th-century Toreken, at that time the guild hall of the tanners, is home to the Poetry Centre. Halfway up this small tower is the market clock and on the steeple the mermaid Melusine holds up her mirror to the wind.",
"attribute":[
{
"text":"92252225",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"'t Toreken",
"url":"www.poeziecentrum.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8116",
"category":[
"CityCard Gent"
],
"title":"The Adoration of the Mystic Lamb",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.053084 3.726355",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Baafsplein null",
"city":"Gent"
}
},
"description":"<p>The Van Eyck brothers painted this unique altarpiece in 1432. It is the highlight of the Flemish Primitives and a milestone in art history. The Polyptych survived the Protestant Iconoclasm, fell into French hands under Napoleon and was requisitioned by Nazi Germany during the Second World War. But it has now been hanging peacefully for more than 50 years in the place where it belongs: St. Bavo’s Cathedral. Though admittedly, the ‘Just Judges’ panel, which was stolen in 1934, is still replaced by a reproduction.<\/p>\r\n<p>The restoration of the Mystic Lamb starts in September 2012.<\/p>\r\n<p> <\/p>\r\n<p><a href=\"\/en\/node\/11444\">Click here for more information about the restoration of the Mystic Lamb.<\/a><\/p>\r\n<p>On <a href=\"http:\/\/closertovaneyck.kikirpa.be\/\" target=\"_blank\">http:\/\/closertovaneyck.kikirpa.be\/<\/a> you can admire the work of art at close range and zoom in on all the details.<\/p>\r\n",
"attribute":[
{
"text":"92692045",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Sint-Baafskathedraal Gent",
"url":"http:\/\/www.sintbaafskathedraal.be\/"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8117",
"category":[
"Monumenten & architectuur"
],
"title":"Achtersikkel",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.053851 3.726639",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Biezekapelstraat null",
"city":"Gent"
}
},
"description":"It is difficult to believe, but less than fifty metres from the bustling Sint-Baafsplein you will find an oasis of calm: the Achtersikkel. With a little luck, your stroll past this beautiful little square with its two towers and well, will be graced by a violin solo or a piano performance by students of Ghent\u2019s music academy, which is housed here.\r\n\r\nThe Achtersikkel\u2019s name is derived from the name of rich patricians, the vander Sickelen family, who enjoyed political and social prestige and long owned the buildings around the beautiful inner courtyard. The brick corner tower belongs to the oldest part. The high round tower was built using sand-lime brick and completed with an octagonal stone belvedere in Renaissance style. The private well is proof of the original inhabitants\u2019 wealth, as few could afford such a luxury.",
"attribute":[
]
},
{
"id":"8118",
"category":[
null
],
"title":"Alison, the secret of the fallen angels",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.041910 3.726726",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Pietersplein 9",
"city":"Gent"
}
},
"description":"Raphael was found dead in St Peter\"s Abbey. An accident? Or murder? In seventeen episodes, the digital monk Alison will take you on an exciting journey through the centuries-old passages of the abbey and, with your help, will try to unravel the my",
"attribute":[
{
"text":"92439730",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Sint-Pietersabdij Gent",
"url":"http:\/\/www.sintpietersabdijgent.be\/"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8118",
"category":[
null
],
"title":"Alison, the secret of the fallen angels",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.041910 3.726726",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Pietersplein 9",
"city":"Gent"
}
},
"description":"",
"attribute":[
{
"text":"92439730",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Sint-Pietersabdij Gent",
"url":"http:\/\/www.sintpietersabdijgent.be\/"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8119",
"category":[
null
],
"title":"Arcatheater",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.057496 3.719540",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Widostraat 4",
"city":"Gent"
}
},
"description":"A theatre in a unique location at the back of the Castle of the Counts. In the bar you are literally suspended above the water.",
"attribute":[
{
"text":"92693704",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"NTGent",
"url":"www.ntgent.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8120",
"category":[
"Monumenten & architectuur"
],
"title":"University Auditorium",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.052168 3.723495",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Voldersstraat 9",
"city":"Gent"
}
},
"description":"Eight Corinthian pillars crowned with a triangular pediment. The auditorium hosts proclamations, during which degrees and honorary doctorates are presented. \r\nIn 2000, they inspired the artist Jan Fabre to create an installation which caught the attention of CNN but which received a lot of criticism in Belgium: he wrapped the columns in smoked ham. Unfortunately, the ham did not stay fresh and had to be removed earlier than planned.",
"attribute":[
]
},
{
"id":"8121",
"category":[
null
],
"title":"Baudelopark",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.058212 3.730289",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Baudelostraat null",
"city":"Gent"
}
},
"description":"In most cities the number of streets keeps on increasing. In Ghent, we get rid of them to make way for greenery. The most recent result of this future-oriented policy is the attractive Baudelopark.\r\nFacilities: large grass playing field, play area for 3 \u2013 12 year olds, basketball court for 6 \u2013 18 year olds",
"attribute":[
]
},
{
"id":"8122",
"category":[
"CityCard Gent"
],
"title":"Belfry",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.053692 3.724987",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Baafsplein null",
"city":"Gent"
}
},
"description":"The Belfry is the proudest symbol of the city\u2019s independence. \r\nThe Cloth Hall was built onto the side of the Belfry. In a euphoric Brabant Gothic style, this monument glorifies the industry to which the city owes so much. At the corner of the Cloth Hall is an old jailer\u2019s lodge.\r\n\r\nThe façade is adorned with the \u2018Mammelokker\u2019 which depicts the legend of Cimon who was condemned to starve to death. He was saved by his daughter who fed him daily from her breast (\u2018mamme\u2019: breast - \u2018lokken\u2019: suck). The Belfry is the middle of the famous three-tower row, together with the Saint Bavo\u2019s Cathedral and the Saint Nicholas\u2019 Church.",
"attribute":[
{
"text":"92333954",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"",
"url":"www.belfortgent.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8123",
"category":[
"Monumenten & architectuur"
],
"title":"Episcopal Palace",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.052755 3.728691",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Bisdomplein 2",
"city":"Gent"
}
},
"description":"Behind the Castle of Gerald the Devil looms the imposing dome of the National Bank. Opposite is the dazzlingly white Episcopal Palace. The new Wijdenaard Bridge connects the banks of the Lower Scheldt which was filled in years ago and and by 2011 it will be restored to its original glory.",
"attribute":[
]
},
{
"id":"8124",
"category":[
"Monumenten & architectuur"
],
"title":"Book Tower",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.044985 3.725801",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Rozier 9",
"city":"Gent"
}
},
"description":"Ghent\u2019s fourth tower is a modernist masterpiece by the Belgian architect Henry Van de Velde. The 64-metre concrete building has 24 floors that house more than 2 million books. It was initially conceived as a university library and fulfils that same role to this day.",
"attribute":[
{
"text":"92643851",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"",
"url":"www.boekentoren.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8125",
"category":[
"Groen Gent"
],
"title":"Campo Santo",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.062925 3.749175",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":null,
"value":"Verkortingsstraat \/ Visitatiestraat 13",
"city":null
}
},
"description":"Numerous renowned painters, sculptors and writers went to their final resting place on this 19 metre-high burial mound. However, they had to share it with the traditional Catholic bourgeoisie of Ghent who paid a lot of money to have splendidly sculpted tombs and family vaults installed there. This is a place of rest in more than one sense.",
"attribute":[
]
},
{
"id":"8126",
"category":[
null
],
"title":"Capitole",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.048110 3.732217",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Graaf van Vlaanderenplein 5",
"city":"Gent"
}
},
"description":"In recent years, this former cinema has been transformed into a Mecca for lovers of musicals. The hall can accommodate 1,500 people and stages cabaret performances, ballet, stand-up comedy, etc.",
"attribute":[
{
"text":"92332999",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"",
"url":"www.capitolegent.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8127",
"category":[
null
],
"title":"Cinema Sphinx",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.053803 3.721476",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Michielshelling 3",
"city":"Gent"
}
},
"description":"At the end of St Michael\u2019s Bridge, you will find the place for \u2018better\u2019 cinema. The pleasant brasserie next to it draws you in to sit down and have a good chat.",
"attribute":[
{
"text":"92256086",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Sphinx Gent",
"url":"www.sphinx-cinema.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8128",
"category":[
null
],
"title":"Citadelpark",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.038053 3.720461",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Citadelpark null",
"city":"Gent"
}
},
"description":"The park is named after the large-scale Citadel built on this site following the fall of Napoleon. However, this had to be moved when the park was laid as part of the World Exhibition in 1913. Today, you can enjoy its botanical richness even more thanks to the name-plates placed next to all the special trees in 2005.\r\nFacilities: park, play area for 3 \u2013 10 year olds",
"attribute":[
]
},
{
"id":"8129",
"category":[
null
],
"title":"Dampoort",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.057135 3.739942",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Dampoort null",
"city":"Gent"
}
},
"description":"The area surrounding St Bavo\u2019s Abbey is undergoing a real revival. Around the busy traffic bottleneck of Dampoort, which is also the location of Ghent\u2019s second railway station, modern office buildings and trendy residential areas are sprouting up. Dampoortstraat is the place for alternative shopping and for an unforgettable party you should ask the way to the famous Culture Club which is well-known to clubbers from afar.",
"attribute":[
]
},
{
"id":"8130",
"category":[
"CityCard Gent"
],
"title":"The World of Kina: the Garden",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.064160 3.724340",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Berouw 55",
"city":"Gent"
}
},
"description":"More than 1000 plant species, a bee colony and live tarantulas in the Garden. Children and youngsters will know where the action is. Brave parents can also tag along",
"attribute":[
{
"text":"92250542",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"",
"url":"www.dewereldvankina.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8131",
"category":[
"CityCard Gent"
],
"title":"The world of Kina: the House",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.041773 3.726527",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Pietersplein 14",
"city":"Gent"
}
},
"description":"A unique fossil of a pre-historic reptile, a splendid diorama room with native birds and a replica model of Ghent as it was 450 years ago, with sound and lighting effects. The House is a museum where your children will uncover one surprise after another.",
"attribute":[
{
"text":"92447373",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"De wereld van Kina: het Huis",
"url":"www.dewereldvankina.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8132",
"category":[
"CityCard Gent"
],
"title":"Design museum Gent",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.055637 3.720210",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Jan Breydelstraat 5",
"city":"Gent"
}
},
"description":"Behind a charming 18th-century façade lurks a modern, airy building. The central eye-catcher is the enormously tall vase by the Italian designer Andrea Branzi. Temporary expositions supplement the marvellous permanent collection. Also, take a look at the striking toilet wing, even if you don\u2019t need to pay a visit.",
"attribute":[
{
"text":"92679999",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Design Museum Gent",
"url":"www.designmuseumgent.be"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8133",
"category":[
"Monumenten & architectuur"
],
"title":"The Castle of Gerald the Devil",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.052061 3.728382",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Geraard de Duivelstraat 1",
"city":"Gent"
}
},
"description":"<p>Despite the name and its grim appearance, the devil has never resided in this 13th-century fortress. Through the centuries, it has been used as a knights’ residence, an arsenal, a monastery, a school and a bishop’s seminary. In 1623, it became a madhouse for the mentally ill and a home for male orphans. Another part of the building was used as a prison or detention centre. Since the beginning of the twentieth century, it has been home to the State Archives.<\/p>\r\n<p><a href=\"http:\/\/arch.arch.be\/component\/option,com_rab_instellingen\/task,view\/id,18\/Itemid,177\/lang,en_GB\/\" target=\"_blank\">http:\/\/arch.arch.be\/component\/option,com_rab_instellingen\/task,view\/id,18\/Itemid,177\/lang,en_GB\/<\/a><\/p>\r\n",
"attribute":[
{
"text":"92251338",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
}
]
},
{
"id":"8134",
"category":[
"Uitgaan"
],
"title":"Glass Alley",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.049395 3.731280",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Pieter Vanderdoncktdoorgang null",
"city":"Gent"
}
},
"description":"This street is a protected heritage site, which means you always have an excuse to go and take a look. The fact that the girls give you a friendly smile from behind their windows is a pleasant bonus.",
"attribute":[
]
},
{
"id":"8135",
"category":[
"TOP"
],
"title":"Graslei and Korenlei",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.055105 3.720961",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Graslei null",
"city":"Gent"
}
},
"description":"Ask ten inhabitants of Ghent what the most beautiful place in their city is and nine will answer the Graslei. Today this medieval port with its unique row of historical buildings, which are reflected in the long river, is the meeting place par excellence. Young and old, inhabitant and visitor, everyone meets on one of the many café patios or simply by the water. This is the thriving heart of the inner city.\r\nThe house of the Grain Weighers, the Guildhall of the Free Boatmen, the Spijker\u2026 every house on the Graslei has its own history. Together they form the story of the incredible blossoming of Ghent\u2019s economy during the Middle Ages. On the other side of the water is the Korenlei. All that remains of some of the original buildings is the outer walls! Behind them is a brand new hotel.",
"attribute":[
]
},
{
"id":"8136",
"category":[
"CityCard Gent"
],
"title":"Castle of the Counts",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.056943 3.721242",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},
"address":{
"postal":"9000",
"value":"Sint-Veerleplein 11",
"city":"Gent"
}
},
"description":"<p>‘I’ll show them who’s boss’: that’s what Philip of Alsace had in mind. So he had the imposing castle rebuilt (1180). Overlooking the city from its battlements high up on the keep, one can sense the feeling of wealth and power that the lord of the castle must have had.<\/p>\r\n<p>Thanks to the movie guide, a unique, interactive computer-controlled guide, this remote history really comes to life. On certain weekends, you may even meet some real knights.<\/p>\r\n",
"attribute":[
{
"text":"92259306",
"term":"Tel",
"tplIdentifier":"#Citadel_telephone",
"type":"tel"
},
{
"text":{
"title":"Gravensteen Gent",
"url":"www.gent.be\/eCache\/THE\/1\/464.cmVjPTQ0MTM5.html"
},
"term":"url",
"tplIdentifier":"#Citadel_website",
"type":"url"
}
]
},
{
"id":"8137",
"category":[
null
],
"title":"Great Beguinage St\u2013Elizabeth ",
"location":{
"point":{
"term":"centroid",
"pos":{
"posList":"51.056960 3.747970",
"srsName":"http:\/\/www.opengis.net\/def\/crs\/EPSG\/0\/4326"
}
},