-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotaniemi.yml
1499 lines (1483 loc) · 43 KB
/
otaniemi.yml
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
# The R-numbers come from the Aalto map.
buildings:
# Main
- id: main
osm: 4252946
osm_meta: rel=4148
aliases: [R001, A, H, M, U, Y, Kandi, Main Building]
label: Main
note: >
This building is large and confusing, but has reasonable
maps inside. Make sure you know the wing (letter) of the
place you are going (not the same as entrance letters or lecture
hall letters!). In general, single letters are lecture halls
that could be anywhere (use the maps), letter+number (e.g. Y123)
is within that wing, and company names are lecture
halls in U-wing. Also, not everything connected on the upper
levels: go to your wing first, then go up.
lore: >-
In 2016, this became the undergraduate center. Previously, it
was known as many things, among them the "main building". Now,
ACRE decided that Dipoli would be the main building. This has
made the name "main building" completly useless: if you ever say
this, people will first think of this building, and maybe Dipoli
second. We all just agree that this will always be the main
building, and Dipoli is always called Dipoli.
children:
- id: alvari
osm: node=301814516
type: restaurant
- name: Silinteri
type: restaurant
osm: node=5034218017
note: >-
This is a "staff restaurant". No student discount and
slightly more expensive, and extremely limited seating, but
theoretically anyone can eat here.
- name: Aino cafe
type: cafe
osm: node=5004956486
- name: Elissa cafe
type: cafe
osm: node=5004956487
- name: IT Services
type: unit
parents: [U]
- name: IT Service Desk Kandi
id: servicedesk_kandi
latlon: [60.18692, 24.82891]
type: service
opening_hours: Mo-We 09:00-11:00, 12:00-15:00; Th-Fr 09:00-11:00, 12:00-14:00
url: https://www.aalto.fi/en/services/it-service-desk-contact-information-and-service-hours
ref: U133a
level: 0
- id: hr-servicepoint
name: HR service point
name_fi: HR-palvelupiste
type: service
latlon: [60.186368, 24.828576]
url: https://www.aalto.fi/en/services/human-resource-hr-services-contact-details
ref: Y195
level: 0
opening_hours: Tu-Th 12:00-15:00; PH off
- id: startingpoint
name: Starting Point, Student services
name_fi: Starting Point, Opiskelijapalvelut
name_sv: Starting Point, Studerandeservice
type: service
latlon: [60.18655, 24.82870]
ref: Y199a
level: 0
opening_hours: Mo-Th 12:00-15:00; PH off
- id: languagecenter
name: Language center
name_fi: Kielikeskus
name_sv: Språkcentret
type: service
latlon: [60.18698, 24.82870]
ref: U219
level: 1
- id: studenthub
osm: 514232691
type: location
- id: A
name: A siipi Main
name_en: A wing Main
name_sv: A flygeln Main
osm: 514232744
type: wing
lore: >-
Originally from "arkkitehtuuri", the architecture department. Alvar Aalto,
the architect who designed the building, only used white marble for this
wing and the library to symbolize these being the only civilized parts of
campus.
- id: H
name: H siipi Main
name_en: H wing Main
name_sv: H flygeln Main
osm: 514232720
type: wing
note: >-
This is practically above Alvari. Go up to the second or
third floors from the lobby, then over to it.
lore: >-
"H" stands for "hallinto", the original administration wing.
Note how you symbolically ascend the stairs to get to it.
# Not named "K" because that might be confused with kirjasto?
- id: main-kwing
name: K siipi Main
name_en: K wing Main
name_sv: K flygeln Main
osm: 540151861
type: wing
note: >-
This wing is almost impossible to find. From the outside,
use the door to the south of the main entrance, (up some
exterior stairs). From the inside, you have to go either up
or down from the Alvari restaurant, and connect from either
the 0th or 2nd floor. Good luck!
lore: >-
Perhaps "K" stands for "Kirjaamo", or the Aalto Registry.
- id: M
name: M siipi Main
name_en: M wing Main
name_sv: M flygeln Main
osm: 514232739
type: wing
lore: >-
Originally from "maanmittaus" (surveying).
- id: U
name: U siipi Main
name_en: U wing Main
name_sv: U flygeln Main
osm: 514232732
type: wing
lore: >-
The "U" comes from "uusi" (new) - the new part of the building.
- id: Y
name: Y siipi Main
name_en: Y wing Main
name_sv: Y flygeln Main
osm: 514232725
type: wing
lore: >-
Originally from "yleinen" (general), for the "general department" that
was located in this wing. Math used to be part of the general department,
and it's just coincidence that the math department is in the M-wing now.
# Civil Engineering
- id: r002
osm: 7579330
label: R
aliases: [R002, R]
# NBE / (physics)
- id: F
osm: 98855202
osm_meta: rel=1402504
aliases: [R003, F, F-talo, F-building]
label: F
note: >-
To get to NBE, you must enter through the C door on Rakentajanaukio. To get to
lecture rooms and restaurants, use the A door on Otakaari. Internal connection only
for staff.
lore: >-
Originally the Applied Physics (Fysiikka) building. Physics has moved long-ago,
and apparently in 2015 was renamed "Health Technology House" without any of the
occupants knowing, but we will always call it the F-building.
children:
- name: Kvarkki
osm: node=577022359
type: restaurant
# A grid / ELEC building
- id: agrid
osm: 24342454
aliases: [R004, A-grid, Vanha Sähkötekniikka, Old Electrical Engineering]
label: A Grid
name: A Grid
note: >-
2016 and earlier, this used to be the School of Electrical
Engineering main building. During 2017, it was renovated as a
new start-up hub, "A Grid", and the old Electrical Engineering
departments mostly moved to other places.
children:
- id: factory
osm: node=5012868028
type: restaurant
- id: agrid-havajava
osm: node=5389688275
type: cafe
# Website non-functional, moved? Needs verification
# https://elepaja.fi/yhteystiedot
#- name: Elepaja
# id: elepaja
# room: I131
# type: service
# url: https://elepaja.aalto.fi
- name: Acoustics Laboratory
id: acousticslab
type: unit
latlon: [60.1887, 24.8313]
url: http://acousticslab.aalto.fi/en/
- name: Tapaus
id: agrid-tapaus
type: unit
parents: [agrid-CN]
level: 1
url: https://www.tapaus.fi/
- name: A Grid Impact
id: agrid-agridimpact
type: unit
parents: [agrid-CN]
level: 2
- name: United Nations Technology Innovanion Labs
id: agrid-until
aliases: [UNTIL, ]
type: unit
parents: [agrid-CN]
level: 0
- name: Aalto Start-up center
id: agrid-startupcenter
type: unit
parents: [agrid-CS]
url: https://startupcenter.aalto.fi/
- name: European Space Agency
id: agrid-esa
aliases: [ESA, ]
type: unit
parents: [agrid-CS]
level: 2
- name: AMI-Centre
id: ami-center
parents: [agrid-I]
type: unit
url: http://ani.aalto.fi/en/ami_centre/
level: 1
- name: Aalto TMS
id: ami-center
parents: [agrid-I]
type: unit
url: http://ani.aalto.fi/en/ami_centre/
level: 3
- name: Aalto Behavorial Laboratory
id: ami-center
parents: [agrid-I]
type: unit
url: http://ani.aalto.fi/en/ami_centre/
level: 3
# A grid wings
- id: agrid-A
name_en: A wing (A Grid)
osm: 97545820
type: wing
- id: agrid-B
name_en: B wing (A Grid)
osm: 558799732
type: wing
- id: agrid-CN
name_en: CN wing (A Grid)
osm: 558799726
type: wing
- id: agrid-CS
name_en: CS wing (A Grid)
osm: 558799727
type: wing
- id: agrid-D
name_en: D wing (A Grid)
osm: 558799725
type: wing
- id: agrid-EN
name_en: EN wing (A Grid)
osm: 558799722
type: wing
- id: agrid-ES
name_en: ES wing (A Grid)
osm: 558799724
type: wing
- id: agrid-K
name_en: K wing (A Grid)
osm: 558799723
type: wing
- id: agrid-F
name_en: F wing (A Grid)
osm: 24342449
type: wing
- id: agrid-GN
name_en: GN wing (A Grid)
osm: 558799720
type: wing
- id: agrid-GS
name_en: GS wing (A Grid)
osm: 558799719
type: wing
- id: agrid-H
name_en: H wing (A Grid)
osm: 558799718
type: wing
- id: agrid-IS
name_en: IS wing (A Grid)
osm: 558799717
type: wing
- id: agrid-I
name_en: I wing (A Grid)
osm: 558799716
type: wing
aliases: [Magneettitalo, Magnet House]
#- id: agrid-J # This is a corridor - add later maybe?
# name_en: J wing A Grid
# osm:
# type: wing
- id: agrid-L
name_en: L wing (A Grid)
osm: 24342453
type: wing
# K4, Sähkömiehentie 4
- id: K4
osm: 7584026
aliases: [R005]
label: K4
# K3, Puumiehenkuja 5
- id: K3
osm: 156903284
aliases: [R006]
label: K3
children:
- id: designfactory
type: unit
osm: node=11107521668
name: Aalto Design Factory
aliases: [ADF]
url: https://designfactory.aalto.fi/
- name: Startup Sauna
type: unit
id: startupsauna
# K2, Puumiehenkuja 3
- id: K2
osm: 156903282
aliases: [R007]
label: K2
# K1, Otakaari 4
- id: K1
osm: 156903276
aliases: [R008]
label: K1
children:
- id: sodexokone
osm: node=589913032
type: restaurant
# Nanotalo
- id: nanotalo
osm: 27930945
aliases: [R009]
name: Nanotalo
label: Nanotalo
- id: r010
osm: 4424188
aliases: [R010]
# Chemistry
- id: r011 # TODO: opening hours 7.45-18 academic year, 8-16 other.
osm: 7588058
aliases: [R011, Ke, CHEM]
label: Kemma
children:
- id: r011-ywing
name: A siipi Kemma
name_en: A wing Kemma
name_sv: A flygeln Kemma
osm: 532048006
type: location
- id: r011-bwing
name: B siipi Kemma
name_en: B wing Kemma
name_sv: B flygeln Kemma
osm: 532048005
type: location
- id: r011-cwing
name: C siipi Kemma
name_en: C wing Kemma
name_sv: C flygeln Kemma
osm: 532048004
type: location
- id: r011-dwing
name: D siipi Kemma
name_en: D wing Kemma
name_sv: D flygeln Kemma
osm: 532048003
type: location
- id: r011-ewing
name: E siipi Kemma
name_en: E wing Kemma
name_sv: E flygeln Kemma
osm: 532048002
type: location
- id: r011-fwing
name: F siipi Kemma
name_en: F wing Kemma
name_sv: F flygeln Kemma
osm: 532048001
type: location
# Vuori / next to chemistry
- id: r012
osm: 7588374
aliases: [R012, V]
label: Vuori
children:
- id: tasteat
osm: node=2381696675
type: restaurant
- id: space21
osm: node=9569447991
type: service
- id: r013
osm: 7588593
aliases: [R013]
name: Aalto Bioproducts Center
#- id: r014
# osm: 7588741
# aliases: [R014]
# type: otherbuilding
- id: kirjasto
osm: 4252948
aliases: [R015, Harald Herlin Learning Centre, Aalto-yliopiston kirjasto,
Main Library, Learning Center,
HH-center, HH-keskus
]
name: Library
name_fi: Kirjasto
name_en: Library
lore: >-
This used to be the main library. In 2016, it was renovated and turned
into a modern library: the "Learning Centre". Most people call it the
library still, as they should. Let's just agree that the
building is the "Otaniemi Library" and the learning center is
inside of it so that everyone can be happy.
children:
- id: bakedbyeli
osm: node=5012868053
type: cafe
- id: aaltopahvi
osm: node=6115098577
type: shopping
# Marine technology, Ice Tank
- id: r016
osm: 4259025
aliases: [R016, Aalto Ice Tank]
# Maari
- id: maari
osm: 7584131
aliases: [R017]
label: Maari
name: Maarintalo
name_en: null
- id: r018
osm: 7244238
aliases: [R018]
# Dipoli
- id: dipoli
osm: 4252954
label: Dipoli
aliases: [R019, "Fake Main Building"]
lore: >-
This was originally built for the TKK student union, but they
ran out of money partway through, so you can still see the
"stairs to nowhere" going to the third floor. The architecture
here is quite unique - search and read about it some. Aalto bought it
some time ago, and in 2017 it opened as the new administration
building. In 2017, someone decided to call this the
"Main Building", forgetting the fact that this makes the name
meaningless: Otakaari 1 is(was) the "main building", and now no
one can ever use the name "main building" without ambiguity.
We all just agree: the undergraduate center will always be the
main building, and we always call this building Dipoli.
Actually, they tried to call Lämpömiehenkuja 2 the "main
building", which absolutely no one not in the administration
paid attention to. Apparently the administration confuses
"Administration" with "Main".
children:
- id: carre
osm: node=5022009311
type: cafe
- id: reima
osm: node=5022009310
type: restaurant
notes: >-
The "student" restaurant in Dipoli.
- id: tenhola
osm: node=5022009278
type: cafe
- id: metso
osm: node=5022009279
type: restaurant
notes: >-
The "fancy" restaurant in Dipoli. Prices 20-30€.
# Old shopping center
- id: r020
osm: 7589963
aliases: [R020, Ostari]
name: A Blanc
aliases: [Otaniemen ostoskeskus, Otaniemi shopping center]
label: Shops
label_fi: Kaupat
type: auxbuilding
children:
# ATM
- id: r020-atm
aliases: [ATM]
type: service
osm: node=263964909
- id: taproomd20
osm: node=9738013085
type: restaurant
- id: shortcut
osm: node=8912114264
type: service
- id: pukupesu
osm: node=9044279913
type: service
- id: tapiolan-juhlapuku
osm: node=9044279914
type: service
- id: tervystalo-ablanc
osm: node=9044279912
name: Tervystalo A-blanc
type: service
# No building 21
# LMK2, admin
- id: r022
osm: 26608151
aliases: [R022]
type: otherbuilding
#label: Admin
#children: # closed 2017 when admin moved to dipoli
# - name: Calori
# type: restaurant
# osm: node=2071854934
- id: r023
osm: 26608177
aliases: [R023]
## MT3
#- id: r024
# osm: 27468640
# aliases: [R024, MT3]
# children:
# Design factory, Betonimiehenkuja 5
#- id: r025
# osm: 26608273
# aliases: [R025]
# label: Design Factory
# Startup Sauna
#- id: r026
# osm: 26608317
# aliases: [R026]
# label: Startup Sauna
# children:
# - name: Startup Sauna
# type: unit
# id: startupsauna
- id: r027
osm: 7588940
aliases: [R027]
# Otahalli
- id: r028
osm: 4259272
aliases: [R028]
label: Otahalli
type: auxbuilding
children:
- name: Unisport
type: service
# Old Aalto Studios
- id: r029
osm: 24342456
aliases: [R029]
name: R029
name_en: null
address: Otakaari 7
#children:
#- name: Studio Kipsari
# type: restaurant
# id: studiokipsari
# osm: node=5389688262
#- name: ELO Film School Helsinki
# type: unit
# id: elofilmschoolhelsinki
# CS
- id: T
label: "CS / T"
aliases: [R030, 'T', 'Subway Building', 'CS']
osm: 4217650
lore: >
In 2015 a Subway restaurant opened here. They added a huge sign
saying "Subway", ignoring the fact that it was bigger than any mention
that this was the CS building! We're still upset about this.
children:
- name: Paniikki
type: room
osm: 91227653
address: CS T106
- name: Sodexo
type: restaurant
id: sodexo-cs
osm: node=580704688
- id: subway_cs
type: restaurant
osm: node=3575222399
- id: library_cs
osm: node=5012868057
type: service
- id: r030-awing
name: A siipi CS
name_en: A wing CS
name_sv: A flygeln CS
osm: 532048009
type: wing
- id: r030-bwing
name: B siipi CS
name_en: B wing CS
name_sv: B flygeln CS
osm: 532048008
type: wing
- id: r030-cwing
name: C siipi CS
name_en: C wing CS
name_sv: C flygeln CS
osm: 532048007
type: wing
note: >-
The C wing is "just" the atrium and some rooms directly
connected to it.
- name: Computer Science IT
id: cs-it
aliases: [CS-IT, Aalto Scientific Computing, ASC]
type: service
latlon: [60.18691, 24.82092]
note: >
Room A243. Access is possible from the atrium area,
bridges on the second floor.
level: 1
# No R031
# Open Innovation House
- id: oih
osm: 148683540
aliases: [R032, OIH]
label: OIH
lore: >-
In 2017, ACRE rented two floors of this building to a school
with 350 students, without thinking about where they would eat.
Through no fault of their own, they overloaded the T-building
cafeteria where they were supposed to eat, and no one could get
food. How do you rent to a school without thinking about how
people will eat?
children:
- id: oih_cafe
osm: node=5012868059
type: cafe
#- id: eit_rawmaterials
# type: unit
# name: EIT RawMaterials
#- id: eit_clc
# type: unit
# name: EIT Co-Location Centre
# aliases: [CLC]
# url_en: https://masterschool.eitdigital.eu/about-us/co-location-centres/
# note: Accessible when hosted by an EIT member
# Water laboratory
- id: r034
osm: 4259026
aliases: [R034]
children:
- id: fatlizard
osm: node=5323641949
type: restaurant
# Vaisalantie 8
#- id: r035
# osm: 51725020
# aliases: [R035]
# children:
# - name: IT Services
# type: unit
# Micronova
- id: micronova
osm: 7585092
aliases: [R036]
label: Micronova
name: Micronova
children:
- name: Nanofab
type: unit
- id: maukas-nova
type: restaurant
osm: node=5081929842
note: No student discounts
- id: tuas
osm: 29012757
aliases: [R037, TU, AS]
name: TUAS
label: TUAS
children:
- name: Aalto Ventures Program
type: unit
- id: amicatuas
type: restaurant
osm: node=580706218
#- id: library_tuas does this still exist?
# type: service
# osm: node=5012868058
- id: tuas-x5xxwing
name: x5xx siipi TUAS
name_en: x5xx wing TUAS
name_sv: x5xx flygeln TUAS
osm: 532048012
type: wing
- id: tuas-x1xxwing
name: x1xx siipi TUAS
name_en: x1xx wing TUAS
name_sv: x1xx flygeln TUAS
osm: 532048011
type: wing
- id: tuas-159xwing
name: 159x siipi TUAS
name_en: 159x wing TUAS
name_sv: 159x flygeln TUAS
osm: 532048010
type: wing
note: >-
Not a real wing, but the 159x conference rooms are isolated
and hard to find if you don't know it. First floor only.
- id: tuas-sähköpaja
osm: node=6817211766
type: service
note: >-
Some wings are marked here, but numbering is not entirely
consistent. To get to 4th floor, you have to take the elevator
or stairs within the x1xx wing, not the obvious glass elevator
(just keep walking back and you'll find it)
lore: >-
If you know this building originally had the departments of
Industrial Engineering and Management (TUotantotalouden = TUTA,
still there) and Automation and Systems Technology (=AS, now merged
with others), the name makes a lot of sense.
# Student union
- id: r038
osm: 7589907
aliases: [R038, AYY]
label: AYY
name: Aalto-yliopiston ylioppilaskunta
name_en: Aalto University Student Union
children:
- id: AYY-servicepoint
name: AYY Jäsenpalvelupisteet
name_en: AYY service point
aliases: [AYY keskustoimisto, Keto]
osm: node=263978267
type: service
- id: r039
osm: 27464085
aliases: [R039]
children:
- id: panimo
osm: node=6583558878
type: restaurant
# TF
- id: r040
osm: 4252953
aliases: [R040, Urdsgjallar]
label: TF
children:
- name: Täffä
type: restaurant
osm: node=580707759
lore: >-
The only restaurant still student-owned.
# Aalto Inn
- id: r041
osm: 181643549
label: Aalto Inn
aliases: [R041]
type: auxbuilding
lore: >-
This is basically a long-term residence for Aalto-affiliated
visitors. Booking through your departments.
# Student health
- id: r042
osm: 4266890
aliases: [R042, YHTS, SHVS, FSHS]
name: Ylioppilaiden terveydenhoitosäätiö
name_sv: Studenternas hälsovårdsstiftelse
name_en: Finnish Student Health Service
type: auxbuilding
# Chappel
- id: chappel
osm: 4266572
aliases: [R043]
type: auxbuilding
# Servin Mökki
- id: servinmokki
osm: 4259265
aliases: [R044]
Label: Smökki
type: auxbuilding
# Rantasauna
- id: rantasauna
osm: 26139146
aliases: [R045]
type: auxbuilding
# Radisson blu
- id: radisonblu
label: Radisson Blu
osm: 4259289
aliases: [R056]
type: auxbuilding
children:
- id: ravintolaranta
osm: node=2071892285
type: restaurant
# Valimo
- id: r059
name: Valimo
label: Valimo
osm: 7588897
type: auxbuilding
# Väre
- id: vare
osm: 941553968
aliases: [R067, "School of Arts, Design and Architecture"]
label: Väre
name: Väre
name_en: null
children:
- id: cafetoria
osm: node=5871819459
type: cafe
- id: Kipsari
osm: node=5880866308
type: restaurant
- name: IT Service Desk Väre
id: servicedesk_vare
opening_hours: Mo-We 09:00-11:00, 12:00-15:00
url: https://www.aalto.fi/en/services/it-service-desk-contact-information-and-service-hours
type: service
latlon: [60.18557, 24.82412]
address: Room R101
level: 0
- {id: vare-E, type: wing, name: E wing Väre, osm: 815467140}
- {id: vare-F, type: wing, name: F wing Väre, osm: 815467141}
- {id: vare-G, type: wing, name: G wing Väre, osm: 815467148}
- {id: vare-J, type: wing, name: J wing Väre, osm: 815467143}
- {id: vare-K, type: wing, name: K wing Väre, osm: 815467142}
- {id: vare-L, type: wing, name: L wing Väre, osm: 815467139}
- {id: vare-M, type: wing, name: M wing Väre, osm: 815467149}
- {id: vare-O, type: wing, name: O wing Väre, osm: 815467144}
- {id: vare-P, type: wing, name: P wing Väre, osm: 815467145}
- {id: vare-Q, type: wing, name: Q wing Väre, osm: 815467151}
- {id: vare-R, type: wing, name: R wing Väre, osm: 815467150}
- {id: vare-S, type: wing, name: S wing Väre, osm: 815467155}
- id: metroA
osm: 402618641
aliases: [Metro Centre, Metro entrance A]
#children:
# - id: metroA-rkioski
# osm: node=5317875517
# type: service
# name: R-Kioski Metro A
parents: [abloc]
# Business school
- id: R068
osm: 941553966
aliases: [R068]
children:
- id: kylteri
osm: node=6316319506
type: cafe
- id: arvo
osm: node=6316319505
type: restaurant
- {id: biz-T, type: wing, name: T wing BIZ, osm: 815467156}
- {id: biz-U, type: wing, name: U wing BIZ, osm: 815467152}
- {id: biz-V, type: wing, name: V wing BIZ, osm: 815467158}
#- {id: biz-W, type: wing, name: W wing BIZ, osm: } # doesn't exist
- {id: biz-X, type: wing, name: X wing BIZ, osm: 815467157}
- {id: biz-Y, type: wing, name: Y wing BIZ, osm: 815467159}
- id: abloc
osm: 941553969
alises: [R069, Metrokeskus, Metro center]
children:
- id: espressohouse
osm: node=5870791847
type: cafe
- id: abloc-rkioski
osm: node=5870791841
type: service
- id: kot
osm: node=5871819461
type: restaurant
#- id: clasohlson
# osm: node=5870791845
# type: shopping
#- id: junglejuice
# osm: node=5870791846
# type: cafe
- id: whothexxxisalice
osm: node=5871819455
type: restaurant
- id: kmarket
osm: node=5870791843
type: shopping
- id: abloc-atm-otto
osm: node=5871819587
type: service
name: ATM
aliases: [Otto-automaatti, Pankkiautomaatti, Automated teller machine]
- id: alko
osm: node=5870791844
type: service
- id: abloc-apteekki
osm: node=5870791853
aliases: [Pharmacy]
type: service
- id: konnichiwa
osm: node=5870791848
type: restaurant
- id: abloc-alepa
osm: node=5870791842
type: shopping
#- id: abloc-atm-nosto
# osm: node=5871819468
# type: service
# name: ATM
# aliases: [Nosto-automaatti, Pankkiautomaatti, Automated teller machine]
#- id: abloc-havajava
# osm: node=5880866319
# type: cafe
- id: abloc-foodandco
osm: node=5891050368
type: restaurant
- id: abloc-wickedrabbit
name: Wicked Rabbit
address: Otaniementie 12
latlon: [60.18506, 24.82518]
level: 1
note: within the Fazer restaurant in A bloc.
type: restaurant
- id: abloc-eatpoke
osm: node=10850660019
type: restaurant
- id: mezame
osm: node=11883413019
type: restaurant
- {id: abloc-A, type: wing, name: A wing Abloc, osm: 815467163}
#- {id: abloc-B, type: wing, name: B wing Abloc, osm: } # needs definition
#- {id: abloc-C, type: wing, name: C wing Abloc, osm: } # needs definition
- {id: abloc-D, type: wing, name: D wing Abloc, osm: 815467164}
#- {id: abloc-H, type: wing, name: H wing Abloc, osm: } # needs definition
- {id: abloc-I, type: wing, name: I wing Abloc, osm: 815467161}
- {id: abloc-N, type: wing, name: N wing Abloc, osm: 815467160}
- id: metroB
osm: 408595707
name: Metro entrance B
#aliases: [Metro entrance 2]
- id: marsio
osm: 1119443893
aliases: [R044, Aalto Studios, OK2]
children:
- id: moo
type: restaurant
osm: node=12141712493
- id: aaltoshop
osm: node=12141712494
type: shopping
name: Aalto shop
- id: kide
osm: 1119443892
aliases: [R045, KM1]
## Töölö
# # Töölö main building
- id: r101
aliases: [Töölö Päärakennus, Töölö main building]
osm: 124297669
osm_meta: rel=1697955
address: Runeberginkatu 14-16, Helsinki.
# # Chydenia, Runeberginkatu 22–24
# - id: chydenia
# osm: 23192754
# osm_meta: node=338322347
# name: Aalto Chydenia Building
# # Economicum, Arkadiankatu 7
# - id: economicum
# osm: 165194634
# # Arkadia, Lapuankatu 2
# - id: arkadia
# name: Aalto Arkadia
# osm: 124476546
# osm_meta: node=298645132
# Aalto EE building
- id: domusgadium
name: Domus Gaudium
osm: 96286289
osm_meta: node=1116096931
# # Töölö Towers
# - id: toolotowers