-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenDay.json
15798 lines (15798 loc) · 882 KB
/
OpenDay.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
{
"id": 7,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 16:00:00",
"active": 1,
"cover_image": "",
"type": "U",
"description": "July Undergraduate Open Day ",
"topics": [
{
"id": 38,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/topics\/General.jpg",
"name": "General",
"description": " ",
"programs": [
{
"id": 2818,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 2,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 15:15:00",
"cover_image": "",
"title": "Tours of Cathays Park Campus (in English)",
"description": "Why not take a walking tour around the Cathays Park Campus with one of our student guides? There will be plenty of time to ask questions and it\u2019s the ideal way to find out more about the academic and social facilities in different areas of the campus. Each tour lasts approximately 45 minutes. \r\n\r\nPlease note that we are also offering tours of the Cathays Park Campus in Welsh at 10.00am and 1.00pm.",
"description_short": "A student-guided 45 minute walking tour around the campus.",
"floor": "",
"room": "Horseshoe Drive, front of Main Building",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 2,
"type": "Tour",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2828,
"open_day_id": 7,
"location_id": 117,
"school_id": null,
"topic_id": 38,
"programme_type_id": 5,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "University Chaplaincies - Anglican and Methodist Chaplaincy",
"description": "The Chaplaincy Team currently has Christian (Anglican, Eastern Christian, Methodist and Roman Catholic), Jewish, Hindu and Muslim chaplains. Regardless of your faith background, we are here for all our students. Chaplaincy staff and current students will be available to answer questions about faith communities, student societies and university life in general. We can also provide information about opportunities for students to engage socially and to explore faith and spirituality whilst at University. ",
"description_short": "Information about opportunities for students to engage socially and to explore faith and spirituality whilst at University. ",
"floor": "",
"room": "61 Park Place ",
"location": {
"id": 117,
"latitude": 51.489135,
"longitude": -3.180935,
"active": 1,
"title": "University Chaplaincy",
"description": "",
"address": "61 Park Place, Cathays",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": null,
"website": "https:\/\/intranet.cardiff.ac.uk\/students\/on-campus\/services-and-facilities\/view\/university-chaplaincy",
"accessible": 1,
"parking": 0,
"bike_parking": 0,
"tags": "[4]"
},
"programType": {
"id": 5,
"type": "Advice",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2829,
"open_day_id": 7,
"location_id": 29,
"school_id": null,
"topic_id": 38,
"programme_type_id": 5,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "University Chaplaincies - Catholic Chaplaincy",
"description": "The Chaplaincy Team currently has Christian (Anglican, Eastern Christian, Methodist and Roman Catholic), Jewish, Hindu and Muslim chaplains. Regardless of your faith background, we are here for all our students. Chaplaincy staff and current students will be available to answer questions about faith communities, student societies and university life in general. We can also provide information about opportunities for students to engage socially and to explore faith and spirituality whilst at University. ",
"description_short": "Information about opportunities for students to engage socially and to explore faith and spirituality whilst at University. ",
"floor": "",
"room": "Newman Hall, Colum Road ",
"location": {
"id": 29,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "University Catholic Chaplaincy",
"description": "Newman Hall is situated on Colum Road and is home to the Cardiff University Catholic Chaplaincy.",
"address": "Newman Hall, 162 Colum Road",
"postcode": "CF10 3UN",
"campus_id": 1,
"cover_image": "https:\/\/photos2.spareroom.co.uk\/images\/flatshare\/listings\/large\/47\/76\/47760157.jpg",
"website": "https:\/\/intranet.cardiff.ac.uk\/students\/on-campus\/services-and-facilities\/view\/university-chaplaincy",
"accessible": 1,
"parking": 0,
"bike_parking": 0,
"tags": "[\"4\"]"
},
"programType": {
"id": 5,
"type": "Advice",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2772,
"open_day_id": 7,
"location_id": 4,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 09:40:00",
"cover_image": "",
"title": "Why Study at Cardiff University?",
"description": "As Wales\u2019 only Russell Group university, Cardiff has much to offer. From research excellence and on-going campus investment, to our capital city location and active Students\u2019 Union, this talk will cover what makes Cardiff University such an exciting place to study.",
"description_short": "This talk will cover what makes Cardiff University such an exciting place to study.",
"floor": "",
"room": "John Pryde Lecture Theatre ",
"location": {
"id": 4,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "Sir Martin Evans Building",
"description": "Water refill locations:\r\n\r\nGround Floor \r\n- Outside C\/0.05 ",
"address": "Museum Avenue",
"postcode": "CF10 3AX",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/SirMartinEvansBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/sir-martin-evans-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2781,
"open_day_id": 7,
"location_id": 4,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 09:40:00",
"cover_image": "",
"title": "UCAS and Applying to University",
"description": "Offering guidance on key dates and the personal statement, our 'UCAS and Applying' talk provides a useful insight into the application process.",
"description_short": "Our 'UCAS and Applying' talk provides a useful insight into the application process.",
"floor": "",
"room": "Physiology 'A' Lecture Theatre",
"location": {
"id": 4,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "Sir Martin Evans Building",
"description": "Water refill locations:\r\n\r\nGround Floor \r\n- Outside C\/0.05 ",
"address": "Museum Avenue",
"postcode": "CF10 3AX",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/SirMartinEvansBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/sir-martin-evans-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2803,
"open_day_id": 7,
"location_id": 40,
"school_id": null,
"topic_id": 38,
"programme_type_id": 5,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 12:00:00",
"cover_image": "",
"title": "Postgrad Caf\u00e9",
"description": "Join us at our Postgrad Caf\u00e9 to find out more about postgraduate funding opportunities for September 2019.\r\n\r\nAt the Postgrad Caf\u00e9, you\u2019ll be able to ask questions and discuss your options over coffee with the Postgraduate Team and some of our current students. however, there won\u2019t be any academic staff in attendance at the event. The event will also include a funding talk to provide you with further information.\r\n",
"description_short": "Join us at our Postgrad Caf\u00e9 to find out more about postgraduate funding opportunities for September 2019.\r\n",
"floor": "Ground Floor",
"room": "Postgraduate Teaching Centre",
"location": {
"id": 40,
"latitude": 51.49161,
"longitude": -3.18453,
"active": 1,
"title": "Cardiff Business School Postgraduate Teaching Centre",
"description": "The Postgraduate Teaching Centre houses Cardiff Business School's growing postgraduate education programmes.",
"address": "Colum Road, Cathays",
"postcode": "CF10 3EU",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/Cardiff BusinessSchoolPostgraduateTeachingCentre.jpg",
"website": "https:\/\/intranet.cardiff.ac.uk\/students\/on-campus\/university-buildings\/view\/postgraduate-teaching-centre",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[1,5]"
},
"programType": {
"id": 5,
"type": "Advice",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2804,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 8,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "Open Day Exhibition (VJ Gallery)",
"description": "* Please note this exhibition takes place across two locations in Main Building.\r\nLearn about the variety of support services and the exciting range of additional opportunities available at Cardiff to enhance your student experience. Our drop-in advice shops give you the chance to ask our expert staff any questions that you may have. Exhibitions include UCAS and Applying, Residences, Supporting Students with Disabilities, International Student Enquiries and Residence Life.",
"description_short": "Exhibitions for Open Day",
"floor": "Ground Floor",
"room": "VJ Gallery ",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 8,
"type": "Display",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2805,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 8,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "Open Day Exhibition (Council Chamber)",
"description": "* Please note this exhibition takes place across two locations in Main Building.\r\nLearn about the variety of support services and the exciting range of additional opportunities available at Cardiff to enhance your student experience. Our drop-in advice shops give you the chance to ask our expert staff any questions that you may have. Exhibitions include Student Finance, Libraries and IT Facilities, Languages for All and Welsh for All, Global Opportunities, The City of Cardiff, Careers and Employability, Coleg Cymraeg Cenedlaethol, Sports and Exercise and Police Student Volunteers.",
"description_short": "Exhibitions for Open Day",
"floor": "First Floor",
"room": "Council Chamber",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 8,
"type": "Display",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2806,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 9,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "Cardiff Films... (in English) with Free Popcorn!",
"description": "If you would like to find out more about the University, our student residences and the city, don\u2019t just take our word for it - come and enjoy free popcorn and watch our student-led films being shown throughout the day:\r\n\u2022 Cardiff University Residences (4 mins)\r\n\u2022 Cardiff: The City (1 min)\r\n\u2022 Sport at Cardiff University (1 min)\r\n\u2022 A Student Tour (1 min)\r\n\u2022 Cardiff: One of the top 10 most beautiful universities in the UK (1 min)\r\n\u2022 Student Life at Cardiff University (3 mins)\r\n\u2022 Global Opportunities (2 mins)\r\n\u2022 Centre for Student Life (2 mins)",
"description_short": "Find out more about the university through some short films.",
"floor": "Car Park",
"room": "Film Marquee, Car Park, Main Building",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 9,
"type": "Film",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2807,
"open_day_id": 7,
"location_id": 5,
"school_id": null,
"topic_id": 38,
"programme_type_id": 9,
"start_time": "2019-07-05 09:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "Cardiff Films\u2026 (in Welsh) with Free Popcorn!",
"description": "If you would like to find out more about the University, our student residences and the city, don\u2019t just take our word for it - come and enjoy free popcorn and watch our student-led films being shown throughout the day:\r\n\u2022 Cardiff University Residences (4 mins)\r\n\u2022 Cardiff: The City (2 min)\r\n\u2022 Sport at Cardiff University (1 min)\r\n\u2022 A Student Tour (2 min)\r\n\u2022 Cardiff: One of the top 10 most beautiful\r\nuniversities in the UK (2 min)\r\n\u2022 Student Life at Cardiff University (3 mins)\r\n\u2022 Global Opportunities (2 mins)\r\n\u2022 Centre for Student Life (5 mins)",
"description_short": "Find out more about the University through some short films in Welsh.",
"floor": "Third Floor",
"room": "The Sir Donald Walters Boardroom, The Lounge",
"location": {
"id": 5,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "Students' Union",
"description": "Our Students\u2019 Union is rated as one of the top 3 in the UK, according to the Whatuni Student Choice Awards 2019.",
"address": "Park Place",
"postcode": "CF10 3QN",
"campus_id": null,
"cover_image": "https:\/\/cardiff.imgix.net\/__data\/assets\/image\/0010\/48349\/Students-union.jpg?w=575&ar=16:9",
"website": "",
"accessible": 0,
"parking": 0,
"bike_parking": 0,
"tags": "null"
},
"programType": {
"id": 9,
"type": "Film",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2821,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 2,
"start_time": "2019-07-05 09:30:00",
"end_time": "2019-07-05 10:20:00",
"cover_image": "",
"title": "City Tours",
"description": "If you are new to the city of Cardiff, why not take a coach tour of the city centre and its sights? You will see Cardiff\u2019s magnificent civic buildings (of which the University is a key part), Cardiff Castle, the iconic Principality Stadium and Cardiff Bay. Each tour lasts approximately 50 minutes. Please note, demand tends to be busier in the afternoon.",
"description_short": "A 50min bus tour of the city.",
"floor": "",
"room": "Coaches depart from the front of Main Building, Museum Avenue",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 2,
"type": "Tour",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2819,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 2,
"start_time": "2019-07-05 10:00:00",
"end_time": "2019-07-05 10:45:00",
"cover_image": "",
"title": "Cathays Park Campus Tours in Welsh",
"description": "Welsh medium tours of the campus will take place at 10.00am and 1.00pm",
"description_short": "A student-guided 45 minute walking tour around the campus.",
"floor": "",
"room": "Horseshoe Drive, front of Main Building",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 2,
"type": "Tour",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2827,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 2,
"start_time": "2019-07-05 10:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "University Libraries",
"description": "You are welcome to visit any of the University libraries today. Our libraries are located across the Cathays and Heath Park Campuses and each specialises in particular subjects. ",
"description_short": "Take a tour of our libraries.",
"floor": "",
"room": "Refer to programme for other locations",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 2,
"type": "Tour",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2773,
"open_day_id": 7,
"location_id": 4,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 10:00:00",
"end_time": "2019-07-05 10:40:00",
"cover_image": "",
"title": "Why Study at Cardiff University?",
"description": "As Wales\u2019 only Russell Group university, Cardiff has much to offer. From research excellence and on-going campus investment, to our capital city location and active Students\u2019 Union, this talk will cover what makes Cardiff University such an exciting place to study.",
"description_short": "This talk will cover what makes Cardiff University such an exciting place to study.",
"floor": "",
"room": "John Pryde Lecture Theatre ",
"location": {
"id": 4,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "Sir Martin Evans Building",
"description": "Water refill locations:\r\n\r\nGround Floor \r\n- Outside C\/0.05 ",
"address": "Museum Avenue",
"postcode": "CF10 3AX",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/SirMartinEvansBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/sir-martin-evans-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2782,
"open_day_id": 7,
"location_id": 4,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 10:00:00",
"end_time": "2019-07-05 10:40:00",
"cover_image": "",
"title": "UCAS and Applying to University",
"description": "Offering guidance on key dates and the personal statement, our 'UCAS and Applying' talk provides a useful insight into the application process.",
"description_short": "Our 'UCAS and Applying' talk provides a useful insight into the application process.",
"floor": "",
"room": "Physiology 'A' Lecture Theatre",
"location": {
"id": 4,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "Sir Martin Evans Building",
"description": "Water refill locations:\r\n\r\nGround Floor \r\n- Outside C\/0.05 ",
"address": "Museum Avenue",
"postcode": "CF10 3AX",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/SirMartinEvansBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/sir-martin-evans-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2791,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 10:00:00",
"end_time": "2019-07-05 10:40:00",
"cover_image": "",
"title": "Funding a Healthcare-related Course",
"description": "Come along and find out about the funding currently available for Nursing, Midwifery, Physiotherapy, Occupational Therapy, Operating Department Practice, Radiography, Radiotherapy and Dental Therapy and Hygiene courses. (Please note, the main Student Finance talk covers Medicine and Dentistry up to the fourth year of the course. NHS funding currently applies from the fifth year of these courses.)",
"description_short": "Find out more about funding currently available for Healthcare-related courses.",
"floor": "Lower Ground Floor",
"room": "Large Shandon Lecture Theatre",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2800,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 10:00:00",
"end_time": "2019-07-05 10:40:00",
"cover_image": "",
"title": "Defnyddio dy Gymraeg yn y Brifysgol - Using your Welsh at University",
"description": "Find out how you can use your Welsh language skills at University. Scholarships are available to study in Welsh. Learn about opportunites for Welsh speaking students such as the Coleg Cymraeg, jobs, ambassadorships, opportunities to blog, the Welsh Students' Union (UMCC), Students' Union Media and much more!",
"description_short": "Find out more about our provision for Welsh speakers",
"floor": "First Floor",
"room": "Beverton Lecture Theatre",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2802,
"open_day_id": 7,
"location_id": 43,
"school_id": null,
"topic_id": 38,
"programme_type_id": 5,
"start_time": "2019-07-05 10:00:00",
"end_time": "2019-07-05 16:00:00",
"cover_image": "",
"title": "Widening Participation Drop-in Session",
"description": "We offer support to a wide range of under-represented groups in Higher Education prior to applying to university, including: \n- Asylum Seekers\n- Looked after Children and Care Leavers\n- Estranged Students\n- Forces Veterans\n- Lesbian, Gay, Bisexual, Trans(gender)\n- Mature Students\n- Student Carers\n- Student Parents\n\nIf you fall under one of these categories please feel free to drop in and meet with the Widening Participation Team, we can provide:\n- Individual pathway planning to help you make important decisions about university\n- Tailored advice on making the most out of an Open Day\n- Support and advice on the process of applying to university\n",
"description_short": "Drop-in support for students from under-represented groups.",
"floor": "Ground Floor",
"room": "Foyer, Hadyn Ellis Building ",
"location": {
"id": 43,
"latitude": 51.492216,
"longitude": -3.18295,
"active": 1,
"title": "Hadyn Ellis Building",
"description": "The Hadyn Ellis building is named in honour of the late University Deputy Vice-Chancellor, Professor Hadyn Ellis. The ground floor includes an attractive public area for lectures, displays and conferences about the University\u2019s work and a 150-person lecture theatre. The building has been recognised for its sustainability and was awarded the Higher Education category of the Building Research Establishment Environmental Assessment Method BREEAM) Awards Wales in 2012.\r\n\r\nWater refill locations:\r\n\r\nGround Floor \r\n- Between the toilets (rooms 0.29 and 0.30)\r\n- Coffee Shop",
"address": "Maindy Road",
"postcode": "CF24 4HQ",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/HadynEllis.jpg",
"website": "https:\/\/intranet.cardiff.ac.uk\/students\/on-campus\/university-buildings\/view\/hadyn-ellis-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 5,
"type": "Advice",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2822,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 2,
"start_time": "2019-07-05 10:30:00",
"end_time": "2019-07-05 11:20:00",
"cover_image": "",
"title": "City Tours",
"description": "If you are new to the city of Cardiff, why not take a coach tour of the city centre and its sights? You will see Cardiff\u2019s magnificent civic buildings (of which the University is a key part), Cardiff Castle, the iconic Principality Stadium and Cardiff Bay. Each tour lasts approximately 50 minutes. Please note, demand tends to be busier in the afternoon.",
"description_short": "A 50min bus tour of the city.",
"floor": "",
"room": "Coaches depart from the front of Main Building, Museum Avenue",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 2,
"type": "Tour",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2774,
"open_day_id": 7,
"location_id": 4,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 11:00:00",
"end_time": "2019-07-05 11:40:00",
"cover_image": "",
"title": "Why Study at Cardiff University?",
"description": "As Wales\u2019 only Russell Group university, Cardiff has much to offer. From research excellence and on-going campus investment, to our capital city location and active Students\u2019 Union, this talk will cover what makes Cardiff University such an exciting place to study.",
"description_short": "This talk will cover what makes Cardiff University such an exciting place to study.",
"floor": "",
"room": "John Pryde Lecture Theatre ",
"location": {
"id": 4,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "Sir Martin Evans Building",
"description": "Water refill locations:\r\n\r\nGround Floor \r\n- Outside C\/0.05 ",
"address": "Museum Avenue",
"postcode": "CF10 3AX",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/SirMartinEvansBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/sir-martin-evans-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2778,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 11:00:00",
"end_time": "2019-07-05 11:40:00",
"cover_image": "",
"title": "Disability & Dyslexia Service ",
"description": "Find out the importance of telling us about your disability during the application process and learn about the type of support and adjustments available at Cardiff University.",
"description_short": "Learn more about the types of support and adjustments available at Cardiff University.",
"floor": "",
"room": "Wallace Lecture Theatre",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2783,
"open_day_id": 7,
"location_id": 4,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 11:00:00",
"end_time": "2019-07-05 11:40:00",
"cover_image": "",
"title": "UCAS and Applying to University",
"description": "Offering guidance on key dates and the personal statement, our 'UCAS and Applying' talk provides a useful insight into the application process.",
"description_short": "Our 'UCAS and Applying' talk provides a useful insight into the application process.",
"floor": "",
"room": "Physiology 'A' Lecture Theatre",
"location": {
"id": 4,
"latitude": 51,
"longitude": -3,
"active": 1,
"title": "Sir Martin Evans Building",
"description": "Water refill locations:\r\n\r\nGround Floor \r\n- Outside C\/0.05 ",
"address": "Museum Avenue",
"postcode": "CF10 3AX",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/SirMartinEvansBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/sir-martin-evans-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2788,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 11:00:00",
"end_time": "2019-07-05 11:40:00",
"cover_image": "",
"title": "Student Finance",
"description": "Come along and find out about the funding currently available for our full-time Undergraduate degrees (excluding Healthcare \u2013 related courses). Covering important topics ranging from the funding available from Student Finance Wales and England to information on the cost of living in Cardiff, our experienced team are on-hand to address financial matters in this interactive session.",
"description_short": "Our experienced team are on-hand to address financial matters in this interactive session.",
"floor": "Lower Ground Floor",
"room": "Large Shandon Lecture Theatre",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2797,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 3,
"start_time": "2019-07-05 11:00:00",
"end_time": "2019-07-05 11:40:00",
"cover_image": "",
"title": "Languages for All, Welsh for All and Global Opportunities",
"description": "\u25cf Whether continuing a language or learning a new one from scratch, our flexible Languages for All and Welsh for All schemes offer the opportunity to develop your language skills alongside your degree, for free!\n\u25cf Interested in studying, working or volunteering abroad whilst you are a Cardiff student? Our Global Opportunities Team will talk you through the wide range of opportunities available, as well as exploring the benefits of international experience.",
"description_short": "Find out more about the extra-curricular languages and travelling opportunities available while studying at Cardiff University.",
"floor": "First Floor",
"room": "Beverton Lecture Theatre",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 3,
"type": "Talk",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2823,
"open_day_id": 7,
"location_id": 3,
"school_id": null,
"topic_id": 38,
"programme_type_id": 2,
"start_time": "2019-07-05 11:30:00",
"end_time": "2019-07-05 12:20:00",
"cover_image": "",
"title": "City Tours",
"description": "If you are new to the city of Cardiff, why not take a coach tour of the city centre and its sights? You will see Cardiff\u2019s magnificent civic buildings (of which the University is a key part), Cardiff Castle, the iconic Principality Stadium and Cardiff Bay. Each tour lasts approximately 50 minutes. Please note, demand tends to be busier in the afternoon.",
"description_short": "A 50min bus tour of the city.",
"floor": "",
"room": "Coaches depart from the front of Main Building, Museum Avenue",
"location": {
"id": 3,
"latitude": 51.48783,
"longitude": -3.178182,
"active": 1,
"title": "Main Building (Park Place) ",
"description": "Main Building - Architect W.D. Caroe sought to combine the charm and elegance of his former college (Trinity College, Cambridge) with the picturesque balance of many of the University of Oxford colleges. Building work on the Main Building commenced in 1905 and was completed in many stages, the first in 1909. Money ran short for this project, however, and although the side-wings were completed in the 1960s the planned Great Hall has never been built.\r\n\r\nWater refill locations: \r\n\r\nGround Floor \r\n- Room 0.91 North corridor\u00a0\r\n\r\n1st Floor \r\n- Room 1.75 next to the male toilets\r\n- Opposite Council Chamber near Library\r\n- Inside the cafe\r\n",
"address": "Park Place",
"postcode": "CF10 3AT",
"campus_id": 1,
"cover_image": "https:\/\/opendaydata.cardiff.ac.uk\/images\/locations\/MainBuilding.jpg",
"website": "https:\/\/www.cardiff.ac.uk\/visit\/accessibility\/cathays-park-campus\/main-building",
"accessible": 1,
"parking": 0,
"bike_parking": 1,
"tags": "[\"2\",\"1\"]"
},
"programType": {
"id": 2,
"type": "Tour",
"type_colour": "#ebe9e1"
},
"school": false
},
{
"id": 2801,
"open_day_id": 7,
"location_id": 43,
"school_id": null,
"topic_id": 38,
"programme_type_id": 5,
"start_time": "2019-07-05 11:30:00",
"end_time": "2019-07-05 12:30:00",
"cover_image": "",