From 7524d0a6d920f511359f0574dff1a7b964408fa1 Mon Sep 17 00:00:00 2001 From: rkdarst Date: Fri, 30 Aug 2024 13:52:32 +0000 Subject: [PATCH] deploy: usefulaaltomap/usefulaaltomap@4eb3552441cb9c70671dbdcd4e9e9f9a4056e032 --- .nojekyll | 0 CNAME | 1 + app.js | 141 + data.json | 1 + data.json-readable | 25017 +++++++++++++++++++++++++++++++++++++++++ index.html | 307 + main/main.css | 3 + main/main.html | 23 + main/main.js | 127 + otaniemi.yml | 1493 +++ sidenav/sidenav.html | 75 + sidenav/sidenav.js | 83 + 12 files changed, 27271 insertions(+) create mode 100644 .nojekyll create mode 100644 CNAME create mode 100644 app.js create mode 100644 data.json create mode 100644 data.json-readable create mode 100644 index.html create mode 100644 main/main.css create mode 100644 main/main.html create mode 100644 main/main.js create mode 100644 otaniemi.yml create mode 100644 sidenav/sidenav.html create mode 100644 sidenav/sidenav.js diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..3f2bb27 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +usefulaaltomap.fi diff --git a/app.js b/app.js new file mode 100644 index 0000000..9012630 --- /dev/null +++ b/app.js @@ -0,0 +1,141 @@ +/* Config constants TODO: NON-GLOBAL?*/ +var BUILDING_DEFAULT_OUTLINE_WEIGHT = 1; +var BUILDING_DEFAULT_FILL_OPACITY = 0.1; +var BUILDING_HIGHLIGHT_OUTLINE_WEIGHT_WEAK = 2; +var BUILDING_HIGHLIGHT_FILL_OPACITY_WEAK = 0.15; +var BUILDING_HIGHLIGHT_OUTLINE_WEIGHT_STRONG = 3; +var BUILDING_HIGHLIGHT_FILL_OPACITY_STRONG = 0.25; + +var OBJECT_HIGHLIGHT_OUTLINE_WEIGHT_STRONG = 3; +var OBJECT_HIGHLIGHT_FILL_OPACITY_STRONG = .25; + +var LANG = "en"; + +angular.module('usefulAaltoMap', ['ui-leaflet', 'ui.router', 'ngMaterial']) +.config(function($stateProvider, $urlRouterProvider) { + $urlRouterProvider.otherwise('/') + + $stateProvider + .state('app', { + abstract: true, + views: { + 'main': { + templateUrl: 'main/main.html', + controller: 'main', + resolve: { + initApp: function($http, mapService, utils) { + + function addBuilding(d) { + if (d.outline) { + message = utils.get_lang(d, "name") + if (d.aliases && d.aliases.length > 0) + message += "\n
(" + d.aliases.join(", ") + ")"; + mapService.map.paths[d.id] = { + id: d.id, + data: d, + type: "polygon", + clickable: true, + weight: BUILDING_DEFAULT_OUTLINE_WEIGHT, + fill: true, + fillColor: 'red', + fillOpacity: BUILDING_DEFAULT_FILL_OPACITY, + latlngs: d.outline.map(function(coords) { + return { + lat: coords[0], + lng: coords[1] + } + }), + mouseoverMessage: message + } + mapService.resetColors(mapService.map.paths[d.id]); + } + } + + + return $http.get('data.json') + .then(function(res) { + // All data: id -> {data} + mapService.data = { }; + // Object IDs which should be displayed by default: id -> true + mapService.defaultObjects = { }; + angular.forEach(res.data.locations, function(d) { + mapService.data[d.id] = d; + }) + // Redirections + mapService.redirects = res.data.redirects; + // Add objects to map + angular.forEach(mapService.data, function(d) { + switch (d.type) { + case 'building': + case 'auxbuilding': + case 'studenthousing': + case 'otherbuilding': + addBuilding(d); + mapService.defaultObjects[d.id] = true; + break; + default: + // do nothing + } + }) + mapService.clearHighlights(); + }) + .catch(console.log) + } + } + }, + '': { + template: '
' + } + } + }) + .state('app.map', { + template: '', + url: '/', + resolve: { + clearHighlights: function(mapService) { + // Following line resets view when you leave sidenav. + //mapService.clearHighlights(); + } + } + }) + .state('app.selectedObject', { + templateUrl: 'sidenav/sidenav.html', + controller: 'sidenavController', + url: '/select/:objectId', + resolve: { + object: function($stateParams, mapService, $q, $state, $timeout) { + + var objId = $stateParams.objectId; + + function waitForInit() { + var deferred = $q.defer(); + if (mapService.data) { return $q.resolve(mapService.data) } + else { + return $timeout(waitForInit, 100); + } + } + + return waitForInit() + .then(function(data) { + var obj = mapService.data[objId]; + if (obj) { + return $q.resolve(obj); + } + // Use the "redirects" data to see if our ID has been changed. + if (mapService.redirects && objId in mapService.redirects) { + var obj = mapService.data[mapService.redirects[objId]]; + if (obj) { + $state.go("app.selectedObject", { objectId: mapService.redirects[objId] }); + return $q.resolve(obj); // unreachable, hopefully (but backup display) + } else { + console.log("Tried to remap object, but failed: " + objId) + } + } + console.log("No object found with id " + objId) + $state.go('app.map') + }) + .catch(console.log) + } + } + }) +}) diff --git a/data.json b/data.json new file mode 100644 index 0000000..c945448 --- /dev/null +++ b/data.json @@ -0,0 +1 @@ +{"locations":[{"id":"main","type":"building","latlon":[60.185953,24.827071],"outline":[[60.185634,24.827635],[60.185638,24.827618],[60.185643,24.82759],[60.185645,24.827552],[60.185638,24.827527],[60.18567,24.827381],[60.185682,24.827373],[60.185706,24.82722],[60.185658,24.827192],[60.185555,24.827129],[60.185403,24.827036],[60.185393,24.827088],[60.185257,24.827003],[60.18525,24.826998],[60.185244,24.826994],[60.18522,24.826978],[60.185202,24.826966],[60.185101,24.826899],[60.185103,24.826882],[60.185052,24.826794],[60.185108,24.826672],[60.185143,24.826597],[60.185273,24.826677],[60.185259,24.826773],[60.185277,24.826783],[60.185282,24.826785],[60.185289,24.82679],[60.185306,24.8268],[60.185322,24.826706],[60.185408,24.82676],[60.185595,24.826875],[60.185598,24.826851],[60.185953,24.827071],[60.185993,24.827095],[60.18602,24.827111],[60.186004,24.827209],[60.186025,24.827227],[60.186009,24.827327],[60.18603,24.827342],[60.186026,24.827368],[60.186145,24.827441],[60.186411,24.827611],[60.186379,24.827839],[60.186599,24.827978],[60.186799,24.828105],[60.186797,24.828129],[60.186808,24.828135],[60.186819,24.828141],[60.186835,24.828053],[60.18717,24.828263],[60.187186,24.828273],[60.187182,24.828299],[60.187205,24.828314],[60.187445,24.828466],[60.187435,24.828541],[60.18746,24.828558],[60.187485,24.828576],[60.187463,24.82872],[60.187522,24.828758],[60.187515,24.828793],[60.187543,24.82881],[60.187485,24.829171],[60.187446,24.829149],[60.187439,24.829177],[60.187239,24.829062],[60.187231,24.829111],[60.187221,24.829105],[60.18721,24.829099],[60.187201,24.829093],[60.187195,24.829133],[60.187192,24.829149],[60.187184,24.829201],[60.187182,24.829212],[60.187193,24.82922],[60.187174,24.829411],[60.187165,24.829419],[60.187103,24.829417],[60.187092,24.829405],[60.187086,24.829376],[60.187066,24.829376],[60.187047,24.829377],[60.187034,24.82942],[60.18701,24.829473],[60.186996,24.829475],[60.186933,24.829411],[60.18693,24.82939],[60.186932,24.829309],[60.186947,24.829248],[60.186987,24.829079],[60.18692,24.829037],[60.186894,24.82902],[60.186853,24.828994],[60.186684,24.828887],[60.186676,24.828882],[60.186663,24.828874],[60.186664,24.828862],[60.186665,24.828848],[60.186655,24.828842],[60.186359,24.828669],[60.186278,24.828621],[60.186233,24.828915],[60.186501,24.829085],[60.186478,24.82923],[60.18646,24.829352],[60.186189,24.829186],[60.186145,24.829473],[60.18633,24.829592],[60.18634,24.829599],[60.186343,24.82958],[60.186485,24.829607],[60.186472,24.829718],[60.186464,24.829718],[60.186453,24.829832],[60.186445,24.82983],[60.186435,24.829957],[60.186421,24.829959],[60.186363,24.830322],[60.186342,24.830449],[60.18623,24.830381],[60.186205,24.830366],[60.186171,24.830344],[60.185962,24.83021],[60.185979,24.830102],[60.185992,24.830011],[60.185996,24.829984],[60.186172,24.830094],[60.186175,24.83008],[60.186178,24.830057],[60.186182,24.830036],[60.186224,24.829784],[60.186181,24.829757],[60.186183,24.82973],[60.186155,24.829713],[60.186148,24.82973],[60.186105,24.829704],[60.186106,24.829684],[60.186078,24.829667],[60.186073,24.829684],[60.186032,24.829658],[60.186033,24.829635],[60.185984,24.829607],[60.18598,24.829625],[60.185951,24.829609],[60.185952,24.829585],[60.185858,24.829526],[60.18589,24.829313],[60.186066,24.829423],[60.186113,24.829111],[60.185905,24.828983],[60.1859,24.829015],[60.185767,24.828933],[60.185781,24.828842],[60.185842,24.828449],[60.185818,24.828434],[60.185804,24.828427],[60.185785,24.828414],[60.185684,24.828349],[60.18569,24.828311],[60.185701,24.828237],[60.185708,24.828191],[60.185718,24.828126],[60.185726,24.828076],[60.18573,24.82805],[60.185733,24.828025],[60.185737,24.828],[60.185741,24.827977],[60.185744,24.827952],[60.185762,24.827964],[60.185778,24.827853],[60.185741,24.827792],[60.185714,24.827744],[60.185695,24.827711],[60.185684,24.827695],[60.185677,24.827717],[60.185634,24.827635]],"aliases":["P\u00e4\u00e4lafka","R001","A","H","M","U","Y","Kandi","Main Building","OK1"],"opening_hours":"Mo-Th 07:45-20:00; Fr 07:45-18:00; Jun-Aug: Mo-Fr 08:00-15:30; PH off","name":"Aalto-yliopisto Kandidaattikeskus","name_en":"Undergraduate Centre","name_sv":"Aalto-universitetet Kandidatcentret","address":"Otakaari 1","children":["dept:physics","dept:math","itservices","servicedesk_kandi","main-printer-5131418798","main-printer-5113813861","startingpoint","studentservices","alvari","studenthub","SCI","ainocafe","elissacafe","silinteri","A","H","main-kwing","M","U","Y","main-A123","main-K014","main-K101","main-K102","main-M102","main-M134","main-M140","main-M145b","main-M232","main-M233","main-M234","main-MA215","main-U115a","main-U115b","main-U119","main-U121a","main-U121b","main-U134a","main-U135a","main-U141","main-U142","main-U147","main-U149","main-U154","main-U157","main-U257","main-U259","main-U270","main-U271","main-Y115","main-Y122","main-Y124","main-Y202","main-Y203","main-Y205","main-ent-11222444126","main-ent-1433646779","main-ent-57240233","main-ent-D","main-ent-K","main-ent-L","main-ent-M","main-ent-N","main-ent-P","main-ent-T","main-ent-U","main-ent-U1","main-ent-X","main-ent-Y","main-ent-Z","main-ent-\u00c4"],"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.","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.\n","osm_elements":[["way",4252946],["relation","4148"]],"entrances":[{"lat":60.185658,"lon":24.827192,"name":"\u00c4"},{"lat":60.185408,"lon":24.82676,"name":"D"},{"lat":60.185953,"lon":24.827071,"main":true},{"lat":60.186808,"lon":24.828135,"name":"K"},{"lat":60.18717,"lon":24.828263,"name":"L"},{"lat":60.187205,"lon":24.828314,"name":"M"},{"lat":60.18746,"lon":24.828558,"name":"N"},{"lat":60.18721,"lon":24.829099,"name":"P"},{"lat":60.186655,"lon":24.828842,"name":"T"},{"lat":60.186478,"lon":24.82923,"name":"U"},{"lat":60.18633,"lon":24.829592,"name":"U1"},{"lat":60.186205,"lon":24.830366,"name":"X"},{"lat":60.186178,"lon":24.830057},{"lat":60.185781,"lon":24.828842,"name":"Y"},{"lat":60.185785,"lon":24.828414,"name":"Z"},{"lat":60.186093,"lon":24.827721}],"label":"Main\n1"},{"id":"r002","type":"building","latlon":[60.18688,24.830755],"outline":[[60.18685,24.831302],[60.186807,24.831144],[60.18682,24.831129],[60.186809,24.831091],[60.186708,24.831203],[60.186654,24.831006],[60.186845,24.830794],[60.18688,24.830755],[60.186916,24.830715],[60.186931,24.830699],[60.187233,24.830364],[60.187273,24.830512],[60.187281,24.83054],[60.187316,24.830501],[60.18756,24.831392],[60.18755,24.831404],[60.187602,24.831594],[60.187555,24.831646],[60.187503,24.831456],[60.18739,24.831581],[60.18751,24.832018],[60.187394,24.832148],[60.187268,24.83169],[60.187167,24.831802],[60.18709,24.831521],[60.187348,24.831235],[60.187217,24.830758],[60.187175,24.830805],[60.186975,24.831027],[60.187007,24.831142],[60.187086,24.831052],[60.187106,24.831144],[60.187125,24.831263],[60.18703,24.831308],[60.186955,24.831514],[60.186902,24.831407],[60.186869,24.831324],[60.18689,24.831291],[60.186875,24.831253],[60.18685,24.831302]],"aliases":["Raksa","R002","R"],"opening_hours":"Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Rakennus- ja ymp\u00e4rist\u00f6tekniikka","name_en":"Civil and Environmental Engineering","address":"Rakentajanaukio 4","children":["dept:civileng","r002-printer-5232638615","ENG","r002-R160a","r002-R161a","r002-R253","r002-R255","r002-R264a","r002-R265","r002-R309","r002-R351a","r002-R351b","r002-R352","r002-ent-303099817","r002-ent-A"],"osm_elements":[["way",7579330]],"entrances":[{"lat":60.18688,"lon":24.830755,"name":"A","main":true},{"lat":60.187273,"lon":24.830512}],"label":"R\n2"},{"id":"F","type":"building","latlon":[60.18839,24.829943],"outline":[[60.188324,24.829707],[60.18839,24.829943],[60.188435,24.830106],[60.188438,24.830118],[60.188429,24.830129],[60.188491,24.830353],[60.188444,24.830406],[60.188298,24.830552],[60.18794,24.830956],[60.187915,24.830868],[60.187899,24.830808],[60.187871,24.830709],[60.187943,24.830629],[60.187927,24.830573],[60.18795,24.830547],[60.187947,24.830536],[60.188013,24.830462],[60.188041,24.830565],[60.18813,24.830465],[60.188082,24.83029],[60.188063,24.830224],[60.188041,24.830143],[60.188025,24.830161],[60.187919,24.830281],[60.187905,24.830229],[60.187649,24.830518],[60.187615,24.830556],[60.187519,24.830663],[60.187445,24.830395],[60.187725,24.83008],[60.18774,24.830063],[60.187815,24.829978],[60.188161,24.829588],[60.188156,24.829568],[60.188174,24.829547],[60.188262,24.829448],[60.188331,24.829698],[60.188324,24.829707]],"aliases":["Fyssa","R003","F","F-talo","F-building","OK3"],"opening_hours":"Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Aalto-yliopisto Terveysteknologian talo","name_en":"Health Technology House","address":"Otakaari 3","children":["dept:eea","dept:nbe","F-printer-5113813894","SCI","kvarkki","F-F138","F-F175a","F-F175b","F-F239a","F-F254","F-F255","F-F257","F-F258","F-F259","F-ent-A","F-ent-C","F-ent-D"],"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.","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.","osm_elements":[["way",98855202],["relation","1402504"]],"entrances":[{"lat":60.18839,"lon":24.829943,"name":"A","main":true},{"lat":60.18774,"lon":24.830063,"name":"D"},{"lat":60.187815,"lon":24.829978,"name":"C"}],"label":"F\n3"},{"id":"agrid","type":"building","latlon":[60.188905,24.830154],"outline":[[60.18865,24.831584],[60.188651,24.831377],[60.188659,24.831378],[60.188659,24.831331],[60.188632,24.831331],[60.188632,24.831187],[60.188644,24.831167],[60.188759,24.831168],[60.188767,24.831188],[60.188767,24.831312],[60.18878,24.831313],[60.188799,24.831313],[60.1888,24.831231],[60.188957,24.831246],[60.188958,24.830912],[60.18868,24.830905],[60.188636,24.830905],[60.188636,24.830724],[60.188636,24.830639],[60.188749,24.830639],[60.188847,24.830639],[60.188914,24.83064],[60.188913,24.830606],[60.188917,24.830323],[60.188866,24.830213],[60.18884,24.830165],[60.188803,24.83009],[60.188855,24.83001],[60.188908,24.829961],[60.188955,24.829939],[60.189004,24.82993],[60.189048,24.829947],[60.189092,24.829977],[60.189136,24.83003],[60.189174,24.830098],[60.189054,24.830336],[60.189054,24.830368],[60.189049,24.830639],[60.189329,24.830645],[60.189329,24.830742],[60.189329,24.830912],[60.189049,24.830913],[60.189048,24.831208],[60.189048,24.831247],[60.18933,24.831242],[60.189327,24.831382],[60.189327,24.831514],[60.189088,24.831511],[60.189088,24.831755],[60.189088,24.831786],[60.189087,24.831838],[60.18933,24.831842],[60.189329,24.832107],[60.189124,24.832105],[60.189124,24.832351],[60.189124,24.832386],[60.189124,24.832409],[60.189123,24.832444],[60.189605,24.832451],[60.18963,24.832451],[60.189644,24.832451],[60.189643,24.832506],[60.189807,24.832509],[60.189806,24.832757],[60.189775,24.832756],[60.189594,24.832754],[60.189594,24.832705],[60.189458,24.832703],[60.189137,24.832698],[60.188865,24.832694],[60.188767,24.832693],[60.188604,24.832691],[60.188605,24.832432],[60.188773,24.832433],[60.188866,24.832436],[60.189033,24.832438],[60.189034,24.832105],[60.18877,24.832102],[60.188587,24.832101],[60.188588,24.831801],[60.188654,24.831802],[60.188654,24.831835],[60.188778,24.831836],[60.188858,24.831836],[60.188993,24.831837],[60.188994,24.831508],[60.188851,24.831507],[60.188798,24.831506],[60.188798,24.831436],[60.188767,24.831436],[60.188767,24.831585],[60.188758,24.831604],[60.188659,24.831603],[60.18865,24.831584]],"aliases":["S\u00e4hk\u00f6","R004","A-grid","Vanha S\u00e4hk\u00f6tekniikka","Old Electrical Engineering","OK5"],"opening_hours":"Mo-Fr 08:00-16:00; PH off","name":"A Grid","address":"Otakaari 5","children":["dept:eea","dept:dice","acousticslab","agrid-tapaus","agrid-agridimpact","agrid-until","agrid-startupcenter","agrid-esa","ami-center","ami-center","ami-center","elepaja","agrid-printer-5389688266","agrid-printer-5389688267","factory","agrid-havajava","agrid-A","agrid-B","agrid-CN","agrid-CS","agrid-D","agrid-EN","agrid-ES","agrid-K","agrid-F","agrid-GN","agrid-GS","agrid-H","agrid-IS","agrid-I","agrid-L","agrid-A108b/A111a","agrid-A205a","agrid-A208d","agrid-B210b","agrid-D109b","agrid-D209a","agrid-D209b","agrid-D209c","agrid-D309a","agrid-D309c","agrid-ent-5012868025","agrid-ent-264070011","agrid-ent-1656239835","agrid-ent-11146649709","agrid-ent-11146649710","agrid-ent-11146649711","agrid-ent-A"],"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.","osm_elements":[["way",24342454]],"entrances":[{"lat":60.18878,"lon":24.831313},{"lat":60.189054,"lon":24.830368},{"lat":60.189088,"lon":24.831786},{"lat":60.188767,"lon":24.832693},{"lat":60.188773,"lon":24.832433},{"lat":60.188778,"lon":24.831836},{"lat":60.188905,"lon":24.830154,"name":"A","main":true}],"label":"A Grid\n4"},{"id":"K4","type":"building","latlon":[60.189146,24.825643],"outline":[[60.188436,24.826277],[60.1885,24.826076],[60.188515,24.826029],[60.188595,24.825771],[60.188559,24.825726],[60.188582,24.825668],[60.18866,24.825473],[60.188686,24.825409],[60.188709,24.825438],[60.188728,24.825377],[60.188772,24.825238],[60.188842,24.825015],[60.18886,24.824958],[60.189218,24.825412],[60.189146,24.825643],[60.189098,24.825796],[60.18909,24.825786],[60.188929,24.825582],[60.188883,24.825729],[60.188911,24.825764],[60.188869,24.825898],[60.188824,24.826042],[60.188843,24.826067],[60.18887,24.8261],[60.188889,24.826125],[60.188845,24.826265],[60.188824,24.826238],[60.188801,24.826209],[60.188749,24.826143],[60.188686,24.826344],[60.188784,24.826469],[60.188696,24.826751],[60.188645,24.826916],[60.188628,24.826895],[60.188606,24.826865],[60.188593,24.826907],[60.188539,24.826839],[60.188552,24.826797],[60.188618,24.826586],[60.188624,24.826565],[60.188635,24.82653],[60.188436,24.826277]],"aliases":["K4","R005"],"opening_hours":"Mo-Fr 08:00-15:45; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Konetekniikka 4","name_en":"Mechanical Engineering 4","address":"S\u00e4hk\u00f6miehentie 4","children":["dept:mecheng","ENG","K4-ent-338532521","K4-ent-5012868034","K4-ent-F","K4-ent-G"],"osm_elements":[["way",7584026]],"entrances":[{"lat":60.1885,"lon":24.826076,"name":"G"},{"lat":60.188515,"lon":24.826029,"name":"F"},{"lat":60.189146,"lon":24.825643,"main":true},{"lat":60.188618,"lon":24.826586}],"label":"K4\n5"},{"id":"K3","type":"building","latlon":[60.187838,24.824478],"outline":[[60.187853,24.823894],[60.188119,24.824237],[60.188082,24.824358],[60.18824,24.824566],[60.188302,24.824639],[60.188387,24.824371],[60.188238,24.824187],[60.188133,24.824049],[60.188145,24.824013],[60.188048,24.823888],[60.187989,24.823816],[60.18807,24.823559],[60.18812,24.823622],[60.188226,24.823757],[60.188212,24.823799],[60.188274,24.823878],[60.188505,24.824172],[60.188766,24.824504],[60.188725,24.824636],[60.188686,24.824769],[60.188614,24.825006],[60.188587,24.825092],[60.188557,24.825188],[60.188531,24.825274],[60.188458,24.825184],[60.188432,24.82515],[60.188303,24.824995],[60.188223,24.824893],[60.188195,24.824864],[60.188169,24.824827],[60.188102,24.825041],[60.187832,24.824702],[60.187788,24.824645],[60.187838,24.824478],[60.187854,24.824431],[60.187736,24.824278],[60.187818,24.824021],[60.187853,24.823894]],"aliases":["K3","R006"],"opening_hours":"Mo-Fr 08:00-15:45; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Viima","address":"Puumiehenkuja 5","children":["dept:mecheng","designfactory","startupsauna","ENG","K3-ent-A"],"osm_elements":[["way",156903284]],"entrances":[{"lat":60.187838,"lon":24.824478,"name":"A","main":true}],"label":"K3\n6"},{"id":"K2","type":"building","latlon":[60.187586,24.825221],"outline":[[60.187505,24.825119],[60.187541,24.825001],[60.187494,24.824941],[60.187568,24.824701],[60.187581,24.824717],[60.187599,24.824739],[60.187775,24.824958],[60.187742,24.825065],[60.188206,24.825637],[60.188249,24.825688],[60.188203,24.825835],[60.188192,24.82582],[60.188157,24.825932],[60.187586,24.825221],[60.187505,24.825119]],"aliases":["K2","R007"],"opening_hours":"Mo-Fr 08:00-15:45; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Aalto-yliopisto Konetekniikka 2","name_en":"Mechanical Engineering 2","name_sv":"Aalto-universitetet Mechanik Engineering 2","address":"Puumiehenkuja 3","children":["dept:mecheng","ENG","K2-ent-5171375888"],"osm_elements":[["way",156903282]],"entrances":[{"lat":60.187586,"lon":24.825221,"main":true}],"label":"K2\n7"},{"id":"K1","type":"building","latlon":[60.187083,24.826799],"outline":[[60.187235,24.826087],[60.187522,24.826445],[60.187485,24.826566],[60.187518,24.826607],[60.187475,24.826748],[60.187386,24.826638],[60.187304,24.826905],[60.187271,24.827012],[60.18726,24.827047],[60.18762,24.827496],[60.187563,24.827681],[60.187524,24.827632],[60.187495,24.827725],[60.187011,24.827121],[60.187103,24.826824],[60.187083,24.826799],[60.187018,24.826719],[60.187029,24.826684],[60.187009,24.82666],[60.187104,24.826353],[60.18714,24.826397],[60.187235,24.826087]],"aliases":["Kone","R008","OK4"],"opening_hours":"Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Aalto-yliopisto Konetekniikka 1","name_en":"Mechanical Engineering 1","name_sv":"Aalto-universitetet Mechanik Engineering 1","address":"Otakaari 4","children":["dept:mecheng","dept:builtenv","K1-printer-5232638597","sodexokone","ENG","ENG","SCI","K1-101","K1-148","K1-150","K1-201","K1-202","K1-213a","K1-215","K1-216","K1-301c","K1-301d","K1-302b","K1-ent-338534555","K1-ent-1691532053"],"osm_elements":[["way",156903276]],"entrances":[{"lat":60.187271,"lon":24.827012},{"lat":60.187083,"lon":24.826799,"main":true}],"label":"K1\n8"},{"id":"nanotalo","type":"building","latlon":[60.187034,24.825393],"outline":[[60.186767,24.826333],[60.186641,24.826189],[60.18668,24.826051],[60.186669,24.826038],[60.186653,24.82602],[60.186611,24.825971],[60.186763,24.825433],[60.186826,24.825209],[60.186771,24.825146],[60.186708,24.825369],[60.18662,24.825269],[60.186627,24.825243],[60.186675,24.825075],[60.186648,24.825045],[60.186677,24.824943],[60.18666,24.824924],[60.186646,24.824908],[60.186605,24.825058],[60.18657,24.82518],[60.186481,24.82508],[60.186504,24.824998],[60.186425,24.824909],[60.186554,24.82444],[60.186566,24.824397],[60.186618,24.824455],[60.186633,24.824402],[60.186644,24.824363],[60.186601,24.824311],[60.186627,24.824218],[60.186703,24.82395],[60.186699,24.823946],[60.186811,24.823534],[60.186963,24.8237],[60.18685,24.824107],[60.186835,24.824096],[60.186795,24.82424],[60.186784,24.824227],[60.186758,24.824321],[60.186729,24.824289],[60.186693,24.824419],[60.186661,24.824383],[60.186637,24.824476],[60.186696,24.824542],[60.186735,24.824585],[60.186672,24.824813],[60.186736,24.824887],[60.186935,24.824188],[60.187025,24.824292],[60.18704,24.82424],[60.187002,24.824196],[60.187098,24.823859],[60.187377,24.82418],[60.187263,24.824583],[60.187251,24.824569],[60.187224,24.824664],[60.187236,24.824678],[60.187189,24.824846],[60.187034,24.825393],[60.18701,24.825476],[60.186767,24.826333]],"aliases":["R009"],"name":"Nanotalo","children":["dept:physics","otanano","nanotalo-printer-5171375893","SCI","nanotalo-ent-338531576","nanotalo-ent-338531789","nanotalo-ent-A"],"osm_elements":[["way",27930945]],"entrances":[{"lat":60.186669,"lon":24.826038},{"lat":60.18666,"lon":24.824924},{"lat":60.187034,"lon":24.825393,"name":"A","main":true}],"label":"Nanotalo\n9"},{"id":"r010","type":"building","latlon":[60.187256,24.822421],"outline":[[60.187669,24.822585],[60.187642,24.822568],[60.187638,24.822589],[60.187583,24.822553],[60.187587,24.822532],[60.187534,24.822498],[60.187511,24.82264],[60.187272,24.822484],[60.18728,24.822436],[60.187256,24.822421],[60.187232,24.822406],[60.187268,24.822182],[60.187524,24.822349],[60.187528,24.822322],[60.187506,24.822308],[60.187532,24.822143],[60.187587,24.822179],[60.18756,24.822343],[60.187543,24.822332],[60.187539,24.822358],[60.187689,24.822456],[60.187669,24.822585]],"aliases":["R010"],"name":"KY Espil\u00e4","address":"Konemiehentie 4","children":["r010-ent-502886583"],"osm_elements":[["way",4424188]],"entrances":[{"lat":60.187256,"lon":24.822421,"main":true}],"label":"10"},{"id":"r011","type":"building","latlon":[60.183771,24.824385],"outline":[[60.183132,24.822952],[60.183337,24.823521],[60.183464,24.823336],[60.183546,24.823563],[60.183483,24.823654],[60.183627,24.824056],[60.183653,24.824004],[60.183656,24.823896],[60.18369,24.823763],[60.183754,24.823669],[60.183856,24.823941],[60.183834,24.823983],[60.18383,24.824036],[60.183829,24.824081],[60.183846,24.824143],[60.183824,24.824173],[60.183804,24.824199],[60.183836,24.824288],[60.183801,24.824339],[60.183771,24.824385],[60.183707,24.82448],[60.18372,24.824517],[60.183803,24.824745],[60.183832,24.824828],[60.183862,24.82491],[60.183926,24.825088],[60.183869,24.825171],[60.183856,24.825189],[60.183845,24.825205],[60.183881,24.825303],[60.184086,24.825875],[60.183974,24.826037],[60.183842,24.826229],[60.183757,24.82599],[60.183878,24.825812],[60.183865,24.825776],[60.183769,24.825511],[60.183723,24.825382],[60.183595,24.825568],[60.183551,24.825632],[60.183521,24.825548],[60.183504,24.825573],[60.183461,24.825453],[60.183494,24.825405],[60.183685,24.825128],[60.183717,24.825081],[60.183537,24.82458],[60.183458,24.824695],[60.183305,24.824918],[60.183276,24.82484],[60.183253,24.824874],[60.183198,24.824721],[60.183225,24.824679],[60.183507,24.824271],[60.183513,24.824262],[60.183521,24.824251],[60.183367,24.823823],[60.18334,24.823861],[60.183126,24.824173],[60.183042,24.824296],[60.18294,24.824014],[60.183213,24.823617],[60.1832,24.823581],[60.183183,24.823534],[60.183207,24.823499],[60.183194,24.823462],[60.183135,24.823548],[60.183111,24.823485],[60.182987,24.823159],[60.183059,24.823056],[60.183132,24.822952]],"aliases":["Kemma","R011","Ke","CHEM"],"opening_hours":"Mo-Th 07:45-20:00; Fr 07:45-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Aalto-yliopisto Kemian tekniikan korkeakoulu","name_en":"School of Chemical Engineering","name_sv":"Aalto-universitetet H\u00c3\u00b6gskolan f\u00c3\u00b6r kemiteknik","address":"Kemistintie 1","children":["dept:cmet","dept:cmat","r011-printer-5130529215","CHEM","r011-ywing","r011-bwing","r011-cwing","r011-dwing","r011-ewing","r011-fwing","r011-A302","r011-A303","r011-A304","r011-A305","r011-ent-338537204","r011-ent-338537520","r011-ent-D","r011-ent-F3"],"osm_elements":[["way",7588058]],"entrances":[{"lat":60.183771,"lon":24.824385,"main":true},{"lat":60.183856,"lon":24.825189},{"lat":60.183513,"lon":24.824262,"name":"D"},{"lat":60.183059,"lon":24.823056,"name":"F3"}],"label":"Kemma\n11"},{"id":"r012","type":"building","latlon":[60.182768,24.82477],"outline":[[60.18326,24.825587],[60.183271,24.82561],[60.18325,24.825726],[60.183129,24.825485],[60.183106,24.825531],[60.183038,24.825396],[60.182958,24.825559],[60.183156,24.82595],[60.183145,24.825972],[60.183159,24.826],[60.183128,24.826065],[60.183114,24.826037],[60.183057,24.826152],[60.183036,24.82611],[60.18287,24.825781],[60.182851,24.825743],[60.182809,24.825828],[60.18241,24.82504],[60.182506,24.824843],[60.182773,24.82537],[60.182797,24.82532],[60.182815,24.825283],[60.18292,24.82507],[60.182793,24.824819],[60.182768,24.82477],[60.182707,24.824649],[60.182291,24.823826],[60.182393,24.823619],[60.182564,24.823957],[60.183112,24.825042],[60.183141,24.824983],[60.183146,24.824994],[60.183342,24.82538],[60.183328,24.825407],[60.183376,24.825501],[60.183334,24.825587],[60.183265,24.825451],[60.183248,24.825486],[60.183269,24.825528],[60.18326,24.825587]],"aliases":["Vuori","R012","V"],"opening_hours":"Mo-Fr 07:45-16:00; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Materiaalitekniikka","name_en":"Materials Science and Technology","name_sv":"Materialteknik","address":"Vuorimiehentie 2","children":["space21","tasteat","r012-145","r012-C100","r012-C101","r012-ent-2N","r012-ent-A","r012-ent-D","r012-ent-K","r012-ent-R"],"osm_elements":[["way",7588374]],"entrances":[{"lat":60.18287,"lon":24.825781,"name":"A"},{"lat":60.182797,"lon":24.82532,"name":"D"},{"lat":60.182768,"lon":24.82477,"name":"K","main":true},{"lat":60.182564,"lon":24.823957,"name":"2N"},{"lat":60.183146,"lon":24.824994,"name":"R"}],"label":"Vuori\n12"},{"id":"r013","type":"building","latlon":[60.181656,24.824961],"outline":[[60.181939,24.825179],[60.18189,24.82528],[60.181761,24.825546],[60.181663,24.825355],[60.181341,24.826018],[60.181194,24.825729],[60.181464,24.825172],[60.181482,24.825208],[60.18153,24.825109],[60.181324,24.824703],[60.181506,24.824328],[60.181598,24.824509],[60.181606,24.824524],[60.181629,24.824475],[60.181668,24.824551],[60.181644,24.824599],[60.18176,24.824826],[60.181772,24.824801],[60.181777,24.824801],[60.181782,24.824806],[60.181786,24.824813],[60.181788,24.824825],[60.181788,24.824833],[60.181776,24.824858],[60.181939,24.825179]],"aliases":["Puu","R013"],"name":"Aalto Bioproducts Center","name_en":"Forest Products Technology 1","address":"Vuorimiehentie 1","children":["dept:bio","CHEM"],"osm_elements":[["way",7588593]],"entrances":[],"label":"13"},{"id":"kirjasto","type":"building","latlon":[60.184603,24.827889],"outline":[[60.185143,24.827405],[60.184802,24.828057],[60.184463,24.828707],[60.18445,24.828729],[60.184435,24.828697],[60.18441,24.828643],[60.184424,24.828618],[60.184402,24.828569],[60.184394,24.828553],[60.184399,24.828544],[60.184404,24.828534],[60.184379,24.828477],[60.184404,24.828431],[60.184397,24.828415],[60.184568,24.828091],[60.184609,24.828009],[60.184622,24.827983],[60.184613,24.827938],[60.184603,24.827889],[60.184596,24.827852],[60.184585,24.827801],[60.184569,24.827813],[60.184536,24.827839],[60.184519,24.827852],[60.184491,24.827725],[60.184504,24.827683],[60.184523,24.827647],[60.184545,24.827605],[60.184548,24.827599],[60.184606,24.827486],[60.184618,24.827463],[60.184613,24.827449],[60.184634,24.827408],[60.184812,24.827066],[60.184846,24.827223],[60.18486,24.827208],[60.184857,24.827191],[60.184924,24.82711],[60.185034,24.827263],[60.185025,24.827293],[60.185033,24.827305],[60.185042,24.827316],[60.185049,24.827305],[60.185143,24.827405]],"aliases":["R015","Harald Herlin Learning Centre","Aalto-yliopiston kirjasto","Main Library","Learning Center","HH-center","HH-keskus"],"opening_hours":"Mo-Fr 08:00-20:00; Sa 08:00-15:00; PH off","name":"Library","name_en":"Library","name_sv":"Aalto-universitetet Harald Herlin -l\u00e4rcentret","address":"Otaniementie 9","name_fi":"Kirjasto","children":["kirjasto-printer-5120785982","kirjasto-printer-5120785976","bakedbyeli","aaltopahvi","kirjasto-106","kirjasto-107","kirjasto-108","kirjasto-109","kirjasto-113","kirjasto-126","kirjasto-214","kirjasto-215","kirjasto-233a","kirjasto-ent-301875084","kirjasto-ent-5020265621","kirjasto-ent-5901449040","kirjasto-ent-301814925"],"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.","osm_elements":[["way",4252948]],"entrances":[{"lat":60.184802,"lon":24.828057},{"lat":60.184603,"lon":24.827889,"main":true},{"lat":60.184606,"lon":24.827486},{"lat":60.185033,"lon":24.827305}],"label":"15"},{"id":"r016","type":"building","latlon":[60.185997,24.81955],"outline":[[60.185997,24.81955],[60.186117,24.818192],[60.186084,24.81818],[60.186092,24.818088],[60.186149,24.817443],[60.186339,24.817511],[60.186287,24.818105],[60.186321,24.818117],[60.18631,24.818244],[60.186418,24.818283],[60.186402,24.818467],[60.186399,24.818505],[60.186377,24.818748],[60.186374,24.818784],[60.186352,24.819032],[60.186347,24.819089],[60.186326,24.819322],[60.186322,24.819375],[60.186301,24.819611],[60.186296,24.81966],[60.186276,24.819891],[60.186271,24.819941],[60.18625,24.820183],[60.186246,24.820224],[60.186225,24.820465],[60.186221,24.820508],[60.186196,24.820795],[60.186192,24.820839],[60.18617,24.821081],[60.186166,24.821124],[60.186144,24.821373],[60.186143,24.821392],[60.186047,24.821358],[60.185672,24.821223],[60.185675,24.821194],[60.185744,24.820411],[60.185915,24.820473],[60.185997,24.81955]],"aliases":["R016","Aalto Ice Tank"],"name":"Meritekniikka","name_en":"Marine Technology","address":"Tietotie 1","children":["dept:mecheng","dept:builtenv","ENG","r016-ent-5898662649","r016-ent-A"],"osm_elements":[["way",4259025]],"entrances":[{"lat":60.185997,"lon":24.81955,"name":"A","main":true},{"lat":60.185675,"lon":24.821194}],"label":"16"},{"id":"maari","type":"building","latlon":[60.18921,24.826134],"outline":[[60.189548,24.825755],[60.189368,24.826319],[60.189381,24.826336],[60.189354,24.826468],[60.189305,24.826577],[60.18929,24.826559],[60.189157,24.826976],[60.188995,24.826765],[60.189017,24.826697],[60.189001,24.826676],[60.189019,24.82662],[60.189035,24.82664],[60.189156,24.826265],[60.189165,24.826277],[60.18921,24.826134],[60.189223,24.826095],[60.189187,24.826049],[60.189358,24.825509],[60.189473,24.825658],[60.189484,24.825625],[60.189548,24.825709],[60.189537,24.825741],[60.189548,24.825755]],"aliases":["R017"],"name":"Maarintalo","name_sv":"Maarihuset","address":"S\u00e4hk\u00f6miehentie 3","children":["maari-printer-5171375890","maari-printer-5171375891","maari-ent-348028311"],"osm_elements":[["way",7584131]],"entrances":[{"lat":60.18921,"lon":24.826134,"main":true}],"label":"Maari\n17"},{"id":"r018","type":"building","latlon":[60.18753,24.823476],"outline":[[60.187552,24.82349],[60.187518,24.823715],[60.187138,24.823486],[60.187155,24.823372],[60.187172,24.82326],[60.18753,24.823476],[60.187552,24.82349]],"aliases":["R018"],"name":"SAHA","address":"Konemiehentie 3","children":["r018-ent-560097715"],"osm_elements":[["way",7244238]],"entrances":[{"lat":60.18753,"lon":24.823476,"main":true}],"label":"18"},{"id":"dipoli","type":"building","latlon":[60.184923,24.832206],"outline":[[60.185276,24.832887],[60.185295,24.832962],[60.185309,24.832946],[60.18539,24.833243],[60.185368,24.833259],[60.185366,24.833247],[60.185373,24.833242],[60.185371,24.833235],[60.185341,24.833238],[60.185302,24.833259],[60.185299,24.83324],[60.185243,24.833284],[60.185237,24.83327],[60.185195,24.833335],[60.185168,24.833231],[60.185157,24.833223],[60.185143,24.833216],[60.185132,24.833208],[60.185108,24.83335],[60.185051,24.833217],[60.185001,24.833174],[60.18493,24.833178],[60.184944,24.833051],[60.184925,24.832981],[60.184896,24.832873],[60.184829,24.832794],[60.184835,24.832778],[60.184766,24.832678],[60.184745,24.832679],[60.184682,24.832645],[60.184708,24.832573],[60.18472,24.832503],[60.184705,24.832394],[60.184685,24.832325],[60.184813,24.832352],[60.184899,24.832308],[60.184904,24.832312],[60.184923,24.832206],[60.184925,24.832168],[60.184929,24.832064],[60.184943,24.832073],[60.184953,24.832063],[60.18495,24.832053],[60.184933,24.832055],[60.184916,24.831933],[60.18487,24.831882],[60.184837,24.831857],[60.184847,24.831826],[60.184852,24.831772],[60.184838,24.83172],[60.18489,24.831668],[60.184937,24.831579],[60.184947,24.831522],[60.185049,24.831613],[60.185166,24.831635],[60.185119,24.83177],[60.185151,24.83179],[60.185155,24.831765],[60.185183,24.831782],[60.185171,24.831858],[60.18525,24.831906],[60.185245,24.831935],[60.185339,24.831992],[60.185333,24.832035],[60.185346,24.832043],[60.185382,24.8318],[60.185406,24.831815],[60.185409,24.831792],[60.185503,24.83185],[60.185472,24.832059],[60.185533,24.832097],[60.185544,24.832022],[60.185572,24.83204],[60.185514,24.832427],[60.185451,24.832844],[60.185297,24.83275],[60.185288,24.832807],[60.185276,24.832887]],"aliases":["R019","Fake Main Building","OK24"],"opening_hours":"Mo-Fr 07:45-21:30; Sa 09:30-21:30; PH off","name":"Dipoli","address":"Otakaari 24","children":["carre","reima","tenhola","metso","dipoli-0.061","dipoli-1.010","dipoli-1.072","dipoli-1.073","dipoli-1.078","dipoli-1.093","dipoli-1.154","dipoli-1.178","dipoli-1.180","dipoli-1.183","dipoli-2.020","dipoli-2.031","dipoli-2.032","dipoli-2.034","dipoli-2.060","dipoli-2.061","dipoli-2.062","dipoli-ent-2476428715","dipoli-ent-263967699","dipoli-ent-1433646676"],"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\u00e4mp\u00f6miehenkuja 2 the \"main building\", which absolutely no one not in the administration paid attention to. Apparently the administration confuses \"Administration\" with \"Main\".","osm_elements":[["way",4252954]],"entrances":[{"lat":60.184925,"lon":24.832981},{"lat":60.184923,"lon":24.832206,"main":true},{"lat":60.185288,"lon":24.832807}],"label":"Dipoli\n19"},{"id":"r023","type":"building","latlon":[60.181907,24.830619],"outline":[[60.181907,24.830619],[60.18184,24.830672],[60.181408,24.831012],[60.181363,24.83078],[60.181983,24.830291],[60.182028,24.830524],[60.181907,24.830619]],"aliases":["R023"],"address":"L\u00e4mp\u00f6miehenkuja 3","name":"L\u00e4mp\u00f6miehenkuja 3","children":["r023-ent-A"],"osm_elements":[["way",26608177]],"entrances":[{"lat":60.181907,"lon":24.830619,"name":"A","main":true}],"label":"23"},{"id":"r027","type":"building","latlon":[60.183473,24.829127],"outline":[[60.183672,24.829424],[60.183581,24.82959],[60.183296,24.828961],[60.183205,24.82876],[60.183251,24.828676],[60.183295,24.828594],[60.183632,24.829335],[60.183652,24.829379],[60.183672,24.829424]],"aliases":["R027"],"name":"Arkkitehtipaja","name_en":"Architecture Workshop","address":"Metallimiehenkuja 4","children":["r027-ent-9525308864","r027-ent-9525308859"],"osm_elements":[["way",7588940]],"entrances":[{"lat":60.183251,"lon":24.828676},{"lat":60.183652,"lon":24.829379}],"label":"27"},{"id":"r029","type":"building","latlon":[60.189028,24.833487],"outline":[[60.189562,24.833023],[60.189562,24.833156],[60.189549,24.833155],[60.189548,24.833326],[60.189484,24.833325],[60.189484,24.833424],[60.189069,24.833415],[60.189043,24.833415],[60.189042,24.833487],[60.189042,24.833587],[60.189041,24.833702],[60.188998,24.833701],[60.188861,24.833698],[60.188586,24.833692],[60.188587,24.833414],[60.188588,24.833302],[60.188489,24.8333],[60.188491,24.833067],[60.188657,24.833071],[60.188695,24.833071],[60.188723,24.833072],[60.188721,24.833301],[60.188748,24.833301],[60.188883,24.833304],[60.188919,24.833305],[60.188919,24.833266],[60.18892,24.833106],[60.188921,24.83301],[60.188965,24.833011],[60.18897,24.833011],[60.189071,24.833013],[60.189085,24.833013],[60.189456,24.833021],[60.189495,24.833022],[60.189552,24.833023],[60.189562,24.833023]],"aliases":["R029","OK7"],"opening_hours":"Mo-Fr 07:45-15:30; PH off","name":"R029","address":"Otakaari 7","children":["r029-ent-C"],"osm_elements":[["way",24342456]],"entrances":[{"lat":60.189028,"lon":24.833487,"name":"C","main":true}],"label":"29"},{"id":"T","type":"building","latlon":[60.186776,24.822108],"outline":[[60.187179,24.821289],[60.187124,24.821635],[60.187093,24.82183],[60.187087,24.821863],[60.187093,24.821864],[60.187099,24.821865],[60.187095,24.821923],[60.187078,24.821919],[60.187066,24.821995],[60.187057,24.822052],[60.18699,24.822471],[60.186979,24.822541],[60.186896,24.822486],[60.1869,24.822463],[60.186903,24.822442],[60.186779,24.822398],[60.1868,24.822133],[60.186776,24.822108],[60.186752,24.822084],[60.186716,24.822336],[60.186707,24.822331],[60.186677,24.822313],[60.186662,24.822304],[60.186658,24.822325],[60.186655,24.822346],[60.186583,24.822278],[60.186584,24.822272],[60.186695,24.821785],[60.186687,24.821782],[60.186692,24.821718],[60.1867,24.821721],[60.186708,24.821724],[60.18676,24.821139],[60.186747,24.821134],[60.186753,24.821073],[60.18676,24.821076],[60.186766,24.821078],[60.186818,24.820496],[60.186805,24.820492],[60.186811,24.820429],[60.186819,24.820432],[60.186824,24.820433],[60.186836,24.820301],[60.186881,24.820318],[60.18688,24.820335],[60.18697,24.820371],[60.186961,24.82047],[60.18697,24.820473],[60.18698,24.820476],[60.186996,24.820483],[60.187291,24.820588],[60.18734,24.820616],[60.187357,24.820626],[60.187299,24.820997],[60.187247,24.820964],[60.187233,24.820955],[60.187188,24.821232],[60.187195,24.821233],[60.187204,24.821235],[60.187201,24.821292],[60.187179,24.821289]],"aliases":["Tikkitalo","R030","T","Subway Building","CS"],"opening_hours":"Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off","name":"Tietotekniikka","name_en":"Computer Science","address":"Konemiehentie 2","children":["dept:cs","unit:hiit","library_cs","cs-it","T-printer-5104046531","T-printer-5105524124","T-printer-5105524125","subway_cs","SCI","sodexo-cs","r030-awing","r030-bwing","r030-cwing","T5","T6","T-A140","T2","T7","T-C106.2","T1","T3","paniikki","T-ent-289113781","T-ent-A","T-ent-F","T-ent-I","T-ent-L"],"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.\n","osm_elements":[["way",4217650]],"entrances":[{"lat":60.187066,"lon":24.821995,"name":"L"},{"lat":60.186776,"lon":24.822108,"name":"A","main":true},{"lat":60.186881,"lon":24.820318,"name":"F"},{"lat":60.18697,"lon":24.820473},{"lat":60.187247,"lon":24.820964,"name":"I"}],"label":"CS / T\n30"},{"id":"oih","type":"building","latlon":[60.187201,24.816356],"outline":[[60.187207,24.816288],[60.18713,24.816259],[60.187152,24.81604],[60.187223,24.816068],[60.187245,24.815842],[60.187173,24.815814],[60.187194,24.815599],[60.187266,24.815627],[60.187289,24.815393],[60.187216,24.815364],[60.187237,24.815147],[60.18726,24.815156],[60.187309,24.815175],[60.187331,24.814946],[60.18726,24.814919],[60.187281,24.814702],[60.187351,24.81473],[60.187373,24.814509],[60.187303,24.814482],[60.187325,24.814254],[60.187413,24.814288],[60.187424,24.814176],[60.187564,24.814231],[60.187347,24.816476],[60.187196,24.816413],[60.187201,24.816356],[60.187207,24.816288]],"aliases":["R032","OIH"],"opening_hours":"Mo-Fr 07:30-16:30; PH off","name":"Open Innovation House","address":"Maarintie 6","children":["oih_cafe","oih-ent-2375427439"],"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?","osm_elements":[["way",148683540]],"entrances":[{"lat":60.187201,"lon":24.816356,"main":true}],"label":"OIH\n32"},{"id":"r034","type":"building","latlon":[60.18551,24.820519],"outline":[[60.185794,24.819001],[60.185771,24.819296],[60.185734,24.819735],[60.185669,24.820453],[60.18565,24.820533],[60.18561,24.82059],[60.185567,24.820598],[60.185525,24.820557],[60.18551,24.820519],[60.185499,24.820482],[60.185493,24.820392],[60.185521,24.820061],[60.185551,24.819698],[60.185618,24.818933],[60.185794,24.819001]],"aliases":["R034"],"name":"Vesitalo","name_en":"Water Laboratory","name_sv":"Vattenlaboratorium","address":"Tietotie 1 E","children":["fatlizard","ENG","r034-286","r034-ent-25530504"],"osm_elements":[["way",4259026]],"entrances":[{"lat":60.18551,"lon":24.820519,"main":true}],"label":"34"},{"id":"micronova","type":"building","latlon":[60.184791,24.818355],"outline":[[60.185189,24.817165],[60.184869,24.817291],[60.184874,24.817342],[60.184854,24.817349],[60.184871,24.817524],[60.184987,24.817478],[60.185007,24.817683],[60.184891,24.817728],[60.184917,24.817989],[60.185033,24.817943],[60.185053,24.818151],[60.184937,24.818196],[60.184959,24.818419],[60.184825,24.818471],[60.184813,24.818346],[60.184791,24.818355],[60.184697,24.818392],[60.184667,24.818092],[60.184569,24.818131],[60.184551,24.817945],[60.184649,24.817906],[60.184641,24.817827],[60.184626,24.817667],[60.184527,24.817706],[60.184509,24.817519],[60.184608,24.81748],[60.184585,24.817253],[60.184487,24.817292],[60.184469,24.817107],[60.184567,24.817068],[60.184534,24.81673],[60.184436,24.816769],[60.184418,24.816585],[60.184517,24.816546],[60.184493,24.816306],[60.184394,24.816345],[60.184376,24.81616],[60.184475,24.816121],[60.18445,24.815865],[60.184513,24.815841],[60.184525,24.815956],[60.184552,24.815946],[60.184763,24.815862],[60.184845,24.816707],[60.185133,24.816593],[60.185189,24.817165]],"aliases":["R036"],"name":"Micronova","address":"Tietotie 3","children":["dept:cmat","dept:eea","dept:ele","dept:physics","nanofab","unit:nanofab","otanano","maukas-nova","CHEM","ELEC","SCI","micronova-ent-5081929212","micronova-ent-5081929217"],"osm_elements":[["way",7585092]],"entrances":[{"lat":60.184791,"lon":24.818355,"main":true},{"lat":60.184552,"lon":24.815946}],"label":"Micronova\n36"},{"id":"tuas","type":"building","latlon":[60.186878,24.819554],"outline":[[60.18701,24.817416],[60.187072,24.817439],[60.187082,24.817334],[60.187218,24.817388],[60.187198,24.817589],[60.18721,24.817593],[60.187284,24.817622],[60.187262,24.817874],[60.187185,24.817846],[60.187169,24.818015],[60.187246,24.818044],[60.187222,24.818301],[60.187202,24.818294],[60.18714,24.818271],[60.187137,24.818296],[60.187128,24.818401],[60.187157,24.818412],[60.187154,24.818442],[60.187152,24.818464],[60.187186,24.818478],[60.187245,24.818503],[60.187266,24.818321],[60.187339,24.818356],[60.187328,24.818454],[60.187335,24.818457],[60.187382,24.81848],[60.187359,24.818672],[60.187442,24.818711],[60.187419,24.818904],[60.187393,24.819127],[60.1875,24.819177],[60.187487,24.819291],[60.187436,24.819701],[60.18742,24.819824],[60.187317,24.819781],[60.187294,24.81997],[60.187394,24.820016],[60.18738,24.82014],[60.187368,24.820244],[60.187351,24.820236],[60.18713,24.820134],[60.187124,24.820187],[60.187011,24.820135],[60.187016,24.820078],[60.187006,24.820074],[60.186997,24.820071],[60.186991,24.820069],[60.186985,24.820125],[60.186836,24.820069],[60.186878,24.819554],[60.186884,24.819478],[60.186806,24.819449],[60.186837,24.819134],[60.186853,24.81914],[60.186912,24.819164],[60.186932,24.818948],[60.186873,24.818925],[60.186896,24.818686],[60.186956,24.818708],[60.186973,24.818524],[60.186912,24.818501],[60.186933,24.81827],[60.186998,24.818294],[60.187017,24.818093],[60.186952,24.818069],[60.186971,24.817849],[60.187035,24.817872],[60.187053,24.81767],[60.186989,24.817647],[60.18701,24.817416]],"aliases":["TUAS","R037","TU","AS"],"opening_hours":"Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off","address":"Maarintie 8","name":"TUAS","children":["dept:eea","dept:ele","dept:tuta","aaltoventuresprogram","tuas-s\u00e4hk\u00f6paja","tuas-printer-5105524127","tuas-printer-5105524126","amicatuas","ELEC","tuas-159xwing","tuas-x1xxwing","tuas-x5xxwing","tuas-1018","tuas-1021","tuas-1022","tuas-1023","tuas-1024","tuas-1171","tuas-1174","tuas-1194","tuas-1199","tuas-1200","tuas-1522","tuas-1621","tuas-AS2","tuas-Odeion","tuas-TU1","tuas-TU2","tuas-ent-289113873","tuas-ent-977658743","tuas-ent-330026233"],"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.","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)","osm_elements":[["way",29012757]],"entrances":[{"lat":60.187006,"lon":24.820074},{"lat":60.186997,"lon":24.820071},{"lat":60.186878,"lon":24.819554,"main":true}],"label":"TUAS\n37"},{"id":"r038","type":"building","latlon":[60.18468,24.830381],"outline":[[60.184545,24.830501],[60.184525,24.830366],[60.184498,24.830187],[60.184601,24.830169],[60.184767,24.830141],[60.184774,24.830193],[60.184838,24.830187],[60.184849,24.830492],[60.184804,24.830501],[60.184748,24.830512],[60.184747,24.830494],[60.184677,24.830508],[60.184677,24.830477],[60.184599,24.830491],[60.184545,24.830501]],"aliases":["R038","AYY","OK11"],"name":"Aalto-yliopiston ylioppilaskunta","name_en":"Aalto University Student Union","name_sv":"Aalto-universitetets studentk\u00e5r","address":"Otakaari 11","children":["AYY-servicepoint","r038-ent-1610326469","r038-ent-1610326471","r038-ent-1610326467"],"osm_elements":[["way",7589907]],"entrances":[{"lat":60.184601,"lon":24.830169},{"lat":60.184804,"lon":24.830501},{"lat":60.184599,"lon":24.830491}],"label":"AYY\n38"},{"id":"r039","type":"building","latlon":[60.183008,24.829878],"outline":[[60.183095,24.829752],[60.183046,24.829845],[60.183041,24.829835],[60.183024,24.829868],[60.183101,24.830033],[60.183018,24.830189],[60.183007,24.830166],[60.183,24.830179],[60.183104,24.830402],[60.183031,24.83054],[60.182953,24.830685],[60.18259,24.829905],[60.182741,24.829622],[60.18284,24.829834],[60.182847,24.829821],[60.182817,24.829758],[60.1829,24.829602],[60.182929,24.829665],[60.182947,24.829632],[60.182896,24.829523],[60.182931,24.829457],[60.182944,24.829433],[60.182898,24.829336],[60.182996,24.829152],[60.183406,24.830033],[60.183386,24.830072],[60.183346,24.830147],[60.18331,24.830214],[60.183095,24.829752]],"aliases":["R039"],"address":"Metallimiehenkuja 6-8","name":"Metallimiehenkuja 6-8","children":["panimo","r039-ent-5270776201","r039-ent-D"],"osm_elements":[["way",27464085]],"entrances":[{"lat":60.183031,"lon":24.83054},{"lat":60.182931,"lon":24.829457,"name":"D"}],"label":"39"},{"id":"r040","type":"building","latlon":[60.185924,24.832462],"outline":[[60.186028,24.832895],[60.185994,24.832691],[60.185985,24.832679],[60.185914,24.832484],[60.185924,24.832462],[60.185934,24.832439],[60.185962,24.832497],[60.185979,24.832501],[60.186066,24.832615],[60.18609,24.83271],[60.186091,24.832741],[60.186122,24.832877],[60.186136,24.832939],[60.186136,24.832979],[60.186181,24.83323],[60.186164,24.833241],[60.186152,24.833253],[60.186159,24.833296],[60.18608,24.833471],[60.186067,24.833476],[60.186052,24.833326],[60.186029,24.833089],[60.18598,24.833108],[60.185936,24.833307],[60.185929,24.833339],[60.185872,24.833219],[60.185894,24.833171],[60.185871,24.833124],[60.185959,24.832939],[60.185967,24.832933],[60.186028,24.832895]],"aliases":["T\u00e4ff\u00e4","R040","Urdsgjallar","OK22"],"name":"TF","name_en":"TF","name_sv":"Teknologf\u00f6reningen","address":"Otakaari 22","children":["tff","r040-ent-5111296238","r040-ent-5111323516","r040-ent-25468805"],"osm_elements":[["way",4252953]],"entrances":[{"lat":60.185924,"lon":24.832462,"main":true},{"lat":60.186164,"lon":24.833241},{"lat":60.186033,"lon":24.83313}],"label":"TF\n40"},{"id":"vare","type":"building","latlon":[60.185316,24.825587],"outline":[[60.185223,24.824873],[60.185297,24.824415],[60.185339,24.824277],[60.185412,24.824142],[60.185519,24.823948],[60.18559,24.824105],[60.185616,24.824074],[60.185705,24.82413],[60.185709,24.824132],[60.185717,24.824133],[60.185722,24.824135],[60.185814,24.82433],[60.185831,24.824365],[60.1859,24.824509],[60.185923,24.824524],[60.186009,24.824031],[60.186033,24.823982],[60.186037,24.823995],[60.186044,24.824001],[60.186048,24.823994],[60.186104,24.824099],[60.186029,24.824593],[60.185954,24.825062],[60.185907,24.825193],[60.185729,24.825545],[60.185724,24.825573],[60.18565,24.82604],[60.185543,24.825971],[60.185409,24.825797],[60.185335,24.825636],[60.185316,24.825587],[60.185297,24.82555],[60.185229,24.825484],[60.185134,24.825422],[60.185205,24.824979],[60.185223,24.824873]],"aliases":["R067","School of Arts, Design and Architecture"],"name":"V\u00e4re","name_sv":"Aalto-universitetets h\u00f6gskolan f\u00f6r konst, design och arkitektur byggnad V\u00e4re","address":"Otaniementie 14","children":["dept:architecture","dept:artmedia","dept:design","dept:film","medialab","servicedesk_vare","cafetoria","Kipsari","ARTS","vare-E","vare-F","vare-G","vare-J","vare-K","vare-L","vare-M","vare-O","vare-P","vare-Q","vare-R","vare-S","vare-ent-5880866309","vare-ent-4050038148","vare-ent-8719348753","vare-ent-14"],"osm_elements":[["way",941553968]],"entrances":[{"lat":60.185831,"lon":24.824365},{"lat":60.185316,"lon":24.825587,"name":"14","main":true},{"lat":60.185724,"lon":24.825546},{"lat":60.185935,"lon":24.824532}],"label":"V\u00e4re\n67"},{"id":"metroA","type":"building","latlon":[60.184594,24.825564],"outline":[[60.18462,24.825222],[60.184708,24.825438],[60.184643,24.825836],[60.184614,24.825804],[60.184588,24.825772],[60.18451,24.825678],[60.184448,24.825543],[60.18462,24.825222]],"aliases":["Metro Centre","Metro entrance A"],"parents":["abloc"],"children":["metroA-ent-5026528602"],"osm_elements":[["way",402618641]],"entrances":[{"lat":60.184614,"lon":24.825804}]},{"id":"R068","type":"building","latlon":[60.185924,24.823465],"outline":[[60.186095,24.823107],[60.186229,24.822856],[60.186076,24.822691],[60.186056,24.822678],[60.185997,24.822641],[60.185929,24.823078],[60.185923,24.823117],[60.185901,24.823177],[60.185716,24.82352],[60.185685,24.823627],[60.185616,24.824074],[60.185705,24.82413],[60.185709,24.824132],[60.185717,24.824133],[60.185722,24.824135],[60.185814,24.82433],[60.185996,24.823961],[60.186032,24.82385],[60.186101,24.823395],[60.186119,24.823342],[60.186099,24.823148],[60.186095,24.823107]],"aliases":["Kauppis","R068"],"name":"Aalto-yliopisto Kauppakorkeakoulu","name_en":"School of Business","address":"Otaniementie 14","children":["dept:accounting","dept:economics","dept:finance","dept:infosrv","dept:management","dept:marketing","unit:cikr","kylteri","arvo","BIZ","biz-T","biz-U","biz-V","biz-X","biz-Y","R068-T003","R068-T004","R068-U006","R068-V001","R068-V002","R068-ent-6187837675"],"osm_elements":[["way",941553966]],"entrances":[{"lat":60.186099,"lon":24.823148}],"label":"68"},{"id":"abloc","type":"building","latlon":[60.184774,24.825804],"outline":[[60.185134,24.825422],[60.185205,24.824979],[60.185223,24.824873],[60.185297,24.824415],[60.185259,24.824365],[60.18518,24.824199],[60.185,24.824545],[60.184966,24.824474],[60.184914,24.824365],[60.184726,24.824726],[60.184702,24.824799],[60.184687,24.824876],[60.184637,24.825184],[60.18462,24.825222],[60.184448,24.825543],[60.18451,24.825678],[60.184588,24.825772],[60.184614,24.825804],[60.184643,24.825836],[60.18459,24.826157],[60.184576,24.826244],[60.184688,24.826318],[60.184755,24.82591],[60.184774,24.825804],[60.18478,24.825771],[60.184811,24.825708],[60.185003,24.825333],[60.185017,24.825305],[60.185134,24.825422]],"opening_hours":"Mo-Sa 06:00-24:00; Su 09:00-24:00","name":"A Bloc","address":"Otaniementie 12","children":["metroA","abloc-rkioski","alko","abloc-apteekki","abloc-atm-otto","terveystalo","espressohouse","kot","whothexxxisalice","kmarket","konnichiwa","abloc-alepa","abloc-foodandco","abloc-eatpoke","mezame","abloc-wickedrabbit","abloc-A","abloc-D","abloc-I","abloc-N","abloc-ent-4050038158","abloc-ent-5026528602","abloc-ent-5871819458","abloc-ent-A"],"osm_elements":[["way",941553969]],"entrances":[{"lat":60.184702,"lon":24.824799},{"lat":60.184614,"lon":24.825804},{"lat":60.184774,"lon":24.825804,"name":"A","main":true},{"lat":60.185003,"lon":24.825333}]},{"id":"metroB","type":"building","latlon":[60.185208,24.820743],"outline":[[60.185237,24.820702],[60.185208,24.820743],[60.185167,24.820811],[60.185278,24.821059],[60.185228,24.82113],[60.185323,24.821389],[60.185457,24.82121],[60.185237,24.820702]],"name":"Metro entrance B","address":"Tietotie 4 B","children":["metroB-ent-4104851062"],"osm_elements":[["way",408595707]],"entrances":[{"lat":60.185208,"lon":24.820743,"main":true}]},{"id":"marsio","type":"building","latlon":[60.186338,24.826321],"outline":[[60.186695,24.825486],[60.186526,24.825277],[60.186466,24.825204],[60.186425,24.825153],[60.186345,24.825053],[60.186273,24.825831],[60.186183,24.826128],[60.186338,24.826321],[60.186396,24.826392],[60.186505,24.826527],[60.186643,24.826697],[60.186673,24.8266],[60.186727,24.826422],[60.186555,24.826209],[60.186496,24.826136],[60.186505,24.826107],[60.186695,24.825486]],"aliases":["R044","Aalto Studios","OK2","OK2"],"opening_hours":"Mo-Th 07:45-21:00; Fr 07:45-20:00; Sa-Su off; PH off","name":"Marsio","address":"Otakaari 2","children":["moo","ARTS","aaltoshop","marsio-1230","marsio-Digital Studio","marsio-Event Studio","marsio-Stage","marsio-ent-A","marsio-ent-12141949984"],"osm_elements":[["way",1119443893]],"entrances":[{"lat":60.186338,"lon":24.826321,"name":"A","main":true},{"lat":60.186505,"lon":24.826527}],"label":"44"},{"id":"kide","type":"building","latlon":[60.186666,24.823414],"outline":[[60.186917,24.822973],[60.186641,24.822864],[60.18661,24.822962],[60.186547,24.823167],[60.186449,24.824078],[60.186546,24.824199],[60.186564,24.824138],[60.186799,24.823373],[60.186917,24.822973]],"aliases":["R045","KM1"],"opening_hours":"Mo-Fr 07:45-15:30; PH off","name":"Kide","address":"Konemiehentie 1","children":["dept:dice","dept:physics","ELEC","SCI","kide-1501","kide-1571","kide-1572","kide-ent-10238806258"],"osm_elements":[["way",1119443892]],"entrances":[{"lat":60.18661,"lon":24.822962}],"label":"45"},{"id":"r101","type":"building","latlon":[60.171984,24.922667],"outline":[[60.171747,24.923334],[60.171743,24.923224],[60.171721,24.923218],[60.171611,24.923193],[60.17153,24.923172],[60.171612,24.921933],[60.17177,24.921849],[60.171922,24.921771],[60.171982,24.92174],[60.171982,24.921726],[60.172081,24.921706],[60.172103,24.922089],[60.172114,24.922083],[60.172149,24.922096],[60.172153,24.922153],[60.172119,24.922182],[60.172108,24.922185],[60.172127,24.922478],[60.172149,24.922472],[60.172148,24.922456],[60.172164,24.922442],[60.172184,24.922446],[60.172213,24.922949],[60.17223,24.92324],[60.172138,24.923312],[60.172133,24.923316],[60.172124,24.923269],[60.172073,24.923277],[60.172058,24.923017],[60.171957,24.923043],[60.17194,24.923324],[60.171859,24.923319],[60.171761,24.923332],[60.171747,24.923334]],"aliases":["T\u00f6\u00f6l\u00f6 P\u00e4\u00e4rakennus","T\u00f6\u00f6l\u00f6 main building"],"address":"Runeberginkatu 14-16, Helsinki.","children":["r101-ent-298644469"],"osm_elements":[["way",124297669],["relation","1697955"]],"entrances":[{"lat":60.171761,"lon":24.923332}]},{"id":"domusgadium","type":"building","latlon":[60.169539,24.921634],"outline":[[60.169766,24.921224],[60.169746,24.921544],[60.169731,24.921547],[60.169737,24.921649],[60.169463,24.921729],[60.169422,24.922315],[60.169373,24.922304],[60.16927,24.922274],[60.169337,24.921351],[60.169444,24.921382],[60.169474,24.921391],[60.16948,24.921311],[60.169766,24.921224]],"address":"Mechelininkatu 3c","name":"Domus Gaudium","children":["unit:aaltoee","domusgadium-ent-11762183814","domusgadium-ent-317741521"],"osm_elements":[["way",96286289],["node","1116096931"]],"entrances":[{"lat":60.169373,"lon":24.922304},{"lat":60.169444,"lon":24.921382}]},{"id":"metsahovi","type":"building","latlon":[60.21809,24.393158],"outline":[[60.218233,24.393306],[60.218225,24.393401],[60.217927,24.393304],[60.217933,24.393236],[60.217904,24.393225],[60.217875,24.393213],[60.217882,24.393187],[60.217889,24.393161],[60.217963,24.393185],[60.217969,24.393108],[60.218108,24.393153],[60.218119,24.393012],[60.218049,24.392989],[60.218066,24.392785],[60.218241,24.392842],[60.218227,24.393013],[60.218187,24.393],[60.218173,24.393175],[60.218215,24.393189],[60.218208,24.393275],[60.218221,24.393279],[60.218219,24.393301],[60.218233,24.393306]],"address":"Mets\u00e4hovintie 114","name":"Mets\u00e4hovi main building","children":["unit:metsahovi"],"osm_elements":[["way",223131392]],"entrances":[]},{"id":"dept:architecture","type":"department","name_en":"Department of Architecture","name_fi":"Arkkitehtuurin laitos","name_sv":"Institutionen f\u00f6r arkitektur","parents":["vare","ARTS","A"],"url":"http://architecture.aalto.fi/","url_en":"http://architecture.aalto.fi/en/"},{"id":"dept:artmedia","type":"department","name_en":"Department of Art and Media","name_fi":"Taiteen ja median laitos","name_sv":"Institutionen f\u00f6r konst och media","parents":["vare","ARTS"],"children":["medialab"],"url_en":"https://www.aalto.fi/en/department-of-art-and-media","url_fi":"https://www.aalto.fi/fi/taiteen-ja-median-laitos"},{"id":"dept:design","type":"department","name_en":"Department of Design","name_fi":"Muotoilun laitos","name_sv":"Institutionen f\u00f6r design","parents":["vare","ARTS"],"url":"http://design.aalto.fi/","url_en":"http://design.aalto.fi/en/"},{"id":"dept:film","type":"department","aliases":["ELO"],"name_en":"Department of Film, Television and Scenography","name_fi":"Elokuvataiteen ja lavastustaiteen laitos","name_sv":"Institutionen f\u00f6r filmkonst och scenografi","parents":["vare","ARTS"],"url":"http://elo.aalto.fi/","url_en":"http://elo.aalto.fi/en/"},{"id":"dept:pupa","type":"department","name_en":"Pori Urban Platform (PUPA)","name_fi":"Porin yliopistokeskus (PUPA)","url_en":"http://taide.aalto.fi/en/pori/","url_fi":"http://taide.aalto.fi/fi/pori/"},{"id":"dept:accounting","type":"department","name_en":"Department of Accounting","name_fi":"Laskentatoimen laitos","parents":["R068","BIZ"],"url_en":"http://accounting.aalto.fi/en/","url_fi":"accounting.aalto.fi/fi/"},{"id":"dept:economics","type":"department","name_en":"Department of Economics","name_fi":"Taloustieteen laitos","parents":["R068","BIZ"],"note":"Department located on Arabia campus, Helsinki.","url_en":"http://economics.aalto.fi/en/","url_fi":"http://economics.aalto.fi/fi/"},{"id":"dept:finance","type":"department","name_en":"Department of Finance","name_fi":"Rahoituksen laitos","parents":["R068","BIZ"],"url_en":"http://finance.aalto.fi/en/","url_fi":"http://finance.aalto.fi/fi/"},{"id":"dept:infosrv","type":"department","name_en":"Department of Information and Service Economy","name_fi":"Tieto- ja palvelutalouden laitos","parents":["R068","BIZ"],"url_en":"http://information.aalto.fi/en/","url_fi":"http://information.aalto.fi/fi/"},{"id":"dept:management","type":"department","name_en":"Department of Management","name_fi":"Johtamisen laitos","parents":["R068","BIZ"],"url_en":"http://management.aalto.fi/en/","url_fi":"http://management.aalto.fi/fi"},{"id":"dept:marketing","type":"department","name_en":"Department of Marketing","name_fi":"Markkinoinnin laitos","parents":["R068","BIZ"],"url_en":null,"url_fi":null},{"id":"dept:cmet","type":"department","name_en":"Department of Chemical and Metallurgical Engineering","name_fi":"Kemian tekniikan ja metallurgian laitos","parents":["r011","CHEM"],"url_en":"http://cmet.aalto.fi/en/","url_fi":"http://cmet.aalto.fi/fi/"},{"id":"dept:cmat","type":"department","aliases":["CMAT"],"name_en":"Department of Chemistry and Materials Science","name_fi":"Kemian ja materiaalitieteen laitos","name_sv":"Institutionen f\u00f6r materialteknik","parents":["r011","micronova","CHEM"],"url_en":"http://cmat.aalto.fi/en/","url_fi":"http://cmat.aalto.fi/fi/"},{"id":"dept:bio","type":"department","aliases":["Bio2"],"name_en":"Department of Bioproducts and Biosystems","name_fi":"Biotuotteiden ja biotekniikan laitos","name_sv":"Institutionen f\u00f6r bio- och kemiteknik","parents":["r013","CHEM"]},{"id":"dept:eea","type":"department","name_en":"Department of Electrical Engineering and Automation","name_fi":"S\u00e4hk\u00f6tekniikan ja automaation laitos","name_sv":"Instititutionen f\u00f6r elektroteknik och automation","parents":["tuas","F","agrid","micronova","ELEC"],"url_en":"http://eea.aalto.fi/en/","url_fi":"http://eea.aalto.fi/fi/"},{"id":"dept:ele","type":"department","name_en":"Department of Electronics and Nanoengineering","name_fi":"Elektroniikan ja nanotekniikan laitos","name_sv":"Institutionen f\u00f6r elektronik och nanoteknik","parents":["micronova","tuas","ELEC"],"url_en":"http://ele.aalto.fi/en/","url_fi":"http://ele.aalto.fi/fi/"},{"id":"dept:dice","type":"department","name_en":"Information and Communications Engineering","name_fi":"Informaatio- ja tietoliikennetekniikan laitos","parents":["agrid","kide","ELEC"],"url_en":"https://dice.aalto.fi/en/","url_fi":"https://dice.aalto.fi/fi/"},{"id":"dept:mecheng","type":"department","name_en":"Department of Mechanical Engineering","name_fi":"Konetekniikan laitos","parents":["K1","K2","K3","K4","r016","ENG"],"url_en":"http://mecheng.aalto.fi/en/","url_fi":"http://mecheng.aalto.fi/fi/"},{"id":"dept:civileng","type":"department","name_en":"Department of Civil Engineering","name_fi":"Rakennustekniikan laitos","parents":["r002","ENG"],"url_en":"http://civileng.aalto.fi/en/","url_fi":"http://civileng.aalto.fi/fi/"},{"id":"dept:builtenv","type":"department","name_en":"Department of Built Environment","name_fi":"Rakennetun ymp\u00e4rist\u00f6n laitos","parents":["K1","r016","ENG"],"url_en":"http://builtenv.aalto.fi/en/","url_fi":"http://builtenv.aalto.fi/fi/"},{"id":"dept:physics","type":"department","name_en":"Department of Applied Physics","name_fi":"Teknillisen fysiikan laitos","name_sv":"Institutionen f\u00f6r teknisk fysik","parents":["main","micronova","nanotalo","kide","SCI"],"url_en":"http://physics.aalto.fi/en/","url_fi":"http://physics.aalto.fi/"},{"id":"dept:cs","type":"department","aliases":["CS"],"name_en":"Department of Computer Science","name_fi":"Tietotekniikan laitos","name_sv":"Institutionen f\u00f6r datateknik","parents":["T","SCI"],"children":["unit:hiit"],"url_en":"http://cs.aalto.fi/en/","url_fi":"http://cs.aalto.fi/fi/"},{"id":"dept:tuta","type":"department","name_en":"Department of Industrial Engineering and Management","name_fi":"Tuotantotalouden laitos","name_sv":"Institutionen f\u00f6r produktionsekonomi","parents":["tuas","SCI"],"url_en":"http://tuta.aalto.fi/en/","url_fi":"http://tuta.aalto.fi/fi/"},{"id":"dept:math","type":"department","name_en":"Department of Mathematics and Systems Analysis","name_fi":"Matematiikan ja systeemianalyysin laitos","name_sv":"Institutionen f\u00f6r matematik och systemanlys","parents":["main","SCI"],"note":"M wing (Y entrance closest), 2nd-3rd floors","url_en":"http://math.aalto.fi/en/","url_fi":"http://math.aalto.fi/fi/"},{"id":"dept:nbe","type":"department","name_en":"Department of Neuroscience and Biomedical Engineering","name_fi":"Neurotieteen ja l\u00e4\u00e4ketieteellisen tekniikan laitos","name_sv":"Institutionen f\u00f6r neurovetenskap och biomedicinsk teknik","parents":["F","SCI"],"note":"Rakentajanaukio 2 C entrance only, 2nd-3rd floors","url_en":"http://nbe.aalto.fi/en/","url_fi":"http://nbe.aalto.fi/fi/"},{"id":"itservices","type":"unit","name":"IT Services","parents":["main","U"]},{"id":"acousticslab","type":"unit","latlon":[60.1887,24.8313],"name":"Acoustics Laboratory","parents":["agrid"],"url":"http://acousticslab.aalto.fi/en/"},{"id":"agrid-tapaus","type":"unit","name":"Tapaus","parents":["agrid","agrid-CN"],"url":"https://www.tapaus.fi/","floor":2},{"id":"agrid-agridimpact","type":"unit","name":"A Grid Impact","parents":["agrid","agrid-CN"],"floor":3},{"id":"agrid-until","type":"unit","aliases":["UNTIL"],"name":"United Nations Technology Innovanion Labs","parents":["agrid","agrid-CN"],"floor":1},{"id":"agrid-startupcenter","type":"unit","name":"Aalto Start-up center","parents":["agrid","agrid-CS"],"url":"https://startupcenter.aalto.fi/"},{"id":"agrid-esa","type":"unit","aliases":["ESA"],"name":"European Space Agency","parents":["agrid","agrid-CS"],"floor":3},{"id":"ami-center","type":"unit","name":"AMI-Centre","parents":["agrid","agrid-I"],"url":"http://ani.aalto.fi/en/ami_centre/","floor":2},{"id":"ami-center","type":"unit","name":"Aalto TMS","parents":["agrid","agrid-I"],"url":"http://ani.aalto.fi/en/ami_centre/","floor":4},{"id":"ami-center","type":"unit","name":"Aalto Behavorial Laboratory","parents":["agrid","agrid-I"],"url":"http://ani.aalto.fi/en/ami_centre/","floor":4},{"id":"designfactory","type":"unit","latlon":[60.187948,24.824377],"aliases":["ADF"],"name":"Aalto Design Factory","address":"Puumiehenkuja 5 A","parents":["K3"],"url":"https://designfactory.aalto.fi/","osm_elements":[["node","11107521668"]]},{"id":"startupsauna","type":"unit","name":"Startup Sauna","parents":["K3"]},{"id":"nanofab","type":"unit","name":"Nanofab","parents":["micronova"]},{"id":"aaltoventuresprogram","type":"unit","name":"Aalto Ventures Program","parents":["tuas"]},{"id":"itservicedesks","type":"unit","name":"IT Service Desks","name_fi":"IT K\u00e4ytt\u00e4j\u00e4palvelut","parents":["servicedesk_kandi","servicedesk_vare"],"url":"https://www.aalto.fi/en/services/it-service-desk-contact-information-and-service-hours"},{"id":"medialab","type":"unit","name":"Aalto Media Lab","parents":["vare","dept:artmedia"]},{"id":"unit:aaltoee","type":"unit","aliases":["Aalto EE"],"name_en":"Aalto University Executive Education","parents":["domusgadium","BIZ"],"url":"http://www.aaltoee.com/"},{"id":"unit:cikr","type":"unit","aliases":["CKIR"],"name_en":"Center for Knowledge and Innovation Research","name_fi":"Tiedon ja innovaatioiden tutkimuskeskus","parents":["R068","BIZ"],"url_en":"http://ckir.aalto.fi/en/","url_fi":"http://ckir.aalto.fi/fi/"},{"id":"unit:mikkeli","type":"unit","name_en":"Mikkeli Campus","name_fi":"Mikkelin yksikk\u00f6","parents":["BIZ"],"url_en":"http://biz.aalto.fi/en/studies/mikkeli/","url_fi":"http://biz.aalto.fi/fi/studies/mikkeli/"},{"id":"unit:nanofab","type":"unit","aliases":["Micronova"],"name":"Aalto Nanofab","parents":["micronova","ELEC"],"url":"http://www.micronova.fi/"},{"id":"unit:metsahovi","type":"unit","name_en":"Mets\u00e4hovi Radio Observatory","name_fi":"Mets\u00e4hovin radiotutkimusasema","name_sv":"Skogg\u00e5rd radioforskningsinstitut","parents":["metsahovi","ELEC"],"url_en":"http://metsahovi.aalto.fi/en/","url_fi":"http://metsahovi.aalto.fi/fi/"},{"id":"unit:hiit","type":"unit","aliases":["HIIT"],"name_en":"Helsinki Institute for Information Technology","name_fi":"Tietotekniikan tutkimuslaitos","name_sv":"Forskningsinstitutet f\u00f6r informationsteknologi","parents":["T","dept:cs"],"url_en":"http://www.hiit.fi/"},{"id":"otanano","type":"unit","name":"OtaNano","parents":["nanotalo","micronova"],"url":"https://otanano.fi"},{"id":"space21","type":"service","latlon":[60.18279,24.825633],"opening_hours":"24/7","name":"Space 21","address":"Vuorimiehentie 2 A","parents":["r012"],"osm_elements":[["node","9569447991"]]},{"id":"r020-atm","type":"service","latlon":[60.184099,24.830737],"aliases":["ATM"],"opening_hours":"24/7","name":"Nosto","parents":["r020"],"osm_elements":[["node","263964909"]]},{"id":"shortcut","type":"service","latlon":[60.184047,24.830887],"opening_hours":"Mo-Fr 09:00-20:00; Sa 09:00-17:00","name":"Shortcut","parents":["r020"],"osm_elements":[["node","8912114264"]]},{"id":"pukupesu","type":"service","latlon":[60.183997,24.830957],"name":"Puku Pesu","parents":["r020"],"osm_elements":[["node","9044279913"]]},{"id":"tapiolan-juhlapuku","type":"service","latlon":[60.183947,24.831027],"name":"Tapiolan juhlapuku","address":"Otakaari 27","parents":["r020"],"osm_elements":[["node","9044279914"]]},{"id":"library_cs","type":"service","latlon":[60.187022,24.821072],"opening_hours":"Mo-Th 08:00-19:45; Fr 08:00-17:45; Jun-Aug 08:00-15:30; PH off","name":"Learning Hub Greenhouse","parents":["T"],"osm_elements":[["node","5012868057"]]},{"id":"tuas-s\u00e4hk\u00f6paja","type":"service","latlon":[60.187306,24.819425],"name":"S\u00e4hk\u00f6paja","parents":["tuas"],"osm_elements":[["node","6817211766"]]},{"id":"abloc-rkioski","type":"service","latlon":[60.184778,24.825563],"opening_hours":"Mo-Fr 06:30-20:00; Sa 09:00-20:00","name":"R-Kioski","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5870791841"]]},{"id":"alko","type":"service","latlon":[60.184994,24.82502],"opening_hours":"Mo-Sa 11:00-18:00","name":"Alko","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5870791844"]]},{"id":"abloc-apteekki","type":"service","latlon":[60.185036,24.82496],"aliases":["Pharmacy"],"opening_hours":"Mo-Fr 10:00-20:00; Sa 10:00-18:00","name":"Otaniemen sivuapteekki","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5870791853"]]},{"id":"convroom","type":"service","latlon":[60.186081,24.830833],"outline":[[60.1861,24.830852],[60.186063,24.830873],[60.186054,24.830805],[60.18609,24.830784],[60.1861,24.830852]],"name":"Keskustelutila","osm_elements":[["way",515942280]]},{"id":"abloc-atm-otto","type":"service","latlon":[60.18501,24.825235],"aliases":["Otto-automaatti","Pankkiautomaatti","Automated teller machine"],"name":"ATM","parents":["abloc"],"osm_elements":[["node","5871819587"]]},{"id":"AYY-servicepoint","type":"service","latlon":[60.184617,24.830426],"aliases":["AYY keskustoimisto","Keto"],"opening_hours":"Mo,We,Fr 12:00-15:00; 10:00-16:00 \"First weekday of each month\"","name":"AYY J\u00e4senpalvelupisteet","name_en":"AYY service point","address":"Otakaari 11","parents":["r038"],"osm_elements":[["node","263978267"]]},{"id":"secureprint","type":"service","name":"All printers (secureprint)","parents":["T-printer-5104046531","T-printer-5105524124","T-printer-5105524125","F-printer-5113813894","r011-printer-5130529215","main-printer-5131418798","maari-printer-5171375890","nanotalo-printer-5171375893","K1-printer-5232638597","r002-printer-5232638615","kirjasto-printer-5120785982","tuas-printer-5105524127","tuas-printer-5105524126","maari-printer-5171375891","kirjasto-printer-5120785976","agrid-printer-5389688266","agrid-printer-5389688267","main-printer-5113813861"]},{"id":"cs-it","type":"service","latlon":[60.18691,24.82092],"aliases":["CS-IT","Aalto Scientific Computing","ASC"],"name":"Computer Science IT","parents":["T"],"note":"Room A243. Access is possible from the atrium area, bridges on the second floor.\n","floor":2},{"id":"elepaja","type":"service","name":"Elepaja","parents":["agrid"],"url":"https://elepaja.aalto.fi"},{"id":"servicedesk_kandi","type":"service","latlon":[60.18692,24.82891],"name":"IT Service Desk Kandi","address":"Room U133a","parents":["main"],"children":["itservicedesks"],"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"},{"id":"servicedesk_vare","type":"service","latlon":[60.18557,24.82412],"name":"IT Service Desk V\u00e4re","address":"Room R101","parents":["vare"],"children":["itservicedesks"],"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","floor":1},{"id":"lightrail","type":"service","latlon":[60.184421,24.827302],"aliases":["Tram","Tram 13","Line 13"],"name":"Light Rail","name_sv":"Snabbsp\u00e5rv\u00e4gs","name_fi":"Pikaraitio","osm_elements":[["node","9574731673"]]},{"id":"vare-postbox","type":"service","latlon":[60.184707,24.824761],"aliases":["Mail box"],"name":"Postilaatikko","name_en":"Post box","note":"Collection times Mo-Fr 16:00","osm_elements":[["node","11430420741"]]},{"id":"T-printer-5104046531","type":"service","latlon":[60.187055,24.821137],"name":"Printer (secureprint)","parents":["T","secureprint"],"note":"In Learning Hub","nosearch":true,"floor":1,"osm_elements":[["node","5104046531"]]},{"id":"T-printer-5105524124","type":"service","latlon":[60.18698,24.821911],"name":"Printer (secureprint)","parents":["T","secureprint"],"nosearch":true,"floor":2,"osm_elements":[["node","5105524124"]]},{"id":"T-printer-5105524125","type":"service","latlon":[60.18698,24.820516],"name":"Printer (secureprint)","parents":["T","secureprint"],"nosearch":true,"floor":2,"osm_elements":[["node","5105524125"]]},{"id":"F-printer-5113813894","type":"service","latlon":[60.188296,24.829888],"name":"Printer (secureprint)","parents":["F","secureprint"],"note":"Main lobby","nosearch":true,"floor":1,"osm_elements":[["node","5113813894"]]},{"id":"r011-printer-5130529215","type":"service","latlon":[60.183585,24.824154],"name":"Printer (secureprint)","parents":["r011","secureprint"],"nosearch":true,"floor":2,"osm_elements":[["node","5130529215"]]},{"id":"main-printer-5131418798","type":"service","latlon":[60.186135,24.830179],"name":"Printer (secureprint)","parents":["main","secureprint"],"nosearch":true,"floor":-1,"osm_elements":[["node","5131418798"]]},{"id":"maari-printer-5171375890","type":"service","latlon":[60.189415,24.825909],"name":"Printer (secureprint)","parents":["maari","secureprint"],"nosearch":true,"floor":3,"osm_elements":[["node","5171375890"]]},{"id":"nanotalo-printer-5171375893","type":"service","latlon":[60.18697,24.825429],"name":"Printer (secureprint)","parents":["nanotalo","secureprint"],"nosearch":true,"floor":1,"osm_elements":[["node","5171375893"]]},{"id":"K1-printer-5232638597","type":"service","latlon":[60.187115,24.827102],"name":"Printer (secureprint)","parents":["K1","secureprint"],"nosearch":true,"floor":1,"osm_elements":[["node","5232638597"]]},{"id":"r002-printer-5232638615","type":"service","latlon":[60.186876,24.831115],"name":"Printer (secureprint)","parents":["r002","secureprint"],"nosearch":true,"floor":2,"osm_elements":[["node","5232638615"]]},{"id":"kirjasto-printer-5120785982","type":"service","latlon":[60.185019,24.827531],"name":"Printer (secureprint) 105b","parents":["kirjasto","secureprint"],"ref":"105b","nosearch":true,"floor":1,"osm_elements":[["node","5120785982"]]},{"id":"tuas-printer-5105524127","type":"service","latlon":[60.187098,24.818379],"name":"Printer (secureprint) 1177","parents":["tuas","secureprint"],"ref":"1177","nosearch":true,"floor":1,"osm_elements":[["node","5105524127"]]},{"id":"tuas-printer-5105524126","type":"service","latlon":[60.187177,24.819234],"name":"Printer (secureprint) 1621","parents":["tuas","secureprint"],"ref":"1621","nosearch":true,"floor":1,"osm_elements":[["node","5105524126"]]},{"id":"maari-printer-5171375891","type":"service","latlon":[60.189459,24.825959],"name":"Printer (secureprint) 169","parents":["maari","secureprint"],"ref":"169","nosearch":true,"floor":1,"osm_elements":[["node","5171375891"]]},{"id":"kirjasto-printer-5120785976","type":"service","latlon":[60.184783,24.82798],"name":"Printer (secureprint) 212a","parents":["kirjasto","secureprint"],"ref":"212a","nosearch":true,"floor":2,"osm_elements":[["node","5120785976"]]},{"id":"agrid-printer-5389688266","type":"service","latlon":[60.18902,24.830973],"name":"Printer (secureprint) D","parents":["agrid","secureprint"],"ref":"D","nosearch":true,"floor":2,"osm_elements":[["node","5389688266"]]},{"id":"agrid-printer-5389688267","type":"service","latlon":[60.189039,24.830956],"name":"Printer (secureprint) D","parents":["agrid","secureprint"],"ref":"D","nosearch":true,"floor":3,"osm_elements":[["node","5389688267"]]},{"id":"main-printer-5113813861","type":"service","latlon":[60.186929,24.828297],"name":"Printer (secureprint) U114b","parents":["main","secureprint"],"ref":"U114b","nosearch":true,"floor":1,"osm_elements":[["node","5113813861"]]},{"id":"startingpoint","type":"service","latlon":[60.18655,24.8287],"name":"Starting Point","parents":["main"],"opening_hours":"Mo-Fr 11:00-13:00; PH off","ref":"Y199a"},{"id":"studentservices","type":"service","name":"Student services","parents":["main"]},{"id":"taxi-metro","type":"service","latlon":[60.18432,24.827134],"aliases":["Taksi"],"name":"Taxi","note":"Usually you will call for one instead. L\u00e4hitaksi phone=0100 7300","osm_elements":[["node","5020264820"]]},{"id":"terveystalo","type":"service","latlon":[60.184267,24.830751],"opening_hours":"Mo-Th 08:00-16:00, Fr 08:00-14:00","name":"Terveystalo Otaniemi","parents":["abloc"],"osm_elements":[["node","9044279912"]]},{"id":"tervystalo-ablanc","type":"service","latlon":[60.184267,24.830751],"opening_hours":"Mo-Th 08:00-16:00, Fr 08:00-14:00","name":"Tervystalo A-blanc","parents":["r020"],"osm_elements":[["node","9044279912"]]},{"id":"unisport","type":"service","name":"Unisport","parents":["r028"]},{"id":"alvari","type":"restaurant","latlon":[60.1856,24.827006],"opening_hours":"Mo-Th 10:45-17:15; Fr 10:45-15:00; PH off","name":"Alvari","address":"Otakaari 1","parents":["main"],"osm_elements":[["node","301814516"]]},{"id":"studenthub","type":"location","latlon":[60.186559,24.828316],"outline":[[60.186737,24.828303],[60.186692,24.828586],[60.186292,24.828334],[60.186335,24.828053],[60.186737,24.828303]],"name":"Opiskelija Hub","name_en":"Student Hub","name_sv":"Studenthubb","parents":["main"],"osm_elements":[["way",514232691]]},{"id":"factory","type":"restaurant","latlon":[60.188863,24.831998],"opening_hours":"Mo-Fr 10:30-14:00","name":"Factory","parents":["agrid"],"osm_elements":[["node","5012868028"]]},{"id":"agrid-havajava","type":"cafe","latlon":[60.189028,24.830588],"opening_hours":"Mo-Fr 08:00-16:00; PH off","name":"Hav a Java","parents":["agrid"],"osm_elements":[["node","5389688275"]]},{"id":"sodexokone","type":"restaurant","latlon":[60.187085,24.826558],"opening_hours":"Mo-Fr 08:15-14:30; Mo-Fr 10:30-14:00 \"lunch\"; May 25-Aug 27 off; PH off","name":"Sodexo: Kone","address":"Otakaari 4","parents":["K1"],"osm_elements":[["node","589913032"]]},{"id":"tasteat","type":"restaurant","latlon":[60.183083,24.825076],"opening_hours":"Mo-Fr 10:30-14:00; PH off","name":"Tasteat","address":"Vuorimiehentie 2","parents":["r012"],"osm_elements":[["node","2381696675"]]},{"id":"bakedbyeli","type":"cafe","latlon":[60.184712,24.827668],"opening_hours":"Mo-Th 08:00-20:00; Fr 08:00-18:00; PH off","name":"Baked by Eli","parents":["kirjasto"],"osm_elements":[["node","5012868053"]]},{"id":"aaltopahvi","type":"shopping","latlon":[60.184595,24.827675],"opening_hours":"Mo 10:00-18:00; Tu-Th 10:00-17:00; PH 10:00-15:00; Fr 10:00-15:00","name":"Pahvi","address":"Otaniementie 9","parents":["kirjasto"],"osm_elements":[["node","6115098577"]]},{"id":"carre","type":"cafe","latlon":[60.185045,24.832179],"opening_hours":"Mo-Fr 08:30-14:30; PH off","name":"Cafe Carr\u00e9","parents":["dipoli"],"osm_elements":[["node","5022009311"]]},{"id":"reima","type":"restaurant","latlon":[60.185148,24.832466],"opening_hours":"Mo-Fr 10:30-19:00 ; Sa 10:30-15:00; PH off","name":"Reima","parents":["dipoli"],"osm_elements":[["node","5022009310"]]},{"id":"tenhola","type":"cafe","latlon":[60.184817,24.832422],"opening_hours":"Mo-Fr 16:00-22:00; Sa 11:00-15:00; PH off","name":"Tenhola","parents":["dipoli"],"osm_elements":[["node","5022009278"]]},{"id":"metso","type":"restaurant","latlon":[60.184979,24.831768],"opening_hours":"Mo-Sa 11:00-22:00; PH off","name":"Metso","parents":["dipoli"],"osm_elements":[["node","5022009279"]]},{"id":"taproomd20","type":"restaurant","latlon":[60.184303,24.830488],"opening_hours":"Tu-Th 16:00-22:00; Fr-Sa 16:00-23:15","name":"Taproom d20","parents":["r020"],"osm_elements":[["node","9738013085"]]},{"id":"r022","type":"otherbuilding","latlon":[60.182108,24.83201],"outline":[[60.181645,24.832771],[60.181581,24.832568],[60.182035,24.831989],[60.182017,24.831931],[60.181995,24.831959],[60.181968,24.831873],[60.181854,24.832019],[60.181798,24.831842],[60.182273,24.831235],[60.182323,24.831393],[60.182297,24.831426],[60.18232,24.831502],[60.182447,24.83134],[60.182503,24.831516],[60.182283,24.831796],[60.182251,24.831692],[60.182281,24.831654],[60.182267,24.83161],[60.182065,24.831867],[60.182121,24.832043],[60.182174,24.832211],[60.182337,24.832003],[60.182432,24.832303],[60.182363,24.832393],[60.182101,24.832735],[60.182002,24.832433],[60.182127,24.832273],[60.182101,24.83219],[60.181973,24.832344],[60.181761,24.832624],[60.181645,24.832771]],"aliases":["R022"],"name":"Kivimiehen koulu","address":"L\u00e4mp\u00f6miehenkuja 2","osm_elements":[["way",26608151]]},{"id":"r028","type":"auxbuilding","latlon":[60.184273,24.835179],"outline":[[60.184508,24.83522],[60.184605,24.835217],[60.184609,24.835697],[60.184517,24.835699],[60.184458,24.835701],[60.184459,24.835786],[60.184082,24.835797],[60.184082,24.835718],[60.183909,24.835723],[60.183908,24.835543],[60.183812,24.835545],[60.183811,24.835481],[60.183798,24.835481],[60.183797,24.835371],[60.183832,24.83537],[60.18383,24.835173],[60.184037,24.835167],[60.184036,24.835128],[60.184008,24.835128],[60.184008,24.835101],[60.183962,24.835102],[60.183962,24.835049],[60.183902,24.835051],[60.183898,24.834389],[60.184706,24.834368],[60.184708,24.834551],[60.184676,24.834552],[60.184677,24.83471],[60.18464,24.834712],[60.184641,24.83477],[60.184613,24.83477],[60.184615,24.835026],[60.184578,24.835027],[60.184578,24.83508],[60.184547,24.835081],[60.184547,24.835156],[60.184507,24.835158],[60.184508,24.83522]],"aliases":["R028"],"opening_hours":"Mo-Th 06:45-23:15; Fr 06:45-22:15; Sa 09:45-19:15; Su 09:45-22:15","name":"Otahalli","address":"Otaranta 6","children":["unisport"],"osm_elements":[["way",4259272]]},{"id":"subway_cs","type":"restaurant","latlon":[60.187006,24.821401],"opening_hours":"Mo-Th 10:00-19:30; Fr 10:00-17:30; Sa 11:00-18:00; Jun 5-Aug 13 Mo-Fr 10:30-15:30; PH off","name":"Subway","parents":["T"],"osm_elements":[["node","3575222399"]]},{"id":"oih_cafe","type":"cafe","latlon":[60.187291,24.816254],"opening_hours":"Mo-Fr 09:30-15:00; Mo-Fr 11:00-14:00 \"lunch\"; PH off","name":"OIH Kahvilla","parents":["oih"],"osm_elements":[["node","5012868059"]]},{"id":"fatlizard","type":"restaurant","latlon":[60.185575,24.820403],"opening_hours":"Su-Tu 10:30-24:00; We-Th 10:30-01:00; Fr-Sa 10:30-04:00","name":"Ravintola Fat Lizard","address":"Tietotie 1","parents":["r034"],"osm_elements":[["node","5323641949"]]},{"id":"maukas-nova","type":"restaurant","latlon":[60.184871,24.818228],"opening_hours":"Mo-Fr 08:00-15:00","name":"Nova Mau-kas","address":"Tietotie 3","parents":["micronova"],"note":"No student discounts","osm_elements":[["node","5081929842"]]},{"id":"amicatuas","type":"restaurant","latlon":[60.187188,24.819812],"opening_hours":"Mo-Th 07:45-15:00; Fr 07:45-14:00; Mo-Th 10:30-15:00 \"lunch\"; Fr 10:30-14:00 \"lunch\"; PH off","name":"Fazer Food & Co: TUAS","parents":["tuas"],"osm_elements":[["node","580706218"]]},{"id":"panimo","type":"restaurant","latlon":[60.182867,24.829705],"parents":["r039"],"osm_elements":[["node","6583558878"]]},{"id":"r041","type":"auxbuilding","latlon":[60.184441,24.836446],"outline":[[60.18448,24.836135],[60.184481,24.836232],[60.184443,24.836235],[60.184489,24.837226],[60.184491,24.83727],[60.184355,24.837283],[60.184294,24.836147],[60.184435,24.836142],[60.184441,24.836206],[60.184453,24.836204],[60.184453,24.836138],[60.18448,24.836135]],"aliases":["R041"],"name":"Inn","address":"Otaranta 4","lore":"This is basically a long-term residence for Aalto-affiliated visitors. Booking through your departments.","osm_elements":[["way",181643549]]},{"id":"chappel","type":"auxbuilding","latlon":[60.189397,24.83732],"outline":[[60.189452,24.837384],[60.189479,24.837397],[60.18947,24.83746],[60.189442,24.837442],[60.189245,24.837328],[60.189254,24.83727],[60.189287,24.83705],[60.189488,24.837169],[60.189452,24.837384]],"aliases":["R043"],"name":"Otaniemen kappeli","name_en":"Otaniemi Chapel","name_sv":"Otn\u00e4s kapell","address":"J\u00e4mer\u00e4ntaival 8","osm_elements":[["way",4266572]]},{"id":"servinmokki","type":"auxbuilding","latlon":[60.188441,24.836588],"outline":[[60.188309,24.836624],[60.18818,24.836652],[60.188176,24.836582],[60.188174,24.836547],[60.188252,24.836529],[60.188241,24.83633],[60.188537,24.836251],[60.188547,24.836404],[60.188585,24.836395],[60.188593,24.836525],[60.188672,24.836507],[60.18868,24.836651],[60.188599,24.836669],[60.1886,24.836685],[60.188579,24.83669],[60.188578,24.836675],[60.188503,24.836691],[60.188502,24.836671],[60.188455,24.836682],[60.188456,24.8367],[60.188446,24.836702],[60.188446,24.836683],[60.188376,24.836698],[60.188369,24.836554],[60.188306,24.836567],[60.188309,24.836624]],"aliases":["Sm\u00f6kki","R044"],"name":"Servin m\u00f6kki","address":"J\u00e4mer\u00e4ntaival 4","osm_elements":[["way",4259265]]},{"id":"rantasauna","type":"auxbuilding","latlon":[60.188194,24.839283],"outline":[[60.188187,24.839121],[60.188302,24.83928],[60.188358,24.839358],[60.188302,24.83952],[60.188284,24.839495],[60.188275,24.839519],[60.188235,24.839462],[60.188229,24.839455],[60.188232,24.839444],[60.188171,24.83936],[60.188165,24.839369],[60.188121,24.839306],[60.188138,24.839259],[60.188145,24.839242],[60.188138,24.839232],[60.188133,24.839219],[60.188131,24.839195],[60.188132,24.839172],[60.188138,24.839148],[60.188149,24.83913],[60.188162,24.839125],[60.18817,24.839125],[60.18818,24.839137],[60.188187,24.839121]],"aliases":["Rantsu","R045"],"name":"Rantasauna","address":"Vastaranta 1","osm_elements":[["way",26139146]]},{"id":"radisonblu","type":"auxbuilding","latlon":[60.183841,24.836624],"outline":[[60.184259,24.836338],[60.184139,24.836364],[60.184137,24.836476],[60.183913,24.836497],[60.183919,24.837376],[60.183797,24.837377],[60.183787,24.836574],[60.183812,24.836571],[60.183812,24.836512],[60.183572,24.836534],[60.183277,24.837101],[60.183169,24.836915],[60.183507,24.836212],[60.184259,24.83617],[60.184259,24.836338]],"aliases":["R056"],"name":"Radisson Blu Otaniemi","address":"Otaranta 2","children":["ravintolaranta"],"osm_elements":[["way",4259289]]},{"id":"ravintolaranta","type":"restaurant","latlon":[60.184009,24.836432],"opening_hours":"PH,Mo-Su 07:30-23:00","name":"Ravintola Ranta","address":"Otaranta 2","parents":["radisonblu"],"osm_elements":[["node","2071892285"]]},{"id":"cafetoria","type":"cafe","latlon":[60.18519,24.825391],"opening_hours":"Mo-Th 09:00-17:00; Fr 09:00-16:00","name":"Cafetoria","parents":["vare"],"osm_elements":[["node","5871819459"]]},{"id":"Kipsari","type":"restaurant","latlon":[60.185693,24.824374],"opening_hours":"Mo-Fr 08:00-18:00; Mo-Fr 11:00-18:00 \"lunch\"","name":"Kipsari","parents":["vare"],"osm_elements":[["node","5880866308"]]},{"id":"kylteri","type":"cafe","latlon":[60.185861,24.823662],"opening_hours":"Mo-Fr 11:00-14:00","name":"Caf\u00e9 Kylteri","address":"Ekonominaukio 1","parents":["R068"],"osm_elements":[["node","6316319506"]]},{"id":"arvo","type":"restaurant","latlon":[60.186085,24.822882],"opening_hours":"Mo-Fr 11:00-14:00","name":"Arvo","name_en":"Restaurant and Wine Bar Arvo","parents":["R068"],"osm_elements":[["node","6316319505"]]},{"id":"espressohouse","type":"cafe","latlon":[60.184678,24.826056],"opening_hours":"Mo-Fr 07:30-19:00; Sa 09:00-17:00","name":"Espresso House","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5870791847"]]},{"id":"kot","type":"restaurant","latlon":[60.184711,24.825109],"opening_hours":"Mo-Sa 11:00-23:00","name":"kot.MENU","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5871819461"]]},{"id":"whothexxxisalice","type":"restaurant","latlon":[60.18473,24.824985],"opening_hours":"Mo-Fr 10:30-21:00; Sa 11:00-22:00; Su 12:00-20:00","name":"Who the XXXX is Alice","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5871819455"]]},{"id":"kmarket","type":"shopping","latlon":[60.18491,24.824925],"opening_hours":"Mo-Fr 07:00-23:00; Sa,Su 09:00-23:00","name":"K-Market","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5870791843"]]},{"id":"konnichiwa","type":"restaurant","latlon":[60.185098,24.825099],"opening_hours":"Mo-Fr 10:30-20:30; Sa 12:00-19:30; Su 12:00-19:00","name":"Konnichiwa","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5870791848"]]},{"id":"abloc-alepa","type":"shopping","latlon":[60.185102,24.824698],"opening_hours":"Mo-Sa 06:00-24:00; Su 09:00-24:00","name":"Alepa","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5870791842"]]},{"id":"abloc-foodandco","type":"restaurant","latlon":[60.185155,24.824755],"opening_hours":"Mo-Fr 11:00-18:00; Sa 11:00-16:00","name":"Food&Co A-Bloc","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","5891050368"]]},{"id":"abloc-eatpoke","type":"restaurant","latlon":[60.184881,24.825298],"opening_hours":"Mo-Fr 11:00-20:00; Sa-Su 12:00-18:00","name":"Eat Pok\u00e9","address":"Otaniementie 12","parents":["abloc"],"osm_elements":[["node","10850660019"]]},{"id":"mezame","type":"restaurant","latlon":[60.18453,24.825471],"opening_hours":"Mo-Sa 11:00-23:00","name":"Mezame","parents":["abloc"],"osm_elements":[["node","11883413019"]]},{"id":"moo","type":"restaurant","latlon":[60.186472,24.826305],"opening_hours":"Mo-We,Fr 08:00-16:00; Th 08:00-19:00; Mo-Fr 11:00-14:00 \"lunch\"; PH off","name":"MOO","address":"Otakaari 2","parents":["marsio"],"osm_elements":[["node","12141712493"]]},{"id":"maukas","type":"restaurant","latlon":[60.182828,24.828121],"opening_hours":"Mo-Fr 08:00-14:30; Mo-Fr 08:00-09:45 \"breakfast\"; Mo-Fr 10:45-14:00 \"lunch\"; PH off","name":"Mau-kas","address":"Vuorimiehentie 5","osm_elements":[["node","2381695985"]]},{"id":"otaparkki","type":"auxbuilding","latlon":[60.188907,24.827644],"outline":[[60.188896,24.828274],[60.188911,24.828225],[60.188924,24.828183],[60.189119,24.827541],[60.189078,24.82749],[60.189096,24.827431],[60.188959,24.827263],[60.188912,24.827205],[60.188867,24.82715],[60.188852,24.827198],[60.188794,24.827388],[60.188774,24.827456],[60.188626,24.827942],[60.188896,24.828274]],"opening_hours":"24/7","name":"Otaparkki","address":"S\u00e4hk\u00f6miehentie 3","osm_elements":[["way",1202350275]]},{"id":"ARTS","type":"school","aliases":["ARTS"],"name_en":"School of Arts, Design and Architecture","name_fi":"Taiteiden ja suunnittelun korkeakoulu","name_sv":"H\u00f6gskolan f\u00f6r konst,design och arkitektur","parents":["vare","marsio","A"],"children":["dept:architecture","dept:artmedia","dept:design","dept:film"],"url_en":"http://arts.aalto.fi/en/","url_fi":"http://arts.aalto.fi/fi/","url_sv":"http://arts.aalto.fi/sv/"},{"id":"BIZ","type":"school","aliases":["BIZ"],"name_en":"School of Business","name_fi":"Kauppakorkeakoulu","name_sv":"Handelsh\u00f6gskolan","parents":["R068"],"children":["dept:accounting","dept:economics","dept:finance","dept:infosrv","dept:management","dept:marketing","unit:aaltoee","unit:cikr","unit:mikkeli"],"url_en":"http://biz.aalto.fi/en/","url_fi":"http://biz.aalto.fi/fi/"},{"id":"CHEM","type":"school","aliases":["CHEM"],"name_en":"School of Chemical Engineering","name_fi":"Kemian tekniikan korkeakoulu","name_sv":"H\u00f6gskolan f\u00f6r kemiteknik","parents":["r011","r013","micronova"],"children":["dept:cmet","dept:cmat","dept:bio"],"url_en":"http://chem.aalto.fi/en/","url_fi":"http://chem.aalto.fi/fi/","url_sv":"http://chem.aalto.fi/sv/"},{"id":"ELEC","type":"school","aliases":["ELEC"],"name_en":"School of Electrical Engineering","name_fi":"S\u00e4hk\u00f6tekniikan korkeakoulu","name_sv":"H\u00f6gskolan f\u00f6r elektroteknik","parents":["tuas","micronova","kide","agrid-K"],"children":["dept:eea","dept:ele","dept:dice","unit:nanofab","unit:metsahovi"],"url_en":"http://elec.aalto.fi/en/","url_fi":"http://elec.aalto.fi/fi/","url_sv":"http://elec.aalto.fi/sv/"},{"id":"ENG","type":"school","aliases":["ENG"],"name_en":"School of Engineering","name_fi":"Insin\u00f6\u00f6ritieteiden korkeakoulu","name_sv":"H\u00f6gskolan f\u00f6r ingenj\u00f6rsvetenskaper","parents":["K1","r034","r002","K1","K3","K2","K4","r016"],"children":["dept:mecheng","dept:civileng","dept:builtenv"],"url_en":"http://eng.aalto.fi/en/","url_fi":"http://eng.aalto.fi/fi/","url_sv":"http://eng.aalto.fi/sv/"},{"id":"SCI","type":"school","aliases":["SCI"],"name_en":"School of Science","name_fi":"Perustieteiden korkeakoulu","name_sv":"H\u00f6gskolan f\u00f6r teknikvetenskaper","parents":["main","F","K1","nanotalo","T","micronova","kide"],"children":["dept:physics","dept:cs","dept:tuta","dept:math","dept:nbe"],"url_en":"http://sci.aalto.fi/en/","url_fi":"http://sci.aalto.fi/fi/","url_sv":"http://sci.aalto.fi/sv/"},{"id":"SMT10","type":"studenthousing","latlon":[60.191502,24.836688],"outline":[[60.191545,24.836827],[60.191547,24.8367],[60.191504,24.836698],[60.191355,24.836688],[60.191258,24.836682],[60.19121,24.836679],[60.191208,24.836805],[60.191139,24.8368],[60.19105,24.836795],[60.191054,24.836541],[60.191081,24.836543],[60.191082,24.836475],[60.191206,24.836482],[60.191208,24.836356],[60.191563,24.836379],[60.191561,24.836503],[60.191794,24.836517],[60.191793,24.836611],[60.191904,24.836618],[60.191902,24.836702],[60.191926,24.836704],[60.191922,24.836941],[60.191836,24.836935],[60.191774,24.836931],[60.191776,24.836842],[60.191721,24.836838],[60.191604,24.836831],[60.191545,24.836827]],"address":"Servin Maijan tie 10","name":"Servin Maijan tie 10","aliases":["SMT10"],"osm_elements":[["way",4266885]]},{"id":"SMT12n","type":"studenthousing","latlon":[60.191653,24.837471],"outline":[[60.191659,24.8376],[60.191657,24.837685],[60.191411,24.837667],[60.191412,24.837597],[60.191384,24.837595],[60.191388,24.837369],[60.191476,24.837375],[60.19159,24.837383],[60.191654,24.837388],[60.191657,24.837253],[60.191712,24.837257],[60.191828,24.837265],[60.191919,24.837272],[60.191914,24.83754],[60.191888,24.837538],[60.191887,24.837617],[60.191659,24.8376]],"address":"Servin Maijan tie 12","name":"Servin Maijan tie 12","aliases":["SMT12"],"osm_elements":[["way",4266886]]},{"id":"SMT12s","type":"studenthousing","latlon":[60.190892,24.837442],"outline":[[60.190538,24.837344],[60.190595,24.837348],[60.190752,24.83736],[60.190855,24.837368],[60.190915,24.837373],[60.190917,24.837268],[60.190981,24.837273],[60.191091,24.837282],[60.191205,24.837291],[60.191289,24.837297],[60.191284,24.837557],[60.191259,24.837556],[60.191258,24.837612],[60.190905,24.837584],[60.190903,24.837692],[60.190564,24.837666],[60.190565,24.837589],[60.190533,24.837587],[60.190538,24.837344]],"address":"Servin Maijan tie 12","name":"Servin Maijan tie 12","aliases":["SMT12"],"osm_elements":[["way",4266887]]},{"id":"SK3b","type":"studenthousing","latlon":[60.191313,24.835529],"outline":[[60.191372,24.835378],[60.191381,24.835538],[60.191414,24.83553],[60.191423,24.835689],[60.191197,24.835741],[60.191187,24.835556],[60.191241,24.835543],[60.191234,24.83541],[60.191372,24.835378]],"address":"Servinkuja 3 B","name":"Servinkuja 3 B","aliases":["SK3 B"],"osm_elements":[["way",24342605]]},{"id":"SK3a","type":"studenthousing","latlon":[60.191012,24.835366],"outline":[[60.19089,24.835313],[60.190943,24.835309],[60.190939,24.835112],[60.190993,24.835107],[60.1911,24.835098],[60.191104,24.83529],[60.191145,24.835287],[60.191146,24.83536],[60.191131,24.835361],[60.191132,24.83544],[60.191068,24.835445],[60.191069,24.835486],[60.191044,24.835488],[60.191045,24.83551],[60.190994,24.835514],[60.190994,24.835492],[60.19097,24.835494],[60.190969,24.835444],[60.190903,24.83545],[60.190902,24.83537],[60.190891,24.83537],[60.19089,24.835313]],"address":"Servinkuja 3 A","name":"Servinkuja 3 A","aliases":["SK3 A"],"osm_elements":[["way",4259186]]},{"id":"SK5a","type":"studenthousing","latlon":[60.190865,24.833998],"outline":[[60.191017,24.834076],[60.19079,24.834171],[60.190771,24.834042],[60.190754,24.834045],[60.190731,24.833856],[60.190976,24.833717],[60.191017,24.834076]],"address":"Servinkuja 5 A","name":"Servinkuja 5 A","aliases":["SK5 A"],"osm_elements":[["way",4266888]]},{"id":"SK5b","type":"studenthousing","latlon":[60.191123,24.833385],"outline":[[60.19124,24.83315],[60.191289,24.833518],[60.191048,24.83361],[60.191037,24.833484],[60.19102,24.833492],[60.190989,24.83329],[60.19124,24.83315]],"address":"Servinkuja 5 B","name":"Servinkuja 5 B","aliases":["SK5 B"],"osm_elements":[["way",11074082]]},{"id":"SMT6","type":"studenthousing","latlon":[60.190589,24.836128],"outline":[[60.190631,24.836201],[60.190632,24.836289],[60.190631,24.83632],[60.190621,24.836319],[60.190164,24.836322],[60.190163,24.836185],[60.190136,24.836185],[60.190136,24.83607],[60.190136,24.836037],[60.190631,24.836035],[60.190631,24.835908],[60.190914,24.835906],[60.191,24.835906],[60.191,24.836043],[60.190978,24.836043],[60.190978,24.8362],[60.190631,24.836201]],"aliases":["SMT 6","SMT6"],"address":"Servin Maijan tie 6","name":"Servin Maijan tie 6","osm_elements":[["way",4259184]]},{"id":"SMT8","type":"studenthousing","latlon":[60.190612,24.836805],"outline":[[60.190419,24.836586],[60.19054,24.836593],[60.190538,24.836701],[60.190551,24.836701],[60.190549,24.836842],[60.19061,24.836846],[60.190615,24.836511],[60.190742,24.836516],[60.190742,24.836523],[60.19074,24.836644],[60.19076,24.836645],[60.190759,24.836712],[60.190756,24.836987],[60.190719,24.836985],[60.190718,24.837066],[60.190674,24.837064],[60.190675,24.836981],[60.190578,24.836976],[60.190577,24.837055],[60.190489,24.83705],[60.19049,24.836969],[60.190414,24.836965],[60.190419,24.836586]],"address":"Servin Maijan tie 8","name":"Servin Maijan tie 8","aliases":["SMT8"],"osm_elements":[["way",4266889]]},{"id":"SK1","type":"studenthousing","latlon":[60.190331,24.835177],"outline":[[60.190635,24.834966],[60.190646,24.835197],[60.190393,24.835246],[60.1904,24.835376],[60.189928,24.835468],[60.189916,24.835226],[60.19003,24.835204],[60.19031,24.83515],[60.190379,24.835136],[60.190373,24.835017],[60.190635,24.834966]],"address":"Servinkuja 1","name":"Servinkuja 1","aliases":["SK1"],"osm_elements":[["way",4259185]]},{"id":"SK6","type":"studenthousing","latlon":[60.190758,24.832729],"outline":[[60.190938,24.832534],[60.190967,24.832738],[60.190487,24.833021],[60.190458,24.832818],[60.190938,24.832534]],"address":"Servinkuja 6","name":"Servinkuja 6","aliases":["SK6"],"osm_elements":[["way",4259181]]},{"id":"SK2n","type":"studenthousing","latlon":[60.190207,24.833826],"outline":[[60.190043,24.83402],[60.190011,24.833815],[60.190453,24.833534],[60.190485,24.833739],[60.190043,24.83402]],"address":"Servinkuja 2","name":"Servinkuja 2","aliases":["SK2"],"osm_elements":[["way",4259182]]},{"id":"SK2s","type":"studenthousing","latlon":[60.189601,24.83464],"outline":[[60.189812,24.834588],[60.189709,24.834642],[60.189576,24.834712],[60.189428,24.83479],[60.18936,24.834826],[60.189331,24.834606],[60.189783,24.834369],[60.189812,24.834588]],"address":"Servinkuja 2","name":"Servinkuja 2","aliases":["SK2"],"osm_elements":[["way",4259183]]},{"id":"SMT3","type":"studenthousing","latlon":[60.189417,24.835761],"outline":[[60.189244,24.835601],[60.189262,24.835559],[60.189239,24.83552],[60.189275,24.835436],[60.189297,24.835475],[60.189325,24.83541],[60.189543,24.835784],[60.189526,24.835822],[60.18958,24.835915],[60.189746,24.836199],[60.189669,24.836382],[60.189441,24.835991],[60.189454,24.835962],[60.189244,24.835601]],"address":"Servin Maijan tie 3","name":"Servin Maijan tie 3","aliases":["SMT3"],"osm_elements":[["way",4259187]]},{"id":"SMT1","type":"studenthousing","latlon":[60.188887,24.835202],"outline":[[60.188712,24.835016],[60.189177,24.835253],[60.189148,24.835482],[60.188684,24.835245],[60.188712,24.835016]],"address":"Servin Maijan tie 1","name":"Servin Maijan tie 1","aliases":["SMT1"],"osm_elements":[["way",4259263]]},{"id":"JMT10n","type":"studenthousing","latlon":[60.190339,24.83879],"outline":[[60.189969,24.838562],[60.189967,24.838756],[60.189951,24.838756],[60.189951,24.838839],[60.189968,24.83884],[60.189968,24.838877],[60.190002,24.838878],[60.190002,24.838857],[60.190062,24.838859],[60.190062,24.838879],[60.190097,24.83888],[60.19013,24.838881],[60.19013,24.83886],[60.190187,24.838862],[60.190187,24.838885],[60.190221,24.838887],[60.19022,24.839001],[60.190259,24.839003],[60.190259,24.838979],[60.190319,24.838981],[60.190319,24.839004],[60.190351,24.839005],[60.190386,24.839007],[60.190386,24.838982],[60.190444,24.838984],[60.190444,24.839005],[60.190482,24.839007],[60.190483,24.838973],[60.190499,24.838973],[60.1905,24.838883],[60.190485,24.838882],[60.190485,24.838863],[60.190513,24.838864],[60.190512,24.838899],[60.190544,24.8389],[60.190544,24.838893],[60.190573,24.838894],[60.190573,24.838931],[60.190604,24.838932],[60.190641,24.838934],[60.190642,24.8389],[60.190703,24.838902],[60.190703,24.838865],[60.190732,24.838867],[60.190735,24.838642],[60.190705,24.83864],[60.190706,24.838604],[60.190643,24.838602],[60.190643,24.838568],[60.190575,24.838565],[60.190575,24.8386],[60.190515,24.838597],[60.190515,24.838636],[60.190485,24.838635],[60.190484,24.838695],[60.190451,24.838694],[60.190451,24.838715],[60.190388,24.838713],[60.190388,24.838692],[60.190322,24.838689],[60.190322,24.838708],[60.190261,24.838706],[60.190262,24.838687],[60.190228,24.838685],[60.190229,24.838571],[60.190193,24.83857],[60.190193,24.83859],[60.190133,24.838588],[60.190133,24.838567],[60.190064,24.838565],[60.190064,24.838586],[60.190004,24.838584],[60.190004,24.838564],[60.189969,24.838562]],"address":"J\u00e4mer\u00e4ntaival 10","name":"J\u00e4mer\u00e4ntaival 10","aliases":["JMT10"],"osm_elements":[["way",24334281]]},{"id":"JMT11n","type":"studenthousing","latlon":[60.1903,24.839913],"outline":[[60.190289,24.839873],[60.190313,24.839863],[60.190308,24.839814],[60.190373,24.839787],[60.190438,24.83976],[60.190443,24.839809],[60.190503,24.839785],[60.190498,24.839737],[60.190563,24.83971],[60.190627,24.839684],[60.190632,24.839732],[60.190647,24.839725],[60.190659,24.83972],[60.190677,24.839898],[60.19065,24.83991],[60.190655,24.839958],[60.190526,24.840011],[60.190521,24.839962],[60.190461,24.839987],[60.190466,24.840035],[60.190336,24.840088],[60.190331,24.840041],[60.190301,24.840053],[60.190295,24.83999],[60.190274,24.839999],[60.190278,24.840048],[60.19015,24.8401],[60.190145,24.840052],[60.190085,24.840077],[60.19009,24.840124],[60.189959,24.840178],[60.189954,24.840131],[60.189924,24.840143],[60.189906,24.839965],[60.189936,24.839953],[60.189931,24.839904],[60.189996,24.839877],[60.190062,24.83985],[60.190067,24.839899],[60.190127,24.839874],[60.190122,24.839826],[60.190186,24.8398],[60.19025,24.839773],[60.190255,24.839821],[60.190283,24.83981],[60.190289,24.839873]],"address":"J\u00e4mer\u00e4ntaival 11","name":"J\u00e4mer\u00e4ntaival 11","aliases":["JMT11"],"osm_elements":[["way",26139101]]},{"id":"JMT10s","type":"studenthousing","latlon":[60.189607,24.838374],"outline":[[60.189414,24.838024],[60.189409,24.838058],[60.189379,24.838041],[60.18935,24.838249],[60.189379,24.838265],[60.189373,24.838306],[60.189428,24.838338],[60.189423,24.838377],[60.189453,24.838395],[60.189489,24.838415],[60.189493,24.838382],[60.189555,24.838417],[60.189559,24.838384],[60.189582,24.838396],[60.189578,24.838419],[60.189564,24.838411],[60.189552,24.838493],[60.189566,24.838501],[60.18956,24.838542],[60.189596,24.838562],[60.189598,24.838544],[60.189653,24.838576],[60.18965,24.838597],[60.189685,24.838618],[60.189718,24.838637],[60.189721,24.838617],[60.189774,24.838648],[60.18977,24.838678],[60.189813,24.838704],[60.189818,24.838664],[60.189831,24.838672],[60.189844,24.838581],[60.189828,24.838571],[60.189855,24.838391],[60.189826,24.838374],[60.189823,24.838394],[60.18976,24.838357],[60.189763,24.838333],[60.189702,24.838297],[60.189698,24.838321],[60.189637,24.838285],[60.18964,24.838262],[60.189607,24.838243],[60.189616,24.838182],[60.189591,24.838167],[60.189596,24.838133],[60.189534,24.838098],[60.189539,24.838062],[60.189476,24.838025],[60.189471,24.838057],[60.189414,24.838024]],"address":"J\u00e4mer\u00e4ntaival 10","name":"J\u00e4mer\u00e4ntaival 10","aliases":["JMT10"],"osm_elements":[["way",24334282]]},{"id":"JVM11sw","type":"studenthousing","latlon":[60.189391,24.839047],"outline":[[60.189375,24.839096],[60.189367,24.83916],[60.1894,24.839177],[60.189396,24.839208],[60.189449,24.839235],[60.189502,24.839262],[60.189506,24.839232],[60.189567,24.839263],[60.189563,24.839294],[60.189616,24.839321],[60.18967,24.839349],[60.189674,24.839318],[60.189705,24.839334],[60.189719,24.839227],[60.189728,24.839157],[60.189696,24.83914],[60.189702,24.839099],[60.189595,24.839044],[60.189589,24.839085],[60.189528,24.839054],[60.189534,24.839012],[60.189428,24.838958],[60.189422,24.838999],[60.189393,24.838984],[60.189403,24.838917],[60.189368,24.838897],[60.189374,24.838858],[60.189268,24.838795],[60.189263,24.838835],[60.189206,24.838801],[60.189212,24.838762],[60.189106,24.838699],[60.1891,24.838738],[60.189069,24.83872],[60.189043,24.838899],[60.189074,24.838917],[60.189069,24.838949],[60.189122,24.838981],[60.189175,24.839012],[60.18918,24.83898],[60.189237,24.839014],[60.189232,24.839045],[60.189285,24.839077],[60.189337,24.839108],[60.189342,24.839076],[60.189375,24.839096]],"address":"J\u00e4mer\u00e4ntaival 11","name":"J\u00e4mer\u00e4ntaival 11","aliases":["JMT11"],"osm_elements":[["way",24334286]]},{"id":"JMT11se","type":"studenthousing","latlon":[60.189331,24.839661],"outline":[[60.189057,24.839428],[60.189002,24.83941],[60.188946,24.839391],[60.188942,24.839437],[60.188915,24.839428],[60.188901,24.8396],[60.188928,24.839609],[60.188924,24.839655],[60.189036,24.839692],[60.18904,24.839645],[60.189094,24.839663],[60.189091,24.83971],[60.189205,24.839747],[60.189209,24.8397],[60.189234,24.839709],[60.189228,24.839778],[60.189257,24.839787],[60.189253,24.839832],[60.189363,24.839868],[60.189367,24.839823],[60.189421,24.839841],[60.189417,24.839886],[60.189531,24.839923],[60.189534,24.839878],[60.189566,24.839888],[60.189572,24.839803],[60.189597,24.839811],[60.189594,24.839855],[60.189706,24.839891],[60.189709,24.839848],[60.189737,24.839857],[60.189751,24.839682],[60.189723,24.839673],[60.189727,24.83963],[60.189671,24.839612],[60.189615,24.839594],[60.189611,24.839637],[60.189581,24.839627],[60.189574,24.839714],[60.189548,24.839706],[60.189552,24.839659],[60.189495,24.839641],[60.189438,24.839622],[60.189435,24.839669],[60.18938,24.839651],[60.189384,24.839605],[60.189329,24.839587],[60.189274,24.839569],[60.18927,24.839615],[60.189247,24.839607],[60.189253,24.839538],[60.189223,24.839529],[60.189226,24.839483],[60.189169,24.839464],[60.189112,24.839446],[60.189108,24.839491],[60.189054,24.839473],[60.189057,24.839428]],"address":"J\u00e4mer\u00e4ntaival 11","name":"J\u00e4mer\u00e4ntaival 11","aliases":["JMT11"],"osm_elements":[["way",24332800]]},{"id":"JMT9","type":"studenthousing","latlon":[60.188688,24.839707],"outline":[[60.188592,24.839456],[60.188567,24.839732],[60.188603,24.839745],[60.188593,24.839855],[60.188783,24.839924],[60.188792,24.839816],[60.188823,24.839827],[60.188848,24.839549],[60.188592,24.839456]],"address":"J\u00e4mer\u00e4ntaival 9","name":"J\u00e4mer\u00e4ntaival 9","aliases":["JMT9"],"osm_elements":[["way",24332799]]},{"id":"JVM7a","type":"studenthousing","latlon":[60.188673,24.838538],"outline":[[60.188585,24.838367],[60.188577,24.838694],[60.188639,24.8387],[60.188657,24.838701],[60.188657,24.838685],[60.188663,24.838686],[60.188709,24.83869],[60.188709,24.838679],[60.188776,24.838686],[60.188783,24.838415],[60.188718,24.838409],[60.188718,24.838391],[60.18867,24.838386],[60.18867,24.838375],[60.188659,24.838374],[60.188585,24.838367]],"address":"J\u00e4mer\u00e4ntaival 7 A","name":"J\u00e4mer\u00e4ntaival 7 A","aliases":["JMT7 A"],"osm_elements":[["way",24333771]]},{"id":"JMT7c","type":"studenthousing","latlon":[60.188592,24.83911],"outline":[[60.188486,24.838989],[60.188479,24.839285],[60.188556,24.839293],[60.188556,24.83928],[60.188603,24.839284],[60.188603,24.839267],[60.188665,24.839273],[60.188668,24.839156],[60.18866,24.839155],[60.188662,24.839072],[60.188655,24.839071],[60.188658,24.838971],[60.188631,24.838968],[60.188596,24.838964],[60.188596,24.838983],[60.188545,24.838978],[60.188544,24.838994],[60.188486,24.838989]],"address":"J\u00e4mer\u00e4ntaival 7 C","name":"J\u00e4mer\u00e4ntaival 7 C","aliases":["JMT7 C"],"osm_elements":[["way",24333796]]},{"id":"JMT7b","type":"studenthousing","latlon":[60.18833,24.838353],"outline":[[60.188218,24.8382],[60.188196,24.838496],[60.188281,24.838523],[60.188283,24.838504],[60.188329,24.838518],[60.18833,24.838501],[60.188392,24.83852],[60.188399,24.838422],[60.188401,24.838404],[60.188393,24.838402],[60.188395,24.838372],[60.188397,24.838342],[60.188399,24.838317],[60.188388,24.838314],[60.188396,24.838212],[60.188335,24.838193],[60.188333,24.838213],[60.188262,24.838191],[60.18826,24.838213],[60.188218,24.8382]],"address":"J\u00e4mer\u00e4ntaival 7 B","name":"J\u00e4mer\u00e4ntaival 7 B","aliases":["JMT7 B"],"osm_elements":[["way",24333770]]},{"id":"JVM6","type":"studenthousing","latlon":[60.188488,24.83733],"outline":[[60.188284,24.837283],[60.188286,24.837332],[60.188235,24.837344],[60.188238,24.837391],[60.188239,24.837413],[60.18822,24.837417],[60.188232,24.83762],[60.188268,24.837612],[60.188271,24.837655],[60.188347,24.837638],[60.188342,24.837536],[60.188472,24.837506],[60.188475,24.837562],[60.188551,24.837544],[60.18854,24.837354],[60.188556,24.837351],[60.188656,24.837328],[60.188671,24.837324],[60.188675,24.837381],[60.18875,24.837364],[60.188748,24.837334],[60.1888,24.837322],[60.18879,24.837146],[60.188775,24.83715],[60.188768,24.837034],[60.188655,24.83706],[60.188656,24.837077],[60.18856,24.8371],[60.188557,24.837046],[60.18848,24.837063],[60.188486,24.837178],[60.188491,24.837253],[60.188361,24.837283],[60.18836,24.837266],[60.188284,24.837283]],"address":"J\u00e4mer\u00e4ntaival 6","name":"J\u00e4mer\u00e4ntaival 6","aliases":["JMT6"],"osm_elements":[["way",24334231]]},{"id":"JMT5a","type":"studenthousing","latlon":[60.187876,24.837918],"outline":[[60.187776,24.838021],[60.187792,24.837702],[60.187889,24.837721],[60.187922,24.837727],[60.187922,24.837738],[60.187985,24.837751],[60.187972,24.838023],[60.187909,24.83801],[60.187908,24.838028],[60.187871,24.838021],[60.187855,24.838017],[60.187854,24.838037],[60.187826,24.838031],[60.187776,24.838021]],"address":"J\u00e4mer\u00e4ntaival 5 A","name":"J\u00e4mer\u00e4ntaival 5 A","aliases":["JMT5 A"],"osm_elements":[["way",24333899]]},{"id":"JMT5b","type":"studenthousing","latlon":[60.187555,24.837649],"outline":[[60.187447,24.837542],[60.187454,24.837842],[60.187522,24.837835],[60.187522,24.837817],[60.187581,24.837811],[60.18758,24.837791],[60.187637,24.837785],[60.187635,24.837678],[60.187634,24.837643],[60.187633,24.837593],[60.187614,24.837595],[60.187611,24.837493],[60.187553,24.837498],[60.187553,24.837514],[60.187505,24.837518],[60.187505,24.837537],[60.187447,24.837542]],"address":"J\u00e4mer\u00e4ntaival 5 B","name":"J\u00e4mer\u00e4ntaival 5 B","aliases":["JMT5 B"],"osm_elements":[["way",24333934]]},{"id":"JMT5c","type":"studenthousing","latlon":[60.187783,24.838386],"outline":[[60.187815,24.838247],[60.187844,24.838252],[60.187848,24.838253],[60.187839,24.83844],[60.187858,24.838443],[60.187852,24.838561],[60.187797,24.83855],[60.187796,24.838569],[60.187722,24.838554],[60.18772,24.838576],[60.187669,24.838566],[60.187683,24.838265],[60.18774,24.838276],[60.187741,24.838253],[60.18779,24.838262],[60.18779,24.838242],[60.187815,24.838247]],"address":"J\u00e4mer\u00e4ntaival 5 C","name":"J\u00e4mer\u00e4ntaival 5 C","aliases":["JMT5 C"],"osm_elements":[["way",24333883]]},{"id":"JMT3a","type":"studenthousing","latlon":[60.187309,24.836385],"outline":[[60.187251,24.836198],[60.18725,24.836261],[60.187244,24.836261],[60.187244,24.836303],[60.187238,24.836302],[60.187235,24.836506],[60.187241,24.836507],[60.18724,24.836541],[60.187287,24.836545],[60.187305,24.836546],[60.187336,24.836548],[60.187336,24.836539],[60.187368,24.836542],[60.187368,24.836519],[60.187439,24.836524],[60.187444,24.83623],[60.187374,24.836225],[60.187374,24.836206],[60.187355,24.836205],[60.187251,24.836198]],"address":"J\u00e4mer\u00e4ntaival 3 A","name":"J\u00e4mer\u00e4ntaival 3 A","aliases":["JMT3 A"],"children":["polyteekkarimuseo"],"osm_elements":[["way",24333970]]},{"id":"polyteekkarimuseo","type":"museum","latlon":[60.187343,24.836548],"opening_hours":"\"open by agreement\"","name":"Opiskelijakulttuurimuseo","name_en":"Museum of Student Life","address":"J\u00e4mer\u00e4ntaival 3 A","parents":["JMT3a"],"osm_elements":[["node","25038585"]]},{"id":"JMT3b","type":"studenthousing","latlon":[60.187022,24.836131],"outline":[[60.186937,24.835941],[60.186932,24.836198],[60.186938,24.836198],[60.186936,24.836315],[60.186982,24.836319],[60.186983,24.836303],[60.187052,24.836308],[60.187053,24.836292],[60.187127,24.836297],[60.187129,24.836183],[60.187131,24.836091],[60.187133,24.835987],[60.187061,24.835982],[60.187062,24.835962],[60.18699,24.835957],[60.18699,24.835945],[60.186937,24.835941]],"address":"J\u00e4mer\u00e4ntaival 3 B","name":"J\u00e4mer\u00e4ntaival 3 B","aliases":["JMT3 B"],"osm_elements":[["way",24334035]]},{"id":"JMT3c","type":"studenthousing","latlon":[60.187217,24.837011],"outline":[[60.187094,24.836844],[60.187099,24.837101],[60.187105,24.8371],[60.187108,24.837222],[60.187157,24.837218],[60.187157,24.8372],[60.187228,24.837194],[60.187227,24.837174],[60.187297,24.837167],[60.187295,24.837055],[60.187331,24.837052],[60.18733,24.83701],[60.187329,24.836966],[60.187341,24.836965],[60.187339,24.836856],[60.18728,24.836861],[60.187221,24.836867],[60.187221,24.836846],[60.187147,24.836853],[60.187147,24.836839],[60.187094,24.836844]],"address":"J\u00e4mer\u00e4ntaival 3 C","name":"J\u00e4mer\u00e4ntaival 3 C","aliases":["JMT3 C"],"osm_elements":[["way",24333952]]},{"id":"JMT1","type":"studenthousing","latlon":[60.187031,24.834883],"outline":[[60.186892,24.835011],[60.186896,24.834785],[60.187036,24.834794],[60.187393,24.834816],[60.187395,24.834705],[60.187407,24.834706],[60.18741,24.834553],[60.187359,24.834549],[60.187359,24.834523],[60.187105,24.834507],[60.187105,24.834529],[60.187056,24.834526],[60.187057,24.834501],[60.186925,24.834492],[60.186925,24.834512],[60.186876,24.834509],[60.186875,24.834585],[60.1868,24.83458],[60.1868,24.834553],[60.186721,24.834477],[60.18672,24.834574],[60.186729,24.834698],[60.186788,24.83493],[60.186812,24.83508],[60.186857,24.835182],[60.18691,24.835246],[60.186916,24.835218],[60.186954,24.835253],[60.186951,24.835266],[60.18716,24.83546],[60.187165,24.835441],[60.187212,24.835485],[60.187244,24.835342],[60.187236,24.835334],[60.187263,24.835217],[60.187053,24.835023],[60.187041,24.835078],[60.186997,24.835038],[60.18699,24.835031],[60.186977,24.835089],[60.186892,24.835011]],"address":"J\u00e4mer\u00e4ntaival 1","name":"J\u00e4mer\u00e4ntaival 1","aliases":["JMT1"],"osm_elements":[["way",24334123]]},{"id":"OK18","type":"studenthousing","latlon":[60.188216,24.835365],"outline":[[60.187966,24.835486],[60.187977,24.835483],[60.187971,24.835401],[60.187962,24.835282],[60.188215,24.835202],[60.188219,24.835245],[60.188238,24.83524],[60.188261,24.835237],[60.188257,24.835116],[60.188501,24.835086],[60.188507,24.835249],[60.188507,24.835283],[60.188522,24.835281],[60.188527,24.835425],[60.188248,24.83546],[60.188248,24.835432],[60.188244,24.835432],[60.188233,24.835436],[60.188241,24.835539],[60.187976,24.835623],[60.187974,24.835599],[60.187966,24.835486]],"name":"Ossin linna","address":"Otakaari 18","aliases":["OK18"],"osm_elements":[["way",4259264]]},{"id":"OK20","type":"studenthousing","latlon":[60.186778,24.833729],"outline":[[60.186553,24.833536],[60.186528,24.833719],[60.18656,24.833734],[60.186556,24.833772],[60.186782,24.833889],[60.186788,24.833851],[60.18696,24.83394],[60.186969,24.833868],[60.186998,24.833883],[60.187004,24.833837],[60.187043,24.833858],[60.187064,24.833697],[60.186844,24.833583],[60.186838,24.83363],[60.186593,24.833507],[60.186586,24.833554],[60.186553,24.833536]],"address":"Otakaari 20","name":"Otakaari 20","aliases":["OK20"],"osm_elements":[["way",24334160]]},{"id":"OR8a","type":"studenthousing","latlon":[60.186582,24.835698],"outline":[[60.186683,24.835454],[60.186587,24.835459],[60.186589,24.835646],[60.18638,24.835656],[60.186384,24.83595],[60.18645,24.835947],[60.186449,24.835814],[60.18663,24.835805],[60.18663,24.835836],[60.18671,24.835833],[60.186707,24.835609],[60.186685,24.83561],[60.186683,24.835454]],"address":"Otaranta 8 A","name":"Otaranta 8 A","aliases":["OR8 A"],"osm_elements":[["way",24342700]]},{"id":"OR8b","type":"studenthousing","latlon":[60.186582,24.836236],"outline":[[60.186708,24.836011],[60.186572,24.836022],[60.186575,24.836206],[60.186393,24.836221],[60.186399,24.836474],[60.186471,24.836468],[60.18647,24.836398],[60.1867,24.836379],[60.186696,24.836203],[60.186712,24.836202],[60.186708,24.836011]],"address":"Otaranta 8 B","name":"Otaranta 8 B","aliases":["OR8 B"],"osm_elements":[["way",24342691]]},{"id":"OR8c","type":"studenthousing","latlon":[60.186185,24.836088],"outline":[[60.186295,24.835851],[60.186174,24.835854],[60.186176,24.836039],[60.18598,24.836044],[60.185982,24.836329],[60.186056,24.836327],[60.186055,24.836203],[60.186235,24.836198],[60.186235,24.836226],[60.186316,24.836223],[60.186314,24.835999],[60.186296,24.836],[60.186295,24.835851]],"address":"Otaranta 8 C","name":"Otaranta 8 C","aliases":["OR8 C"],"osm_elements":[["way",24342761]]},{"id":"OR8d","type":"studenthousing","latlon":[60.186189,24.836624],"outline":[[60.186315,24.836407],[60.186176,24.836415],[60.186178,24.836583],[60.185999,24.836592],[60.186003,24.83686],[60.186078,24.836856],[60.186077,24.836783],[60.18631,24.836771],[60.186308,24.836596],[60.186318,24.836596],[60.186315,24.836407]],"address":"Otaranta 8 D","name":"Otaranta 8 D","aliases":["OR8 D"],"osm_elements":[["way",24342769]]},{"id":"OR8e","type":"studenthousing","latlon":[60.186376,24.836951],"outline":[[60.186518,24.836736],[60.186383,24.836738],[60.186384,24.836932],[60.186156,24.836936],[60.186157,24.837179],[60.186242,24.837178],[60.186241,24.837089],[60.186509,24.837085],[60.186509,24.836927],[60.186518,24.836927],[60.186518,24.836736]],"address":"Otaranta 8 E","name":"Otaranta 8 E","aliases":["OR8 E"],"osm_elements":[["way",24342775]]},{"id":"r020","type":"auxbuilding","latlon":[60.184209,24.830789],"outline":[[60.184435,24.830517],[60.184416,24.830546],[60.184402,24.830564],[60.184416,24.830604],[60.184248,24.830844],[60.184234,24.830804],[60.184181,24.83088],[60.18383,24.831382],[60.18375,24.831497],[60.183689,24.831325],[60.184099,24.830737],[60.184374,24.830344],[60.184422,24.830481],[60.184435,24.830517]],"aliases":["Otaniemen ostoskeskus","Otaniemi shopping center"],"name":"A Blanc","address":"Otakaari 27","children":["r020-atm","shortcut","pukupesu","tapiolan-juhlapuku","tervystalo-ablanc","taproomd20"],"osm_elements":[["way",7589963]]},{"id":"r011-ywing","type":"location","latlon":[60.183759,24.824138],"outline":[[60.183707,24.82448],[60.183771,24.824385],[60.183801,24.824339],[60.183836,24.824288],[60.183804,24.824199],[60.183824,24.824173],[60.183846,24.824143],[60.183829,24.824081],[60.18383,24.824036],[60.183834,24.823983],[60.183856,24.823941],[60.183754,24.823669],[60.18369,24.823763],[60.183656,24.823896],[60.183653,24.824004],[60.183627,24.824056],[60.18372,24.824315],[60.183673,24.824383],[60.183707,24.82448]],"name":"A siipi Kemma","name_en":"A wing Kemma","name_sv":"A flygeln Kemma","parents":["r011"],"osm_elements":[["way",532048006]]},{"id":"aaltoshop","type":"shopping","latlon":[60.186425,24.826216],"opening_hours":"Mo-Fr 09:00-17:00","name":"Aalto shop","address":"Otakaari 2","parents":["marsio"],"osm_elements":[["node","12141712494"]]},{"id":"ainocafe","type":"cafe","latlon":[60.185742,24.82701],"opening_hours":"Mo-Th 08:00-18:00; Fr 08:00-15:00; PH off","name":"Aino cafe","parents":["main"],"osm_elements":[["node","5004956486"]]},{"id":"r011-bwing","type":"location","latlon":[60.183849,24.825682],"outline":[[60.183723,24.825382],[60.183845,24.825205],[60.183881,24.825303],[60.184086,24.825875],[60.183974,24.826037],[60.183842,24.826229],[60.183757,24.82599],[60.183878,24.825812],[60.183865,24.825776],[60.183769,24.825511],[60.183723,24.825382]],"name":"B siipi Kemma","name_en":"B wing Kemma","name_sv":"B flygeln Kemma","parents":["r011"],"osm_elements":[["way",532048005]]},{"id":"r011-cwing","type":"location","latlon":[60.183687,24.825119],"outline":[[60.183551,24.825632],[60.183595,24.825568],[60.183723,24.825382],[60.183845,24.825205],[60.183856,24.825189],[60.183869,24.825171],[60.183926,24.825088],[60.183862,24.82491],[60.183832,24.824828],[60.183803,24.824745],[60.18372,24.824517],[60.183707,24.82448],[60.183673,24.824383],[60.183537,24.82458],[60.183717,24.825081],[60.183685,24.825128],[60.183494,24.825405],[60.183461,24.825453],[60.183504,24.825573],[60.183521,24.825548],[60.183551,24.825632]],"name":"C siipi Kemma","name_en":"C wing Kemma","name_sv":"C flygeln Kemma","parents":["r011"],"osm_elements":[["way",532048004]]},{"id":"r011-dwing","type":"location","latlon":[60.183447,24.824374],"outline":[[60.183483,24.823654],[60.183367,24.823823],[60.183521,24.824251],[60.183513,24.824262],[60.183507,24.824271],[60.183225,24.824679],[60.183198,24.824721],[60.183253,24.824874],[60.183276,24.82484],[60.183305,24.824918],[60.183458,24.824695],[60.183537,24.82458],[60.183673,24.824383],[60.18372,24.824315],[60.183627,24.824056],[60.183483,24.823654]],"name":"D siipi Kemma","name_en":"D wing Kemma","name_sv":"D flygeln Kemma","parents":["r011"],"osm_elements":[["way",532048003]]},{"id":"r011-ewing","type":"location","latlon":[60.183279,24.823739],"outline":[[60.183213,24.823617],[60.183266,24.823541],[60.183286,24.823596],[60.183337,24.823521],[60.183464,24.823336],[60.183546,24.823563],[60.183483,24.823654],[60.183367,24.823823],[60.18334,24.823861],[60.183126,24.824173],[60.183042,24.824296],[60.18294,24.824014],[60.183213,24.823617]],"name":"E siipi Kemma","name_en":"E wing Kemma","name_sv":"E flygeln Kemma","parents":["r011"],"osm_elements":[["way",532048002]]},{"id":"elissacafe","type":"cafe","latlon":[60.186874,24.828737],"opening_hours":"Mo-Th 09:00-16:00; Fr 09:00-14:00; PH off","name":"Elissa cafe","name_en":"Cafe Elissa","parents":["main"],"osm_elements":[["node","5004956487"]]},{"id":"r011-fwing","type":"location","latlon":[60.18318,24.823441],"outline":[[60.183213,24.823617],[60.1832,24.823581],[60.183183,24.823534],[60.183207,24.823499],[60.183194,24.823462],[60.183135,24.823548],[60.183111,24.823485],[60.182987,24.823159],[60.183059,24.823056],[60.183132,24.822952],[60.183337,24.823521],[60.183286,24.823596],[60.183266,24.823541],[60.183213,24.823617]],"name":"F siipi Kemma","name_en":"F wing Kemma","name_sv":"F flygeln Kemma","parents":["r011"],"osm_elements":[["way",532048001]]},{"id":"kvarkki","type":"restaurant","latlon":[60.188254,24.830011],"opening_hours":"Mo-Fr 08:00-15:00; Mo-Fr 10:30-14:00 \"lunch\"; PH off","name":"Kvarkki","address":"Otakaari 3","parents":["F"],"osm_elements":[["node","577022359"]]},{"id":"silinteri","type":"restaurant","latlon":[60.185309,24.82685],"opening_hours":"Mo-Fr 10:45-13:00; PH off","name":"Silinteri","parents":["main"],"note":"This is a \"staff restaurant\". No student discount and slightly more expensive, and extremely limited seating, but theoretically anyone can eat here.","osm_elements":[["node","5034218017"]]},{"id":"sodexo-cs","type":"restaurant","latlon":[60.186972,24.821651],"opening_hours":"Mo-Fr 08:00-15:00; Mo-Fr 08:00-10:00 \"breakfast\"; Mo-Fr 11:00-15:00 \"lunch\"; PH off","name":"Sodexo","parents":["T"],"osm_elements":[["node","580704688"]]},{"id":"tff","type":"restaurant","latlon":[60.186082,24.833138],"opening_hours":"Mo-Fr 10:30-15:00","name":"T\u00e4ff\u00e4","address":"Otakaari 22","parents":["r040"],"lore":"The only restaurant still student-owned.","osm_elements":[["node","580707759"]]},{"id":"r059","type":"auxbuilding","latlon":[60.18359,24.828573],"outline":[[60.183736,24.828752],[60.183701,24.828816],[60.183692,24.828834],[60.183703,24.828859],[60.183652,24.828954],[60.18334,24.82827],[60.183391,24.828177],[60.18341,24.828143],[60.183436,24.828094],[60.183689,24.828649],[60.183736,24.828752]],"name":"Valimo","address":"Metallimiehenkuja 2","children":["valimo"],"osm_elements":[["way",7588897]]},{"id":"valimo","type":"restaurant","latlon":[60.183652,24.828772],"opening_hours":"Mo-Fr 10:00-14:30; Mo-Fr 10:30-14:30 \"lunch\"; PH off","name":"Valimo","parents":["r059"],"osm_elements":[["node","4840360721"]]},{"id":"abloc-wickedrabbit","type":"restaurant","latlon":[60.18506,24.82518],"name":"Wicked Rabbit","address":"Otaniementie 12","parents":["abloc"],"note":"within the Fazer restaurant in A bloc.","floor":2},{"id":"xburger","type":"restaurant","latlon":[60.18396,24.830553],"outline":[[60.183939,24.830561],[60.183981,24.830506],[60.183992,24.83054],[60.183951,24.830596],[60.183939,24.830561]],"aliases":["Etno"],"opening_hours":"Mo-Fr 10:30-14:00, 18:00-24:00; Sa-Su 00:00-03:00, 18:00-24:00","name":"X-burger","address":"Alvarinaukio 1","osm_elements":[["way",322041317]]},{"id":"r042","type":"auxbuilding","latlon":[60.190995,24.831966],"outline":[[60.190828,24.831731],[60.190824,24.831616],[60.191106,24.831577],[60.191106,24.831593],[60.191139,24.831589],[60.191145,24.831752],[60.191075,24.831761],[60.191098,24.832407],[60.191026,24.832417],[60.191024,24.832357],[60.190972,24.832365],[60.190973,24.832395],[60.190912,24.832403],[60.190896,24.831957],[60.190963,24.831948],[60.190964,24.831988],[60.191017,24.83198],[60.19101,24.831789],[60.190828,24.831731]],"aliases":["R042","YHTS","SHVS","FSHS"],"name":"Ylioppilaiden terveydenhoitos\u00e4\u00e4ti\u00f6","name_sv":"Studenternas h\u00e4lsov\u00e5rdsstiftelse","address":"Otakaari 12","name_en":"Finnish Student Health Service","osm_elements":[["way",4266890]]},{"id":"agrid-A","type":"wing","latlon":[60.188982,24.830144],"outline":[[60.189054,24.830336],[60.189035,24.830295],[60.189014,24.83027],[60.188991,24.830263],[60.188965,24.830271],[60.18894,24.830289],[60.188917,24.830323],[60.188866,24.830213],[60.18884,24.830165],[60.188803,24.83009],[60.188855,24.83001],[60.188908,24.829961],[60.188955,24.829939],[60.189004,24.82993],[60.189048,24.829947],[60.189092,24.829977],[60.189136,24.83003],[60.189174,24.830098],[60.189054,24.830336]],"name":"A","name_en":"A wing (A Grid)","parents":["agrid"],"osm_elements":[["way",97545820]]},{"id":"agrid-B","type":"wing","latlon":[60.188991,24.830409],"outline":[[60.189054,24.830336],[60.189053,24.830406],[60.189049,24.830639],[60.188981,24.830639],[60.188914,24.83064],[60.188913,24.830606],[60.188917,24.830323],[60.18894,24.830289],[60.188965,24.830271],[60.188991,24.830263],[60.189014,24.83027],[60.189035,24.830295],[60.189054,24.830336]],"name":"B","name_en":"B wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799732]]},{"id":"agrid-CN","type":"wing","latlon":[60.189114,24.830786],"outline":[[60.189032,24.830913],[60.189032,24.830775],[60.188979,24.830773],[60.188981,24.830639],[60.189049,24.830639],[60.189329,24.830645],[60.189329,24.830742],[60.189329,24.830912],[60.189049,24.830913],[60.189032,24.830913]],"name":"CN","name_en":"CN wing (A Grid)","parents":["agrid"],"children":["agrid-tapaus","agrid-agridimpact","agrid-until"],"osm_elements":[["way",558799726]]},{"id":"agrid-CS","type":"wing","latlon":[60.188855,24.83077],"outline":[[60.189032,24.830913],[60.188958,24.830912],[60.18868,24.830905],[60.188636,24.830905],[60.188636,24.830724],[60.188636,24.830639],[60.188749,24.830639],[60.188847,24.830639],[60.188914,24.83064],[60.188981,24.830639],[60.188979,24.830773],[60.189032,24.830775],[60.189032,24.830913]],"name":"CS","name_en":"CS wing (A Grid)","parents":["agrid"],"children":["agrid-startupcenter","agrid-esa"],"osm_elements":[["way",558799727]]},{"id":"agrid-D","type":"wing","latlon":[60.189021,24.831075],"outline":[[60.189049,24.830913],[60.189032,24.830913],[60.188958,24.830912],[60.188957,24.831246],[60.189031,24.831247],[60.189048,24.831247],[60.189048,24.831208],[60.189049,24.830913]],"name":"D","name_en":"D wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799725]]},{"id":"agrid-EN","type":"wing","latlon":[60.189165,24.831367],"outline":[[60.18933,24.831242],[60.189048,24.831247],[60.189031,24.831247],[60.189031,24.831386],[60.189069,24.831385],[60.18907,24.83151],[60.189088,24.831511],[60.189327,24.831514],[60.189327,24.831382],[60.18933,24.831242]],"name":"EN","name_en":"EN wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799722]]},{"id":"agrid-ES","type":"wing","latlon":[60.188917,24.831375],"outline":[[60.1888,24.831231],[60.188799,24.831313],[60.188798,24.831436],[60.188798,24.831506],[60.188851,24.831507],[60.188994,24.831508],[60.18907,24.83151],[60.189069,24.831385],[60.189031,24.831386],[60.189031,24.831247],[60.188957,24.831246],[60.1888,24.831231]],"name":"ES","name_en":"ES wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799724]]},{"id":"agrid-K","type":"wing","latlon":[60.188719,24.831375],"outline":[[60.188798,24.831436],[60.188767,24.831436],[60.188767,24.831585],[60.188758,24.831604],[60.188659,24.831603],[60.18865,24.831584],[60.188651,24.831377],[60.188659,24.831378],[60.188659,24.831331],[60.188632,24.831331],[60.188632,24.831187],[60.188644,24.831167],[60.188759,24.831168],[60.188767,24.831188],[60.188767,24.831312],[60.18878,24.831313],[60.188799,24.831313],[60.188798,24.831436]],"name":"K","name_en":"K wing (A Grid)","parents":["agrid"],"children":["ELEC"],"osm_elements":[["way",558799723]]},{"id":"agrid-F","type":"wing","latlon":[60.189063,24.831708],"outline":[[60.189088,24.831786],[60.189087,24.831838],[60.189067,24.831838],[60.188993,24.831837],[60.188994,24.831508],[60.18907,24.83151],[60.189088,24.831511],[60.189088,24.831755],[60.189088,24.831786]],"name":"F","name_en":"F wing (A Grid)","parents":["agrid"],"osm_elements":[["way",24342449]]},{"id":"agrid-GN","type":"wing","latlon":[60.189148,24.831985],"outline":[[60.189124,24.832105],[60.189329,24.832107],[60.18933,24.831842],[60.189087,24.831838],[60.189067,24.831838],[60.189066,24.831963],[60.189105,24.831965],[60.189104,24.832105],[60.189124,24.832105]],"name":"GN","name_en":"GN wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799720]]},{"id":"agrid-GS","type":"wing","latlon":[60.188875,24.831926],"outline":[[60.188993,24.831837],[60.189067,24.831838],[60.189066,24.831963],[60.189105,24.831965],[60.189104,24.832105],[60.189034,24.832105],[60.18877,24.832102],[60.188587,24.832101],[60.188588,24.831801],[60.188654,24.831802],[60.188654,24.831835],[60.188778,24.831836],[60.188858,24.831836],[60.188993,24.831837]],"name":"GS","name_en":"GS wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799719]]},{"id":"agrid-H","type":"wing","latlon":[60.189092,24.832309],"outline":[[60.189034,24.832105],[60.189033,24.832438],[60.189104,24.832442],[60.189123,24.832444],[60.189124,24.832409],[60.189124,24.832386],[60.189124,24.832351],[60.189124,24.832105],[60.189034,24.832105]],"name":"H","name_en":"H wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799718]]},{"id":"agrid-IS","type":"wing","latlon":[60.188906,24.832545],"outline":[[60.189104,24.832442],[60.189104,24.832601],[60.189137,24.832698],[60.188865,24.832694],[60.188767,24.832693],[60.188604,24.832691],[60.188605,24.832432],[60.188773,24.832433],[60.188866,24.832436],[60.189033,24.832438],[60.189104,24.832442]],"name":"IS","name_en":"IS wing (A Grid)","parents":["agrid"],"osm_elements":[["way",558799717]]},{"id":"agrid-I","type":"wing","latlon":[60.189476,24.832578],"outline":[[60.189123,24.832444],[60.189104,24.832442],[60.189104,24.832601],[60.189137,24.832698],[60.189458,24.832703],[60.189594,24.832705],[60.189594,24.832754],[60.189775,24.832756],[60.189806,24.832757],[60.189807,24.832509],[60.189643,24.832506],[60.189644,24.832451],[60.18963,24.832451],[60.189605,24.832451],[60.189123,24.832444]],"aliases":["Magneettitalo","Magnet House"],"name":"I","name_en":"I wing (A Grid)","parents":["agrid"],"children":["ami-center","ami-center","ami-center"],"osm_elements":[["way",558799716]]},{"id":"agrid-L","type":"wing","latlon":[60.189684,24.831642],"outline":[[60.189796,24.831023],[60.189796,24.83118],[60.18985,24.83118],[60.18985,24.831347],[60.189881,24.831348],[60.18988,24.831937],[60.189827,24.831937],[60.189826,24.83218],[60.189694,24.832179],[60.189663,24.832178],[60.189643,24.832178],[60.189643,24.832098],[60.18963,24.832097],[60.189615,24.832097],[60.189604,24.832097],[60.189509,24.832096],[60.189509,24.831845],[60.18952,24.831845],[60.18952,24.831719],[60.189521,24.831378],[60.189521,24.831021],[60.189648,24.831022],[60.189665,24.831022],[60.189693,24.831022],[60.189796,24.831023]],"name":"Aalto-yliopisto Suurj\u00e4nnitelaboratorio","name_en":"L wing (A Grid)","address":"Otakaari 5","parents":["agrid"],"osm_elements":[["way",24342453]]},{"id":"tuas-159xwing","type":"wing","latlon":[60.18719,24.820062],"outline":[[60.187086,24.819875],[60.187294,24.81997],[60.187394,24.820016],[60.18738,24.82014],[60.187368,24.820244],[60.187351,24.820236],[60.18713,24.820134],[60.187124,24.820187],[60.187011,24.820135],[60.187016,24.820078],[60.187042,24.819855],[60.187086,24.819875]],"name":"159x siipi TUAS","name_en":"159x wing TUAS","name_sv":"159x flygeln TUAS","parents":["tuas"],"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.","osm_elements":[["way",532048010]]},{"id":"r030-awing","type":"wing","latlon":[60.186773,24.821407],"outline":[[60.186961,24.82047],[60.186832,24.821898],[60.186776,24.821881],[60.186752,24.822084],[60.186716,24.822336],[60.186707,24.822331],[60.186677,24.822313],[60.186662,24.822304],[60.186655,24.822346],[60.186583,24.822278],[60.186584,24.822272],[60.186695,24.821785],[60.186708,24.821724],[60.18676,24.821139],[60.186766,24.821078],[60.186818,24.820496],[60.186824,24.820433],[60.186836,24.820301],[60.186881,24.820318],[60.18688,24.820335],[60.18697,24.820371],[60.186961,24.82047]],"name":"A siipi CS","name_en":"A wing CS","name_sv":"A flygeln CS","parents":["T"],"osm_elements":[["way",532048009]]},{"id":"A","type":"wing","latlon":[60.186169,24.829791],"outline":[[60.186066,24.829423],[60.186145,24.829473],[60.18633,24.829592],[60.18634,24.829599],[60.186343,24.82958],[60.186485,24.829607],[60.186472,24.829718],[60.186464,24.829718],[60.186453,24.829832],[60.186445,24.82983],[60.186435,24.829957],[60.186421,24.829959],[60.186363,24.830322],[60.186342,24.830449],[60.186205,24.830366],[60.185962,24.83021],[60.185979,24.830102],[60.185992,24.830011],[60.185996,24.829984],[60.186172,24.830094],[60.186175,24.83008],[60.186178,24.830057],[60.186182,24.830036],[60.186224,24.829784],[60.186181,24.829757],[60.186183,24.82973],[60.186155,24.829713],[60.186148,24.82973],[60.186105,24.829704],[60.186106,24.829684],[60.186078,24.829667],[60.186073,24.829684],[60.186032,24.829658],[60.186033,24.829635],[60.185984,24.829607],[60.18598,24.829625],[60.185951,24.829609],[60.185952,24.829585],[60.185858,24.829526],[60.18589,24.829313],[60.186066,24.829423]],"name":"A siipi Main","name_en":"A wing Main","name_sv":"A flygeln Main","parents":["main"],"children":["dept:architecture","ARTS"],"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.","osm_elements":[["way",514232744]]},{"id":"abloc-A","type":"wing","latlon":[60.184668,24.826063],"outline":[[60.184755,24.82591],[60.184688,24.826318],[60.184576,24.826244],[60.18459,24.826157],[60.184643,24.825836],[60.184755,24.82591]],"name":"A wing Abloc","parents":["abloc"],"osm_elements":[["way",815467163]]},{"id":"r030-bwing","type":"wing","latlon":[60.187151,24.821119],"outline":[[60.186996,24.820483],[60.186977,24.820706],[60.187181,24.820788],[60.187001,24.821896],[60.187078,24.821919],[60.187087,24.821863],[60.187093,24.82183],[60.187124,24.821635],[60.187179,24.821289],[60.187188,24.821232],[60.187233,24.820955],[60.187299,24.820997],[60.187357,24.820626],[60.18734,24.820616],[60.187291,24.820588],[60.186996,24.820483]],"name":"B siipi CS","name_en":"B wing CS","name_sv":"B flygeln CS","parents":["T"],"osm_elements":[["way",532048008]]},{"id":"r030-cwing","type":"wing","latlon":[60.186939,24.82173],"outline":[[60.187001,24.821896],[60.187078,24.821919],[60.187066,24.821995],[60.187057,24.822052],[60.18699,24.822471],[60.186979,24.822541],[60.186896,24.822486],[60.1869,24.822463],[60.186903,24.822442],[60.186779,24.822398],[60.1868,24.822133],[60.186776,24.822108],[60.186752,24.822084],[60.186776,24.821881],[60.186832,24.821898],[60.186961,24.82047],[60.18697,24.820473],[60.18698,24.820476],[60.186996,24.820483],[60.186977,24.820706],[60.187181,24.820788],[60.187001,24.821896]],"name":"C siipi CS","name_en":"C wing CS","name_sv":"C flygeln CS","parents":["T"],"note":"The C wing is \"just\" the atrium and some rooms directly connected to it.","osm_elements":[["way",532048007]]},{"id":"abloc-D","type":"wing","latlon":[60.18473,24.825041],"outline":[[60.184792,24.824945],[60.184742,24.825254],[60.184637,24.825184],[60.184687,24.824876],[60.184792,24.824945]],"name":"D wing Abloc","parents":["abloc"],"osm_elements":[["way",815467164]]},{"id":"vare-E","type":"wing","latlon":[60.185651,24.825783],"outline":[[60.18565,24.82604],[60.185543,24.825971],[60.185618,24.825504],[60.185719,24.825569],[60.185724,24.825573],[60.18565,24.82604]],"name":"E wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467140]]},{"id":"vare-F","type":"wing","latlon":[60.185469,24.825507],"outline":[[60.185509,24.825314],[60.185583,24.825475],[60.185409,24.825797],[60.185335,24.825636],[60.185509,24.825314]],"name":"F wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467141]]},{"id":"vare-G","type":"wing","latlon":[60.185234,24.825193],"outline":[[60.1853,24.82504],[60.185229,24.825484],[60.185134,24.825422],[60.185205,24.824979],[60.1853,24.82504]],"name":"G wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467148]]},{"id":"H","type":"wing","latlon":[60.185412,24.826906],"outline":[[60.185595,24.826875],[60.185408,24.82676],[60.185322,24.826706],[60.185306,24.8268],[60.185289,24.82679],[60.185257,24.827003],[60.185393,24.827088],[60.185403,24.827036],[60.185555,24.827129],[60.185595,24.826875]],"name":"H siipi Main","name_en":"H wing Main","name_sv":"H flygeln Main","parents":["main"],"lore":"\"H\" stands for \"hallinto\", the original administration wing. Note how you symbolically ascend the stairs to get to it.","note":"This is practically above Alvari. Go up to the second or third floors from the lobby, then over to it.","osm_elements":[["way",514232720]]},{"id":"abloc-I","type":"wing","latlon":[60.184896,24.824576],"outline":[[60.185,24.824545],[60.184811,24.824907],[60.184726,24.824726],[60.184858,24.824473],[60.184914,24.824365],[60.184966,24.824474],[60.185,24.824545]],"name":"I wing Abloc","parents":["abloc"],"osm_elements":[["way",815467161]]},{"id":"vare-J","type":"wing","latlon":[60.18579,24.825313],"outline":[[60.185907,24.825193],[60.185826,24.825028],[60.185648,24.82538],[60.185726,24.825538],[60.185729,24.825545],[60.185907,24.825193]],"name":"J wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467143]]},{"id":"main-kwing","type":"wing","latlon":[60.185193,24.826828],"outline":[[60.185277,24.826783],[60.185247,24.826969],[60.185244,24.826994],[60.18522,24.826978],[60.185202,24.826966],[60.185101,24.826899],[60.185103,24.826882],[60.185052,24.826794],[60.185108,24.826672],[60.185143,24.826597],[60.185273,24.826677],[60.185259,24.826773],[60.185277,24.826783]],"name":"K siipi Main","name_en":"K wing Main","name_sv":"K flygeln Main","parents":["main"],"lore":"Perhaps \"K\" stands for \"Kirjaamo\", or the Aalto Registry.","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!","osm_elements":[["way",540151861]]},{"id":"vare-K","type":"wing","latlon":[60.185621,24.825136],"outline":[[60.185638,24.825348],[60.185525,24.825278],[60.185595,24.824819],[60.185708,24.824889],[60.185638,24.825348]],"name":"K wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467142]]},{"id":"vare-L","type":"wing","latlon":[60.185413,24.824898],"outline":[[60.185313,24.824969],[60.185384,24.825124],[60.185563,24.824792],[60.185492,24.824637],[60.185313,24.824969]],"name":"L wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467139]]},{"id":"M","type":"wing","latlon":[60.186078,24.828924],"outline":[[60.186145,24.829473],[60.186189,24.829186],[60.18646,24.829352],[60.186478,24.82923],[60.186501,24.829085],[60.186233,24.828915],[60.186278,24.828621],[60.186198,24.828571],[60.186153,24.828865],[60.185891,24.828692],[60.185934,24.828407],[60.185831,24.828346],[60.185818,24.828434],[60.185842,24.828449],[60.185781,24.828842],[60.185767,24.828933],[60.1859,24.829015],[60.185905,24.828983],[60.186113,24.829111],[60.186066,24.829423],[60.186145,24.829473]],"name":"M siipi Main","name_en":"M wing Main","name_sv":"M flygeln Main","parents":["main"],"lore":"Originally from \"maanmittaus\" (surveying).","osm_elements":[["way",514232739]]},{"id":"vare-M","type":"wing","latlon":[60.185322,24.824634],"outline":[[60.185388,24.824474],[60.185315,24.824932],[60.185223,24.824873],[60.185297,24.824415],[60.185388,24.824474]],"name":"M wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467149]]},{"id":"abloc-N","type":"wing","latlon":[60.18514,24.824404],"outline":[[60.18518,24.824199],[60.185259,24.824365],[60.185079,24.824711],[60.185,24.824545],[60.18518,24.824199]],"name":"N wing Abloc","parents":["abloc"],"osm_elements":[["way",815467160]]},{"id":"vare-O","type":"wing","latlon":[60.18594,24.824795],"outline":[[60.185954,24.825062],[60.185848,24.824996],[60.185923,24.824524],[60.185935,24.824532],[60.186029,24.824593],[60.185954,24.825062]],"name":"O wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467144]]},{"id":"vare-P","type":"wing","latlon":[60.185798,24.824545],"outline":[[60.1859,24.824509],[60.185716,24.824866],[60.18563,24.824688],[60.185814,24.82433],[60.185831,24.824365],[60.1859,24.824509]],"name":"P wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467145]]},{"id":"vare-Q","type":"wing","latlon":[60.185611,24.82435],"outline":[[60.185675,24.824186],[60.18561,24.824651],[60.185513,24.824595],[60.185582,24.824133],[60.185675,24.824186]],"name":"Q wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467151]]},{"id":"vare-R","type":"wing","latlon":[60.185477,24.824168],"outline":[[60.18559,24.824105],[60.18541,24.824434],[60.185339,24.824277],[60.185412,24.824142],[60.185519,24.823948],[60.18559,24.824105]],"name":"R wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467150]]},{"id":"vare-S","type":"wing","latlon":[60.186027,24.824185],"outline":[[60.186104,24.824099],[60.186029,24.824593],[60.185935,24.824532],[60.185923,24.824524],[60.186009,24.824031],[60.186033,24.823982],[60.186037,24.823995],[60.186044,24.824001],[60.186048,24.823994],[60.186104,24.824099]],"name":"S wing V\u00e4re","parents":["vare"],"osm_elements":[["way",815467155]]},{"id":"biz-T","type":"wing","latlon":[60.185886,24.824032],"outline":[[60.185996,24.823961],[60.185904,24.823774],[60.185722,24.824135],[60.185814,24.82433],[60.185996,24.823961]],"name":"T wing BIZ","parents":["R068"],"osm_elements":[["way",815467156]]},{"id":"U","type":"wing","latlon":[60.187136,24.828977],"outline":[[60.186676,24.828882],[60.186684,24.828887],[60.186853,24.828994],[60.186894,24.82902],[60.18692,24.829037],[60.186987,24.829079],[60.186947,24.829248],[60.186932,24.829309],[60.18693,24.82939],[60.186933,24.829411],[60.186996,24.829475],[60.18701,24.829473],[60.187034,24.82942],[60.187047,24.829377],[60.187066,24.829376],[60.187086,24.829376],[60.187092,24.829405],[60.187103,24.829417],[60.187165,24.829419],[60.187174,24.829411],[60.187193,24.82922],[60.187182,24.829212],[60.187184,24.829201],[60.187192,24.829149],[60.187195,24.829133],[60.187201,24.829093],[60.18721,24.829099],[60.187221,24.829105],[60.187231,24.829111],[60.187239,24.829062],[60.187439,24.829177],[60.187446,24.829149],[60.187485,24.829171],[60.187543,24.82881],[60.187515,24.828793],[60.187522,24.828758],[60.187463,24.82872],[60.187485,24.828576],[60.18746,24.828558],[60.187435,24.828541],[60.187445,24.828466],[60.187205,24.828314],[60.187182,24.828299],[60.187186,24.828273],[60.18717,24.828263],[60.186835,24.828053],[60.186819,24.828141],[60.186797,24.828129],[60.186676,24.828882]],"name":"U siipi Main","name_en":"U wing Main","name_sv":"U flygeln Main","parents":["main"],"children":["itservices"],"lore":"The \"U\" comes from \"uusi\" (new) - the new part of the building.","osm_elements":[["way",514232732]]},{"id":"biz-U","type":"wing","latlon":[60.185709,24.823806],"outline":[[60.185775,24.823684],[60.185705,24.82413],[60.185616,24.824074],[60.185685,24.823627],[60.185696,24.823634],[60.185775,24.823684]],"name":"U wing BIZ","parents":["R068"],"osm_elements":[["way",815467152]]},{"id":"biz-V","type":"wing","latlon":[60.186014,24.82364],"outline":[[60.186032,24.82385],[60.185917,24.823779],[60.185986,24.823324],[60.186101,24.823395],[60.186032,24.82385]],"name":"V wing BIZ","parents":["R068"],"osm_elements":[["way",815467158]]},{"id":"biz-X","type":"wing","latlon":[60.185825,24.823438],"outline":[[60.185716,24.82352],[60.18573,24.823551],[60.18578,24.823653],[60.185964,24.823325],[60.185966,24.823321],[60.185901,24.823177],[60.185716,24.82352]],"name":"X wing BIZ","parents":["R068"],"osm_elements":[["way",815467157]]},{"id":"Y","type":"wing","latlon":[60.185952,24.827885],"outline":[[60.185818,24.828434],[60.185831,24.828346],[60.185934,24.828407],[60.186198,24.828571],[60.186278,24.828621],[60.186359,24.828669],[60.186655,24.828842],[60.186665,24.828848],[60.186664,24.828862],[60.186663,24.828874],[60.186676,24.828882],[60.186797,24.828129],[60.186799,24.828105],[60.186599,24.827978],[60.186379,24.827839],[60.186411,24.827611],[60.186145,24.827441],[60.186026,24.827368],[60.18603,24.827342],[60.186009,24.827327],[60.186025,24.827227],[60.186004,24.827209],[60.18602,24.827111],[60.185993,24.827095],[60.185953,24.827071],[60.185598,24.826851],[60.185595,24.826875],[60.185555,24.827129],[60.185658,24.827192],[60.185706,24.82722],[60.185682,24.827373],[60.18567,24.827381],[60.185638,24.827527],[60.185645,24.827552],[60.185643,24.82759],[60.185638,24.827618],[60.185634,24.827635],[60.185677,24.827717],[60.185684,24.827695],[60.185695,24.827711],[60.185736,24.827782],[60.185778,24.827853],[60.185762,24.827964],[60.185744,24.827952],[60.185741,24.827977],[60.185737,24.828],[60.185733,24.828025],[60.18573,24.82805],[60.185726,24.828076],[60.185718,24.828126],[60.185708,24.828191],[60.185701,24.828237],[60.18569,24.828311],[60.185684,24.828349],[60.185785,24.828414],[60.185804,24.828427],[60.185818,24.828434]],"name":"Y siipi Main","name_en":"Y wing Main","name_sv":"Y flygeln Main","parents":["main"],"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.","osm_elements":[["way",514232725]]},{"id":"biz-Y","type":"wing","latlon":[60.186008,24.822866],"outline":[[60.186076,24.822691],[60.186002,24.823166],[60.185923,24.823117],[60.185929,24.823078],[60.185997,24.822641],[60.186056,24.822678],[60.186076,24.822691]],"name":"Y wing BIZ","parents":["R068"],"osm_elements":[["way",815467159]]},{"id":"tuas-x1xxwing","type":"wing","latlon":[60.187071,24.818138],"outline":[[60.187128,24.818401],[60.187137,24.818296],[60.18714,24.818271],[60.187202,24.818294],[60.187222,24.818301],[60.187246,24.818044],[60.187169,24.818015],[60.187185,24.817846],[60.187262,24.817874],[60.187284,24.817622],[60.18721,24.817593],[60.187198,24.817589],[60.187218,24.817388],[60.187082,24.817334],[60.187072,24.817439],[60.18701,24.817416],[60.186989,24.817647],[60.187053,24.81767],[60.187035,24.817872],[60.186971,24.817849],[60.186952,24.818069],[60.187017,24.818093],[60.186998,24.818294],[60.186933,24.81827],[60.186912,24.818501],[60.186973,24.818524],[60.186956,24.818708],[60.186896,24.818686],[60.186873,24.818925],[60.186932,24.818948],[60.186912,24.819164],[60.187053,24.819219],[60.187128,24.818401]],"name":"x1xx siipi TUAS","name_en":"x1xx wing TUAS","name_sv":"x1xx flygeln TUAS","parents":["tuas"],"osm_elements":[["way",532048011]]},{"id":"tuas-x5xxwing","type":"wing","latlon":[60.1873,24.819375],"outline":[[60.187245,24.818503],[60.187086,24.819875],[60.187042,24.819855],[60.187016,24.820078],[60.187011,24.820135],[60.187124,24.820187],[60.18713,24.820134],[60.187351,24.820236],[60.187368,24.820244],[60.18738,24.82014],[60.187394,24.820016],[60.187294,24.81997],[60.187317,24.819781],[60.18742,24.819824],[60.187436,24.819701],[60.187487,24.819291],[60.1875,24.819177],[60.187393,24.819127],[60.187419,24.818904],[60.187442,24.818711],[60.187359,24.818672],[60.187382,24.81848],[60.187335,24.818457],[60.187328,24.818454],[60.187339,24.818356],[60.187266,24.818321],[60.187245,24.818503]],"name":"x5xx siipi TUAS","name_en":"x5xx wing TUAS","name_sv":"x5xx flygeln TUAS","parents":["tuas"],"osm_elements":[["way",532048012]]},{"id":"dipoli-0.061","type":"room","latlon":[60.184717,24.832626],"aliases":["0.061"],"name":"0.061: Klondyke","parents":["dipoli"],"ref":"0.061","floor":-1,"osm_elements":[["node","6881329023"]]},{"id":"dipoli-1.010","type":"room","latlon":[60.184947,24.831747],"aliases":["1.010"],"name":"1.010: Lumituuli","parents":["dipoli"],"ref":"1.010","floor":1,"osm_elements":[["node","5131418797"]]},{"id":"dipoli-1.072","type":"room","latlon":[60.184988,24.833083],"aliases":["1.072"],"name":"1.072: Palaver","parents":["dipoli"],"ref":"1.072","floor":1,"osm_elements":[["node","5131418790"]]},{"id":"dipoli-1.073","type":"room","latlon":[60.185102,24.833165],"aliases":["1.073"],"name":"1.073: Poli","parents":["dipoli"],"ref":"1.073","floor":1,"osm_elements":[["node","5131418791"]]},{"id":"dipoli-1.078","type":"room","latlon":[60.185182,24.833172],"aliases":["1.078"],"name":"1.078: Takka","parents":["dipoli"],"ref":"1.078","floor":1,"osm_elements":[["node","5131418792"]]},{"id":"dipoli-1.093","type":"room","latlon":[60.185265,24.832962],"aliases":["1.093"],"name":"1.093: Alma Mater","parents":["dipoli"],"ref":"1.093","floor":1,"osm_elements":[["node","5131418793"]]},{"id":"dipoli-1.154","type":"room","latlon":[60.185071,24.831909],"aliases":["1.154"],"name":"1.154: Valsla","parents":["dipoli"],"ref":"1.154","floor":1,"osm_elements":[["node","5131418796"]]},{"id":"dipoli-1.178","type":"room","latlon":[60.185213,24.832441],"aliases":["1.178"],"name":"1.178: Mairea","parents":["dipoli"],"ref":"1.178","floor":1,"osm_elements":[["node","5131418795"]]},{"id":"dipoli-1.180","type":"room","latlon":[60.185225,24.832582],"aliases":["1.180"],"name":"1.180: Biennale","parents":["dipoli"],"ref":"1.180","floor":1,"osm_elements":[["node","5131418794"]]},{"id":"dipoli-1.183","type":"room","latlon":[60.185296,24.832682],"aliases":["1.183"],"name":"1.183: Honko","parents":["dipoli"],"ref":"1.183","floor":1,"osm_elements":[["node","5526925883"]]},{"id":"K1-101","type":"room","latlon":[60.187278,24.826296],"aliases":["101"],"name":"101","parents":["K1"],"ref":"101","floor":1,"osm_elements":[["node","5232638591"]]},{"id":"tuas-1018","type":"room","latlon":[60.186935,24.819984],"aliases":["1018"],"name":"1018: AS1","parents":["tuas"],"ref":"1018","floor":1,"osm_elements":[["node","5105524141"]]},{"id":"tuas-1021","type":"room","latlon":[60.186967,24.819767],"aliases":["1021"],"name":"1021: AS3","parents":["tuas"],"ref":"1021","floor":1,"osm_elements":[["node","5105524135"]]},{"id":"tuas-1022","type":"room","latlon":[60.186962,24.819772],"aliases":["1022"],"name":"1022","parents":["tuas"],"ref":"1022","floor":1,"osm_elements":[["node","5105524137"]]},{"id":"tuas-1023","type":"room","latlon":[60.186905,24.81974],"aliases":["1023"],"name":"1023: AS4","parents":["tuas"],"ref":"1023","floor":1,"osm_elements":[["node","5105524136"]]},{"id":"tuas-1024","type":"room","latlon":[60.186892,24.819741],"aliases":["1024"],"name":"1024","parents":["tuas"],"ref":"1024","floor":1,"osm_elements":[["node","5105524134"]]},{"id":"kirjasto-106","type":"room","latlon":[60.185004,24.827597],"aliases":["106"],"name":"106: Ilmari","parents":["kirjasto"],"ref":"106","floor":1,"osm_elements":[["node","5120785983"]]},{"id":"kirjasto-107","type":"room","latlon":[60.184983,24.827645],"aliases":["107"],"name":"107: Arttu","parents":["kirjasto"],"ref":"107","floor":1,"osm_elements":[["node","5120785984"]]},{"id":"kirjasto-108","type":"room","latlon":[60.184963,24.827678],"aliases":["108"],"name":"108: Jaakko","parents":["kirjasto"],"ref":"108","floor":1,"osm_elements":[["node","5120785985"]]},{"id":"kirjasto-109","type":"room","latlon":[60.184946,24.827706],"aliases":["109"],"name":"109: Dora","parents":["kirjasto"],"ref":"109","floor":1,"osm_elements":[["node","5120785986"]]},{"id":"kirjasto-113","type":"room","latlon":[60.184832,24.82794],"aliases":["113"],"name":"113: Johanna","parents":["kirjasto"],"ref":"113","floor":1,"osm_elements":[["node","5120785987"]]},{"id":"tuas-1171","type":"room","latlon":[60.187044,24.818957],"aliases":["1171"],"name":"1171: TU3","parents":["tuas","tuas-x1xxwing"],"ref":"1171","floor":1,"osm_elements":[["node","6817211767"]]},{"id":"tuas-1174","type":"room","latlon":[60.187063,24.818751],"aliases":["1174"],"name":"1174: TU4","parents":["tuas","tuas-x1xxwing"],"ref":"1174","floor":1,"osm_elements":[["node","6817211768"]]},{"id":"tuas-1194","type":"room","latlon":[60.187137,24.817912],"aliases":["1194"],"name":"1194: TU5","parents":["tuas","tuas-x1xxwing"],"ref":"1194","floor":1,"osm_elements":[["node","5105524128"]]},{"id":"tuas-1199","type":"room","latlon":[60.187227,24.817734],"aliases":["1199"],"name":"1199: TU6","parents":["tuas","tuas-x1xxwing"],"ref":"1199","floor":1,"osm_elements":[["node","5105524132"]]},{"id":"tuas-1200","type":"room","latlon":[60.187174,24.817498],"aliases":["1200"],"name":"1200: TU7","parents":["tuas","tuas-x1xxwing"],"ref":"1200","floor":1,"osm_elements":[["node","5105524130"]]},{"id":"marsio-1230","type":"room","latlon":[60.186562,24.826508],"aliases":["1230"],"name":"1230: Cinema","parents":["marsio"],"ref":"1230","floor":1,"osm_elements":[["node","12141712492"]]},{"id":"kirjasto-126","type":"room","latlon":[60.184757,24.82811],"aliases":["126"],"name":"126: Juho","parents":["kirjasto"],"ref":"126","floor":1,"osm_elements":[["node","5120785980"]]},{"id":"r012-145","type":"room","latlon":[60.18292,24.825392],"aliases":["145"],"name":"145: V2","parents":["r012"],"ref":"145","floor":1,"osm_elements":[["node","5130434747"]]},{"id":"K1-148","type":"room","latlon":[60.187086,24.827097],"aliases":["148"],"name":"148","parents":["K1"],"ref":"148","floor":1,"osm_elements":[["node","5232638596"]]},{"id":"K1-150","type":"room","latlon":[60.187151,24.827185],"aliases":["150"],"name":"150","parents":["K1"],"ref":"150","floor":1,"osm_elements":[["node","5232638595"]]},{"id":"kide-1501","type":"room","latlon":[60.186814,24.823157],"aliases":["1501"],"name":"1501: Sklodowska-Curie","parents":["kide"],"ref":"1501","floor":1,"osm_elements":[["node","11912139483"]]},{"id":"tuas-1522","type":"room","latlon":[60.187213,24.819089],"aliases":["1522"],"name":"1522: AS6","parents":["tuas","tuas-x5xxwing"],"ref":"1522","floor":1,"osm_elements":[["node","6817211765"]]},{"id":"kide-1571","type":"room","latlon":[60.186603,24.823121],"aliases":["1571"],"name":"1571: Meitner","parents":["kide"],"ref":"1571","floor":1,"osm_elements":[["node","11912139482"]]},{"id":"kide-1572","type":"room","latlon":[60.186562,24.823341],"aliases":["1572"],"name":"1572: Noether","parents":["kide"],"ref":"1572","floor":1,"osm_elements":[["node","11912139481"]]},{"id":"tuas-1621","type":"room","latlon":[60.18719,24.819297],"aliases":["1621"],"name":"1621: AS5","parents":["tuas","tuas-x5xxwing"],"ref":"1621","floor":1,"osm_elements":[["node","7575257710"]]},{"id":"dipoli-2.020","type":"room","latlon":[60.185201,24.832086],"aliases":["2.020"],"name":"2.020: Aino & Elisa","parents":["dipoli"],"ref":"2.020","floor":2,"osm_elements":[["node","6881329020"]]},{"id":"dipoli-2.031","type":"room","latlon":[60.185008,24.832572],"aliases":["2.031"],"name":"2.031: Sief","parents":["dipoli"],"ref":"2.031","floor":2,"osm_elements":[["node","5131418788"]]},{"id":"dipoli-2.032","type":"room","latlon":[60.184956,24.832845],"aliases":["2.032"],"name":"2.032: Kaleva","parents":["dipoli"],"ref":"2.032","floor":2,"osm_elements":[["node","5131418787"]]},{"id":"dipoli-2.034","type":"room","latlon":[60.184788,24.832513],"aliases":["2.034"],"name":"2.034: Capitolium","parents":["dipoli"],"ref":"2.034","floor":2,"osm_elements":[["node","5131418789"]]},{"id":"dipoli-2.060","type":"room","latlon":[60.185166,24.832264],"aliases":["2.060"],"name":"2.060: Hauke","parents":["dipoli"],"ref":"2.060","floor":2,"osm_elements":[["node","5131418786"]]},{"id":"dipoli-2.061","type":"room","latlon":[60.185189,24.832283],"aliases":["2.061"],"name":"2.061: Brander","parents":["dipoli"],"ref":"2.061","floor":2,"osm_elements":[["node","5131418785"]]},{"id":"dipoli-2.062","type":"room","latlon":[60.185215,24.832296],"aliases":["2.062"],"name":"2.062: Jalanne","parents":["dipoli"],"ref":"2.062","floor":1,"osm_elements":[["node","5131418784"]]},{"id":"K1-201","type":"room","latlon":[60.187232,24.826312],"aliases":["201"],"name":"201","parents":["K1"],"ref":"201","floor":2,"osm_elements":[["node","5232646816"]]},{"id":"K1-202","type":"room","latlon":[60.187312,24.826296],"aliases":["202"],"name":"202","parents":["K1"],"ref":"202","floor":2,"osm_elements":[["node","5232638589"]]},{"id":"K1-213a","type":"room","latlon":[60.187107,24.826591],"aliases":["213a"],"name":"213a","parents":["K1"],"ref":"213a","floor":2,"osm_elements":[["node","5232638592"]]},{"id":"kirjasto-214","type":"room","latlon":[60.184691,24.828202],"aliases":["214"],"name":"214: Aslak","parents":["kirjasto"],"ref":"214","floor":2,"osm_elements":[["node","5120785978"]]},{"id":"K1-215","type":"room","latlon":[60.187312,24.826672],"aliases":["215"],"name":"215","parents":["K1"],"ref":"215","floor":2,"osm_elements":[["node","5232638593"]]},{"id":"kirjasto-215","type":"room","latlon":[60.184673,24.828238],"aliases":["215"],"name":"215: Lento","parents":["kirjasto"],"ref":"215","floor":2,"osm_elements":[["node","5120785981"]]},{"id":"K1-216","type":"room","latlon":[60.187234,24.826896],"aliases":["216"],"name":"216","parents":["K1"],"ref":"216","floor":2,"osm_elements":[["node","5232638594"]]},{"id":"kirjasto-233a","type":"room","latlon":[60.18462,24.828097],"aliases":["233a"],"name":"233a: Vilho","parents":["kirjasto"],"ref":"233a","floor":2,"osm_elements":[["node","5120785977"]]},{"id":"r034-286","type":"room","latlon":[60.185673,24.819468],"aliases":["286"],"name":"286: 286","parents":["r034"],"ref":"286","floor":2,"osm_elements":[["node","5365395789"]]},{"id":"K1-301c","type":"room","latlon":[60.187296,24.826235],"aliases":["301c"],"name":"301c","parents":["K1"],"ref":"301c","floor":3,"osm_elements":[["node","5232638588"]]},{"id":"K1-301d","type":"room","latlon":[60.187254,24.826175],"aliases":["301d"],"name":"301d","parents":["K1"],"ref":"301d","floor":3,"osm_elements":[["node","5232638586"]]},{"id":"K1-302b","type":"room","latlon":[60.187344,24.826299],"aliases":["302b"],"name":"302b","parents":["K1"],"ref":"302b","floor":3,"osm_elements":[["node","5232638587"]]},{"id":"agrid-A108b/A111a","type":"room","latlon":[60.189039,24.830057],"aliases":["A108b/A111a"],"name":"A108b/A111a: Mordor","parents":["agrid","agrid-A"],"ref":"A108b/A111a","floor":1,"osm_elements":[["node","5389688276"]]},{"id":"main-A123","type":"room","latlon":[60.186408,24.829873],"aliases":["A123"],"name":"A123: A1","parents":["main","A"],"ref":"A123","floor":1,"osm_elements":[["node","5131418800"]]},{"id":"T5","type":"room","latlon":[60.186884,24.82107],"aliases":["A133"],"name":"A133: T5","parents":["T","r030-awing"],"ref":"A133","floor":1,"osm_elements":[["node","5104046533"]]},{"id":"T6","type":"room","latlon":[60.186897,24.820926],"aliases":["A136"],"name":"A136: T6","parents":["T","r030-awing"],"ref":"A136","floor":1,"osm_elements":[["node","5104046532"]]},{"id":"T-A140","type":"room","latlon":[60.186912,24.820765],"aliases":["A140"],"name":"A140: T4","parents":["T","r030-awing"],"ref":"A140","floor":1,"osm_elements":[["node","5105524123"]]},{"id":"agrid-A205a","type":"room","latlon":[60.188905,24.8301],"aliases":["A205a"],"name":"A205a: Desoit","parents":["agrid","agrid-A"],"ref":"A205a","floor":2,"osm_elements":[["node","5389688278"]]},{"id":"agrid-A208d","type":"room","latlon":[60.189067,24.830064],"aliases":["A208d"],"name":"A208d: Jeti","parents":["agrid","agrid-A"],"ref":"A208d","floor":2,"osm_elements":[["node","5389688277"]]},{"id":"r011-A302","type":"room","latlon":[60.183698,24.824433],"aliases":["A302"],"name":"A302: Ke3","parents":["r011"],"ref":"A302","floor":3,"osm_elements":[["node","5130434751"]]},{"id":"r011-A303","type":"room","latlon":[60.183747,24.824353],"aliases":["A303"],"name":"A303","parents":["r011"],"ref":"A303","floor":3,"osm_elements":[["node","5130434750"]]},{"id":"r011-A304","type":"room","latlon":[60.183729,24.824118],"aliases":["A304"],"name":"A304: Ke2","parents":["r011"],"ref":"A304","floor":3,"osm_elements":[["node","5130434752"]]},{"id":"r011-A305","type":"room","latlon":[60.183682,24.823976],"aliases":["A305"],"name":"A305: Ke1","parents":["r011"],"ref":"A305","floor":3,"osm_elements":[["node","5130434753"]]},{"id":"tuas-AS2","type":"room","latlon":[60.186932,24.819831],"aliases":["AS2"],"name":"AS2","parents":["tuas"],"ref":"AS2","floor":2,"osm_elements":[["node","5105524140"]]},{"id":"agrid-B210b","type":"room","latlon":[60.189028,24.830557],"aliases":["B210b"],"name":"B210b: Kekkonen","parents":["agrid","agrid-B"],"ref":"B210b","floor":2,"osm_elements":[["node","5389688274"]]},{"id":"r012-C100","type":"room","latlon":[60.182981,24.825249],"aliases":["C100"],"name":"C100: V1","parents":["r012"],"ref":"C100","floor":1,"osm_elements":[["node","5130434748"]]},{"id":"r012-C101","type":"room","latlon":[60.182946,24.825184],"aliases":["C101"],"name":"C101: V3","parents":["r012"],"ref":"C101","floor":1,"osm_elements":[["node","5130434746"]]},{"id":"T2","type":"room","latlon":[60.18675,24.821997],"aliases":["C105"],"name":"C105: T2","parents":["T","r030-awing"],"ref":"C105","floor":1,"osm_elements":[["node","5104046536"]]},{"id":"T7","type":"room","latlon":[60.18693,24.822185],"aliases":["C106.1"],"name":"C106.1: T7","parents":["T","r030-cwing"],"ref":"C106.1","floor":1,"osm_elements":[["node","11912162009"]]},{"id":"T-C106.2","type":"room","latlon":[60.186909,24.822368],"aliases":["C106.2"],"name":"C106.2: T8","parents":["T","r030-cwing"],"ref":"C106.2","floor":1,"osm_elements":[["node","11912162008"]]},{"id":"T1","type":"room","latlon":[60.186931,24.822155],"aliases":["C202"],"name":"C202: T1","parents":["T","r030-cwing"],"ref":"C202","floor":2,"osm_elements":[["node","5104046537"]]},{"id":"T3","type":"room","latlon":[60.186726,24.821978],"aliases":["C206"],"name":"C206: T3","parents":["T","r030-awing"],"ref":"C206","floor":2,"osm_elements":[["node","5104046535"]]},{"id":"agrid-D109b","type":"room","latlon":[60.189012,24.83108],"aliases":["D109b"],"name":"D109b: Chupa-Cabra","parents":["agrid","agrid-D"],"ref":"D109b","floor":1,"osm_elements":[["node","5389688270"]]},{"id":"agrid-D209a","type":"room","latlon":[60.189006,24.830943],"aliases":["D209a"],"name":"D209a: Mermaid","parents":["agrid","agrid-D"],"ref":"D209a","floor":2,"osm_elements":[["node","5389688265"]]},{"id":"agrid-D209b","type":"room","latlon":[60.189005,24.831078],"aliases":["D209b"],"name":"D209b: Morso","parents":["agrid","agrid-D"],"ref":"D209b","floor":2,"osm_elements":[["node","5389688264"]]},{"id":"agrid-D209c","type":"room","latlon":[60.189003,24.831184],"aliases":["D209c"],"name":"D209c: Centaur","parents":["agrid","agrid-D"],"ref":"D209c","floor":2,"osm_elements":[["node","5389688263"]]},{"id":"agrid-D309a","type":"room","latlon":[60.189013,24.830994],"aliases":["D309a"],"name":"D309a: Krampus","parents":["agrid","agrid-D"],"ref":"D309a","floor":3,"osm_elements":[["node","5389749385"]]},{"id":"agrid-D309c","type":"room","latlon":[60.189012,24.831184],"aliases":["D309c"],"name":"D309c: Zombi","parents":["agrid","agrid-D"],"ref":"D309c","floor":3,"osm_elements":[["node","5389688269"]]},{"id":"marsio-Digital Studio","type":"room","latlon":[60.186389,24.8253],"name":"Digital Studio","parents":["marsio"],"floor":1,"osm_elements":[["node","12141949985"]]},{"id":"marsio-Event Studio","type":"room","latlon":[60.186347,24.8257],"name":"Event Studio","parents":["marsio"],"floor":1,"osm_elements":[["node","12141949986"]]},{"id":"F-F138","type":"room","latlon":[60.188248,24.829519],"aliases":["F138"],"name":"F138","parents":["F"],"ref":"F138","floor":1,"osm_elements":[["node","5511418334"]]},{"id":"F-F175a","type":"room","latlon":[60.188185,24.830118],"aliases":["F175a"],"name":"F175a","parents":["F"],"ref":"F175a","floor":1,"osm_elements":[["node","5113813890"]]},{"id":"F-F175b","type":"room","latlon":[60.188219,24.830071],"aliases":["F175b"],"name":"F175b","parents":["F"],"ref":"F175b","floor":1,"osm_elements":[["node","5113813891"]]},{"id":"F-F239a","type":"room","latlon":[60.188328,24.830084],"aliases":["F239a"],"name":"F239a: Auditorio","parents":["F"],"ref":"F239a","floor":1,"osm_elements":[["node","5113813893"]]},{"id":"F-F254","type":"room","latlon":[60.188273,24.829662],"aliases":["F254"],"name":"F254","parents":["F"],"ref":"F254","floor":2,"osm_elements":[["node","5113813885"]]},{"id":"F-F255","type":"room","latlon":[60.188244,24.829544],"aliases":["F255"],"name":"F255","parents":["F"],"ref":"F255","floor":2,"osm_elements":[["node","5113813886"]]},{"id":"F-F257","type":"room","latlon":[60.188169,24.829622],"aliases":["F257"],"name":"F257","parents":["F"],"ref":"F257","floor":2,"osm_elements":[["node","5113813887"]]},{"id":"F-F258","type":"room","latlon":[60.18815,24.829646],"aliases":["F258"],"name":"F258","parents":["F"],"ref":"F258","floor":2,"osm_elements":[["node","5113813888"]]},{"id":"F-F259","type":"room","latlon":[60.188135,24.829666],"aliases":["F259"],"name":"F259","parents":["F"],"ref":"F259","floor":2,"osm_elements":[["node","5113813889"]]},{"id":"main-K014","type":"room","latlon":[60.185158,24.826781],"aliases":["K014"],"name":"K014: Kokoushuone","parents":["main","main-kwing"],"ref":"K014","floor":-1,"osm_elements":[["node","5171375896"]]},{"id":"main-K101","type":"room","latlon":[60.185227,24.826849],"aliases":["K101"],"name":"K101: H1","parents":["main","main-kwing"],"ref":"K101","floor":1,"osm_elements":[["node","5171375898"]]},{"id":"main-K102","type":"room","latlon":[60.185156,24.826795],"aliases":["K102"],"name":"K102: H2","parents":["main","main-kwing"],"ref":"K102","floor":1,"osm_elements":[["node","5171375897"]]},{"id":"main-M102","type":"room","latlon":[60.185893,24.828513],"aliases":["M102"],"name":"M102: Maininki","parents":["main","M"],"ref":"M102","floor":1,"osm_elements":[["node","5131418803"]]},{"id":"main-M134","type":"room","latlon":[60.186295,24.829044],"aliases":["M134"],"name":"M134","parents":["main","M"],"ref":"M134","floor":1,"osm_elements":[["node","6881329021"]]},{"id":"main-M140","type":"room","latlon":[60.186203,24.829103],"aliases":["M140"],"name":"M140: Majakka","parents":["main","M"],"ref":"M140","floor":1,"osm_elements":[["node","5131418802"]]},{"id":"main-M145b","type":"room","latlon":[60.186106,24.829411],"aliases":["M145b"],"name":"M145b: Masto","parents":["main","M"],"ref":"M145b","floor":1,"osm_elements":[["node","5131418801"]]},{"id":"main-M232","type":"room","latlon":[60.185866,24.828923],"aliases":["M232"],"name":"M232: M1","parents":["main","M"],"ref":"M232","floor":2,"osm_elements":[["node","5113813857"]]},{"id":"main-M233","type":"room","latlon":[60.185983,24.828988],"aliases":["M233"],"name":"M233: M2","parents":["main","M"],"ref":"M233","floor":2,"osm_elements":[["node","5113813856"]]},{"id":"main-M234","type":"room","latlon":[60.186078,24.829037],"aliases":["M234"],"name":"M234: M3","parents":["main","M"],"ref":"M234","floor":2,"osm_elements":[["node","5113813855"]]},{"id":"main-MA215","type":"room","latlon":[60.186406,24.829906],"aliases":["MA215"],"name":"MA215: A2","parents":["main","A"],"ref":"MA215","floor":2,"osm_elements":[["node","5131418799"]]},{"id":"tuas-Odeion","type":"room","latlon":[60.187067,24.820065],"name":"Odeion","parents":["tuas","tuas-159xwing","tuas-x5xxwing"],"floor":2,"osm_elements":[["node","5163656732"]]},{"id":"paniikki","type":"room","latlon":[60.186867,24.822295],"outline":[[60.186779,24.822398],[60.1868,24.822133],[60.186809,24.822062],[60.186974,24.822122],[60.186954,24.822349],[60.186935,24.822454],[60.186903,24.822442],[60.186779,24.822398]],"name":"Paniikki","name_en":"Panique Computer Lab","address":"CS T106","parents":["T"],"osm_elements":[["way",91227653]]},{"id":"r002-R160a","type":"room","latlon":[60.186724,24.831047],"aliases":["R160a"],"name":"R160a: R1","parents":["r002"],"ref":"R160a","floor":1,"osm_elements":[["node","5232638614"]]},{"id":"r002-R161a","type":"room","latlon":[60.186796,24.830882],"aliases":["R161a"],"name":"R161a: K1","parents":["r002"],"ref":"R161a","floor":1,"osm_elements":[["node","5232638605"]]},{"id":"r002-R253","type":"room","latlon":[60.187056,24.831201],"aliases":["R253"],"name":"R253: R2","parents":["r002"],"ref":"R253","floor":2,"osm_elements":[["node","5232638617"]]},{"id":"r002-R255","type":"room","latlon":[60.186944,24.831341],"aliases":["R255"],"name":"R255: R3","parents":["r002"],"ref":"R255","floor":2,"osm_elements":[["node","5232638616"]]},{"id":"r002-R264a","type":"room","latlon":[60.186822,24.830894],"aliases":["R264a"],"name":"R264a: R4","parents":["r002"],"ref":"R264a","floor":2,"osm_elements":[["node","5232638613"]]},{"id":"r002-R265","type":"room","latlon":[60.186898,24.830812],"aliases":["R265"],"name":"R265: R5","parents":["r002"],"ref":"R265","floor":2,"osm_elements":[["node","5232638612"]]},{"id":"r002-R309","type":"room","latlon":[60.187444,24.831063],"aliases":["R309"],"name":"R309: R9","parents":["r002"],"ref":"R309","floor":3,"osm_elements":[["node","5232638608"]]},{"id":"r002-R351a","type":"room","latlon":[60.186957,24.83074],"aliases":["R351a"],"name":"R351a: R6","parents":["r002"],"ref":"R351a","floor":3,"osm_elements":[["node","5232638611"]]},{"id":"r002-R351b","type":"room","latlon":[60.186988,24.830704],"aliases":["R351b"],"name":"R351b: R7","parents":["r002"],"ref":"R351b","floor":3,"osm_elements":[["node","5232638610"]]},{"id":"r002-R352","type":"room","latlon":[60.187024,24.83067],"aliases":["R352"],"name":"R352: R8","parents":["r002"],"ref":"R352","floor":3,"osm_elements":[["node","5232638609"]]},{"id":"marsio-Stage","type":"room","latlon":[60.18632,24.82606],"name":"Stage","parents":["marsio"],"floor":1,"osm_elements":[["node","12141949987"]]},{"id":"R068-T003","type":"room","latlon":[60.185884,24.823897],"aliases":["T003"],"name":"T003","parents":["R068","biz-T"],"ref":"T003","floor":1,"osm_elements":[["node","12146148965"]]},{"id":"R068-T004","type":"room","latlon":[60.18579,24.824078],"aliases":["T004"],"name":"T004","parents":["R068","biz-T"],"ref":"T004","floor":1,"osm_elements":[["node","12146148964"]]},{"id":"tuas-TU1","type":"room","latlon":[60.186877,24.819345],"aliases":["TU1"],"name":"TU1","parents":["tuas"],"ref":"TU1","floor":1,"osm_elements":[["node","5105524139"]]},{"id":"tuas-TU2","type":"room","latlon":[60.186947,24.819371],"aliases":["TU2"],"name":"TU2","parents":["tuas"],"ref":"TU2","floor":2,"osm_elements":[["node","5105524138"]]},{"id":"R068-U006","type":"room","latlon":[60.185737,24.823794],"aliases":["U006"],"name":"U006","parents":["R068","biz-U"],"ref":"U006","floor":1,"osm_elements":[["node","12146148963"]]},{"id":"main-U115a","type":"room","latlon":[60.18679,24.828367],"aliases":["U115a"],"name":"U115a","parents":["main","U"],"ref":"U115a","floor":1,"osm_elements":[["node","5113813868"]]},{"id":"main-U115b","type":"room","latlon":[60.186763,24.828556],"aliases":["U115b"],"name":"U115b","parents":["main","U"],"ref":"U115b","floor":1,"osm_elements":[["node","5511418331"]]},{"id":"main-U119","type":"room","latlon":[60.186848,24.828503],"aliases":["U119"],"name":"U119: Deloitte","parents":["main","U"],"ref":"U119","floor":1,"osm_elements":[["node","5113813870"]]},{"id":"main-U121a","type":"room","latlon":[60.186936,24.828499],"aliases":["U121a"],"name":"U121a: S-Ryhm\u00e4","parents":["main","U"],"ref":"U121a","floor":1,"osm_elements":[["node","5113813869"]]},{"id":"main-U121b","type":"room","latlon":[60.18692,24.828607],"aliases":["U121b"],"name":"U121b: EY","parents":["main","U"],"ref":"U121b","floor":1,"osm_elements":[["node","5113813871"]]},{"id":"main-U134a","type":"room","latlon":[60.18701,24.828487],"aliases":["U134a"],"name":"U134a","parents":["main","U"],"ref":"U134a","floor":1,"osm_elements":[["node","5511418332"]]},{"id":"main-U135a","type":"room","latlon":[60.186978,24.828681],"aliases":["U135a"],"name":"U135a: U7 PWC","parents":["main","U"],"ref":"U135a","floor":1,"osm_elements":[["node","5113813872"]]},{"id":"main-U141","type":"room","latlon":[60.187126,24.829164],"aliases":["U141"],"name":"U141: U3","parents":["main","U"],"ref":"U141","floor":1,"osm_elements":[["node","5113813874"]]},{"id":"main-U142","type":"room","latlon":[60.187052,24.829127],"aliases":["U142"],"name":"U142: U4","parents":["main","U"],"ref":"U142","floor":1,"osm_elements":[["node","5113813873"]]},{"id":"main-U147","type":"room","latlon":[60.187103,24.828772],"aliases":["U147"],"name":"U147: U5","parents":["main","U"],"ref":"U147","floor":1,"osm_elements":[["node","5113813867"]]},{"id":"main-U149","type":"room","latlon":[60.187132,24.828583],"aliases":["U149"],"name":"U149: U6 Konecranes","parents":["main","U"],"ref":"U149","floor":1,"osm_elements":[["node","5113813866"]]},{"id":"main-U154","type":"room","latlon":[60.187261,24.828408],"aliases":["U154"],"name":"U154: U1","parents":["main","U"],"ref":"U154","floor":1,"osm_elements":[["node","5113813875"]]},{"id":"main-U157","type":"room","latlon":[60.18724,24.828748],"aliases":["U157"],"name":"U157: U2 Mellin","parents":["main","U"],"ref":"U157","floor":1,"osm_elements":[["node","1433646880"]]},{"id":"main-U257","type":"room","latlon":[60.186846,24.828884],"aliases":["U257"],"name":"U257: Elisa","parents":["main","U"],"ref":"U257","floor":2,"osm_elements":[["node","5113813862"]]},{"id":"main-U259","type":"room","latlon":[60.186978,24.828986],"aliases":["U259"],"name":"U259: Posti","parents":["main","U"],"ref":"U259","floor":2,"osm_elements":[["node","5113813863"]]},{"id":"main-U270","type":"room","latlon":[60.187066,24.829131],"aliases":["U270"],"name":"U270: U8","parents":["main","U"],"ref":"U270","floor":2,"osm_elements":[["node","5113813865"]]},{"id":"main-U271","type":"room","latlon":[60.187114,24.829158],"aliases":["U271"],"name":"U271: U9","parents":["main","U"],"ref":"U271","floor":2,"osm_elements":[["node","5113813864"]]},{"id":"R068-V001","type":"room","latlon":[60.185996,24.823435],"aliases":["V001"],"name":"V001: Jenny ja Antti Wihurin Rahasto","parents":["R068","biz-V"],"ref":"V001","floor":-1,"osm_elements":[["node","12146148967"]]},{"id":"R068-V002","type":"room","latlon":[60.18596,24.823686],"aliases":["V002"],"name":"V002: Saastomoisen S\u00e4\u00e4ti\u00f6","parents":["R068","biz-V"],"ref":"V002","floor":-1,"osm_elements":[["node","12146148966"]]},{"id":"main-Y115","type":"room","latlon":[60.185786,24.828194],"aliases":["Y115"],"name":"Y115","parents":["main","Y"],"ref":"Y115","floor":1,"osm_elements":[["node","6881329022"]]},{"id":"main-Y122","type":"room","latlon":[60.186132,24.827547],"aliases":["Y122"],"name":"Y122: D","parents":["main","Y"],"ref":"Y122","floor":1,"osm_elements":[["node","1433646782"]]},{"id":"main-Y124","type":"room","latlon":[60.186299,24.827651],"aliases":["Y124"],"name":"Y124: E","parents":["main","Y"],"ref":"Y124","floor":1,"osm_elements":[["node","1433646788"]]},{"id":"main-Y202","type":"room","latlon":[60.185826,24.827437],"aliases":["Y202"],"name":"Y202: A","parents":["main","Y"],"ref":"Y202","floor":2,"osm_elements":[["node","5113813860"]]},{"id":"main-Y203","type":"room","latlon":[60.185832,24.827795],"aliases":["Y203"],"name":"Y203: B","parents":["main","Y"],"ref":"Y203","floor":2,"osm_elements":[["node","5113813859"]]},{"id":"main-Y205","type":"room","latlon":[60.185762,24.828257],"aliases":["Y205"],"name":"Y205: C","parents":["main","Y"],"ref":"Y205","floor":2,"osm_elements":[["node","5113813858"]]},{"id":"main-ent-11222444126","type":"entrance","latlon":[60.186178,24.830057],"name":"Entrance","parents":["main"],"nosearch":true,"osm_elements":[["node","11222444126"]]},{"id":"main-ent-1433646779","type":"entrance","latlon":[60.186093,24.827721],"name":"Entrance","parents":["main"],"nosearch":true,"osm_elements":[["node","1433646779"]]},{"id":"r002-ent-303099817","type":"entrance","latlon":[60.187273,24.830512],"name":"Entrance","parents":["r002"],"nosearch":true,"osm_elements":[["node","303099817"]]},{"id":"agrid-ent-5012868025","type":"entrance","latlon":[60.18878,24.831313],"name":"Entrance","parents":["agrid"],"nosearch":true,"osm_elements":[["node","5012868025"]]},{"id":"agrid-ent-264070011","type":"entrance","latlon":[60.189054,24.830368],"name":"Entrance","parents":["agrid"],"nosearch":true,"osm_elements":[["node","264070011"]]},{"id":"agrid-ent-1656239835","type":"entrance","latlon":[60.189088,24.831786],"name":"Entrance","parents":["agrid"],"nosearch":true,"osm_elements":[["node","1656239835"]]},{"id":"agrid-ent-11146649709","type":"entrance","latlon":[60.188767,24.832693],"name":"Entrance","parents":["agrid"],"nosearch":true,"osm_elements":[["node","11146649709"]]},{"id":"agrid-ent-11146649710","type":"entrance","latlon":[60.188773,24.832433],"name":"Entrance","parents":["agrid"],"nosearch":true,"osm_elements":[["node","11146649710"]]},{"id":"agrid-ent-11146649711","type":"entrance","latlon":[60.188778,24.831836],"name":"Entrance","parents":["agrid"],"nosearch":true,"osm_elements":[["node","11146649711"]]},{"id":"K4-ent-338532521","type":"entrance","latlon":[60.188618,24.826586],"address":"S\u00e4hk\u00f6miehentie 4","name":"Entrance","parents":["K4"],"nosearch":true,"osm_elements":[["node","338532521"]]},{"id":"K1-ent-338534555","type":"entrance","latlon":[60.187271,24.827012],"name":"Entrance","parents":["K1"],"nosearch":true,"osm_elements":[["node","338534555"]]},{"id":"nanotalo-ent-338531576","type":"entrance","latlon":[60.186669,24.826038],"name":"Entrance","parents":["nanotalo"],"nosearch":true,"osm_elements":[["node","338531576"]]},{"id":"nanotalo-ent-338531789","type":"entrance","latlon":[60.18666,24.824924],"name":"Entrance","parents":["nanotalo"],"nosearch":true,"osm_elements":[["node","338531789"]]},{"id":"r011-ent-338537204","type":"entrance","latlon":[60.183856,24.825189],"name":"Entrance","parents":["r011"],"nosearch":true,"osm_elements":[["node","338537204"]]},{"id":"kirjasto-ent-301875084","type":"entrance","latlon":[60.184802,24.828057],"name":"Entrance","parents":["kirjasto"],"nosearch":true,"osm_elements":[["node","301875084"]]},{"id":"kirjasto-ent-5020265621","type":"entrance","latlon":[60.184606,24.827486],"name":"Entrance","parents":["kirjasto"],"nosearch":true,"osm_elements":[["node","5020265621"]]},{"id":"kirjasto-ent-5901449040","type":"entrance","latlon":[60.185033,24.827305],"name":"Entrance","parents":["kirjasto"],"nosearch":true,"osm_elements":[["node","5901449040"]]},{"id":"r016-ent-5898662649","type":"entrance","latlon":[60.185675,24.821194],"name":"Entrance","parents":["r016"],"nosearch":true,"osm_elements":[["node","5898662649"]]},{"id":"dipoli-ent-2476428715","type":"entrance","latlon":[60.184925,24.832981],"opening_hours":"Mo-Fr 07:45-18:00; PH off","name":"Entrance","name_en":"Events Entrance","name_sv":"Festing\u00e5ngen","parents":["dipoli"],"nosearch":true,"osm_elements":[["node","2476428715"]]},{"id":"dipoli-ent-263967699","type":"entrance","latlon":[60.185288,24.832807],"opening_hours":"Mo-Fr 07:45-18:00; PH off","name":"Entrance","name_en":"North entrance","name_sv":"Norra ing\u00e5ngen","parents":["dipoli"],"nosearch":true,"osm_elements":[["node","263967699"]]},{"id":"r027-ent-9525308864","type":"entrance","latlon":[60.183251,24.828676],"name":"Entrance","parents":["r027"],"nosearch":true,"osm_elements":[["node","9525308864"]]},{"id":"r027-ent-9525308859","type":"entrance","latlon":[60.183652,24.829379],"name":"Entrance","parents":["r027"],"nosearch":true,"osm_elements":[["node","9525308859"]]},{"id":"T-ent-289113781","type":"entrance","latlon":[60.18697,24.820473],"name":"Entrance","parents":["T"],"nosearch":true,"osm_elements":[["node","289113781"]]},{"id":"micronova-ent-5081929212","type":"entrance","latlon":[60.184552,24.815946],"address":"Tekniikantie 17","name":"Entrance","parents":["micronova"],"nosearch":true,"osm_elements":[["node","5081929212"]]},{"id":"tuas-ent-289113873","type":"entrance","latlon":[60.187006,24.820074],"name":"Entrance","parents":["tuas"],"nosearch":true,"osm_elements":[["node","289113873"]]},{"id":"tuas-ent-977658743","type":"entrance","latlon":[60.186997,24.820071],"name":"Entrance","parents":["tuas"],"nosearch":true,"osm_elements":[["node","977658743"]]},{"id":"r038-ent-1610326469","type":"entrance","latlon":[60.184601,24.830169],"name":"Entrance","parents":["r038"],"nosearch":true,"osm_elements":[["node","1610326469"]]},{"id":"r038-ent-1610326471","type":"entrance","latlon":[60.184804,24.830501],"name":"Entrance","parents":["r038"],"nosearch":true,"osm_elements":[["node","1610326471"]]},{"id":"r038-ent-1610326467","type":"entrance","latlon":[60.184599,24.830491],"name":"Entrance","parents":["r038"],"nosearch":true,"osm_elements":[["node","1610326467"]]},{"id":"r039-ent-5270776201","type":"entrance","latlon":[60.183031,24.83054],"name":"Entrance","parents":["r039"],"nosearch":true,"osm_elements":[["node","5270776201"]]},{"id":"r040-ent-5111296238","type":"entrance","latlon":[60.186164,24.833241],"name":"Entrance","parents":["r040"],"nosearch":true,"osm_elements":[["node","5111296238"]]},{"id":"r040-ent-5111323516","type":"entrance","latlon":[60.186033,24.83313],"name":"Entrance","parents":["r040"],"nosearch":true,"osm_elements":[["node","5111323516"]]},{"id":"vare-ent-5880866309","type":"entrance","latlon":[60.185831,24.824365],"name":"Entrance","parents":["vare"],"nosearch":true,"osm_elements":[["node","5880866309"]]},{"id":"vare-ent-4050038148","type":"entrance","latlon":[60.185724,24.825546],"name":"Entrance","parents":["vare"],"nosearch":true,"osm_elements":[["node","4050038148"]]},{"id":"vare-ent-8719348753","type":"entrance","latlon":[60.185935,24.824532],"name":"Entrance","parents":["vare"],"nosearch":true,"osm_elements":[["node","8719348753"]]},{"id":"metroA-ent-5026528602","type":"entrance","latlon":[60.184614,24.825804],"name":"Entrance","parents":["metroA"],"nosearch":true,"osm_elements":[["node","5026528602"]]},{"id":"R068-ent-6187837675","type":"entrance","latlon":[60.186099,24.823148],"address":"Maarintie 13","name":"Entrance","parents":["R068"],"nosearch":true,"osm_elements":[["node","6187837675"]]},{"id":"abloc-ent-4050038158","type":"entrance","latlon":[60.184702,24.824799],"address":"Biologinkuja 6","name":"Entrance","parents":["abloc"],"nosearch":true,"osm_elements":[["node","4050038158"]]},{"id":"abloc-ent-5026528602","type":"entrance","latlon":[60.184614,24.825804],"name":"Entrance","parents":["abloc"],"nosearch":true,"osm_elements":[["node","5026528602"]]},{"id":"abloc-ent-5871819458","type":"entrance","latlon":[60.185003,24.825333],"name":"Entrance","parents":["abloc"],"nosearch":true,"osm_elements":[["node","5871819458"]]},{"id":"kide-ent-10238806258","type":"entrance","latlon":[60.18661,24.822962],"name":"Entrance","parents":["kide"],"nosearch":true,"osm_elements":[["node","10238806258"]]},{"id":"r101-ent-298644469","type":"entrance","latlon":[60.171761,24.923332],"name":"Entrance","parents":["r101"],"nosearch":true,"osm_elements":[["node","298644469"]]},{"id":"domusgadium-ent-11762183814","type":"entrance","latlon":[60.169373,24.922304],"name":"Entrance","parents":["domusgadium"],"nosearch":true,"osm_elements":[["node","11762183814"]]},{"id":"domusgadium-ent-317741521","type":"entrance","latlon":[60.169444,24.921382],"name":"Entrance","parents":["domusgadium"],"nosearch":true,"osm_elements":[["node","317741521"]]},{"id":"K4-ent-5012868034","type":"entrance","latlon":[60.189146,24.825643],"name":"Entrance (main)","parents":["K4"],"nosearch":true,"osm_elements":[["node","5012868034"]]},{"id":"r010-ent-502886583","type":"entrance","latlon":[60.187256,24.822421],"name":"Entrance (main)","parents":["r010"],"nosearch":true,"osm_elements":[["node","502886583"]]},{"id":"r011-ent-338537520","type":"entrance","latlon":[60.183771,24.824385],"name":"Entrance (main)","parents":["r011"],"nosearch":true,"osm_elements":[["node","338537520"]]},{"id":"maari-ent-348028311","type":"entrance","latlon":[60.18921,24.826134],"name":"Entrance (main)","parents":["maari"],"nosearch":true,"osm_elements":[["node","348028311"]]},{"id":"r018-ent-560097715","type":"entrance","latlon":[60.18753,24.823476],"name":"Entrance (main)","parents":["r018"],"nosearch":true,"osm_elements":[["node","560097715"]]},{"id":"dipoli-ent-1433646676","type":"entrance","latlon":[60.184923,24.832206],"opening_hours":"Mo-Fr 07:45-22:00; Sa 09:30-22:00; PH off","name":"Entrance (main)","name_en":"Pinecone Entrance","name_sv":"Tallkottsing\u00e5ngen","parents":["dipoli"],"nosearch":true,"osm_elements":[["node","1433646676"]]},{"id":"oih-ent-2375427439","type":"entrance","latlon":[60.187201,24.816356],"name":"Entrance (main)","parents":["oih"],"nosearch":true,"osm_elements":[["node","2375427439"]]},{"id":"r034-ent-25530504","type":"entrance","latlon":[60.18551,24.820519],"name":"Entrance (main)","parents":["r034"],"nosearch":true,"osm_elements":[["node","25530504"]]},{"id":"r040-ent-25468805","type":"entrance","latlon":[60.185924,24.832462],"name":"Entrance (main)","parents":["r040"],"nosearch":true,"osm_elements":[["node","25468805"]]},{"id":"main-ent-57240233","type":"entrance","latlon":[60.185953,24.827071],"name":"Entrance (main) \u267f","address":"Otakaari 1 F","parents":["main"],"nosearch":true,"osm_elements":[["node","57240233"]]},{"id":"K2-ent-5171375888","type":"entrance","latlon":[60.187586,24.825221],"name":"Entrance (main) \u267f","parents":["K2"],"nosearch":true,"osm_elements":[["node","5171375888"]]},{"id":"K1-ent-1691532053","type":"entrance","latlon":[60.187083,24.826799],"name":"Entrance (main) \u267f","parents":["K1"],"nosearch":true,"osm_elements":[["node","1691532053"]]},{"id":"kirjasto-ent-301814925","type":"entrance","latlon":[60.184603,24.827889],"name":"Entrance (main) \u267f","parents":["kirjasto"],"nosearch":true,"osm_elements":[["node","301814925"]]},{"id":"micronova-ent-5081929217","type":"entrance","latlon":[60.184791,24.818355],"name":"Entrance (main) \u267f","parents":["micronova"],"nosearch":true,"osm_elements":[["node","5081929217"]]},{"id":"tuas-ent-330026233","type":"entrance","latlon":[60.186878,24.819554],"name":"Entrance (main) \u267f","parents":["tuas"],"nosearch":true,"osm_elements":[["node","330026233"]]},{"id":"metroB-ent-4104851062","type":"entrance","latlon":[60.185208,24.820743],"name":"Entrance (main) \u267f","address":"Tietotie 4 B","parents":["metroB"],"nosearch":true,"osm_elements":[["node","4104851062"]]},{"id":"vare-ent-14","type":"entrance","latlon":[60.185316,24.825587],"name":"Entrance 14 (main)","parents":["vare"],"nosearch":true,"osm_elements":[["node","5870791854"]]},{"id":"r012-ent-2N","type":"entrance","latlon":[60.182564,24.823957],"name":"Entrance 2N","parents":["r012"],"nosearch":true,"osm_elements":[["node","8369110175"]]},{"id":"r012-ent-A","type":"entrance","latlon":[60.18287,24.825781],"name":"Entrance A","parents":["r012"],"nosearch":true,"osm_elements":[["node","301546950"]]},{"id":"r002-ent-A","type":"entrance","latlon":[60.18688,24.830755],"name":"Entrance A (main)","parents":["r002"],"nosearch":true,"osm_elements":[["node","303099821"]]},{"id":"F-ent-A","type":"entrance","latlon":[60.18839,24.829943],"name":"Entrance A (main)","parents":["F"],"nosearch":true,"osm_elements":[["node","5012868052"]]},{"id":"agrid-ent-A","type":"entrance","latlon":[60.188905,24.830154],"name":"Entrance A (main)","parents":["agrid"],"nosearch":true,"osm_elements":[["node","1129380462"]]},{"id":"K3-ent-A","type":"entrance","latlon":[60.187838,24.824478],"name":"Entrance A (main)","parents":["K3"],"nosearch":true,"osm_elements":[["node","10766856283"]]},{"id":"nanotalo-ent-A","type":"entrance","latlon":[60.187034,24.825393],"name":"Entrance A (main)","parents":["nanotalo"],"nosearch":true,"osm_elements":[["node","5012868056"]]},{"id":"r016-ent-A","type":"entrance","latlon":[60.185997,24.81955],"name":"Entrance A (main)","parents":["r016"],"nosearch":true,"osm_elements":[["node","1524961800"]]},{"id":"r023-ent-A","type":"entrance","latlon":[60.181907,24.830619],"name":"Entrance A (main)","parents":["r023"],"nosearch":true,"osm_elements":[["node","301559910"]]},{"id":"T-ent-A","type":"entrance","latlon":[60.186776,24.822108],"name":"Entrance A (main)","parents":["T"],"nosearch":true,"osm_elements":[["node","319079336"]]},{"id":"abloc-ent-A","type":"entrance","latlon":[60.184774,24.825804],"name":"Entrance A (main) \u267f","parents":["abloc"],"nosearch":true,"osm_elements":[["node","4050038154"]]},{"id":"marsio-ent-A","type":"entrance","latlon":[60.186338,24.826321],"name":"Entrance A (main) \u267f","parents":["marsio"],"nosearch":true,"osm_elements":[["node","11945794460"]]},{"id":"F-ent-C","type":"entrance","latlon":[60.187815,24.829978],"name":"Entrance C","parents":["F"],"nosearch":true,"osm_elements":[["node","1891529132"]]},{"id":"r029-ent-C","type":"entrance","latlon":[60.189028,24.833487],"name":"Entrance C (main)","parents":["r029"],"nosearch":true,"osm_elements":[["node","1281703391"]]},{"id":"F-ent-D","type":"entrance","latlon":[60.18774,24.830063],"name":"Entrance D","parents":["F"],"nosearch":true,"osm_elements":[["node","1891529130"]]},{"id":"r011-ent-D","type":"entrance","latlon":[60.183513,24.824262],"name":"Entrance D","parents":["r011"],"nosearch":true,"osm_elements":[["node","301551228"]]},{"id":"r012-ent-D","type":"entrance","latlon":[60.182797,24.82532],"name":"Entrance D","parents":["r012"],"nosearch":true,"osm_elements":[["node","301669290"]]},{"id":"r039-ent-D","type":"entrance","latlon":[60.182931,24.829457],"name":"Entrance D","parents":["r039"],"nosearch":true,"osm_elements":[["node","5270776194"]]},{"id":"main-ent-D","type":"entrance","latlon":[60.185408,24.82676],"address":"Otakaari 1 D","name":"Entrance D \u267f","parents":["main"],"nosearch":true,"osm_elements":[["node","5171375899"]]},{"id":"K4-ent-F","type":"entrance","latlon":[60.188515,24.826029],"address":"S\u00e4hk\u00f6miehentie 4 F","name":"Entrance F","parents":["K4"],"nosearch":true,"osm_elements":[["node","5490538119"]]},{"id":"T-ent-F","type":"entrance","latlon":[60.186881,24.820318],"name":"Entrance F","parents":["T"],"nosearch":true,"osm_elements":[["node","25049724"]]},{"id":"r011-ent-F3","type":"entrance","latlon":[60.183059,24.823056],"name":"Entrance F3","parents":["r011"],"nosearch":true,"osm_elements":[["node","8369110174"]]},{"id":"K4-ent-G","type":"entrance","latlon":[60.1885,24.826076],"address":"S\u00e4hk\u00f6miehentie 4 G","name":"Entrance G","parents":["K4"],"nosearch":true,"osm_elements":[["node","5490538118"]]},{"id":"T-ent-I","type":"entrance","latlon":[60.187247,24.820964],"name":"Entrance I (service) \u26d4","parents":["T"],"nosearch":true,"osm_elements":[["node","5101956782"]]},{"id":"main-ent-K","type":"entrance","latlon":[60.186808,24.828135],"address":"Otakaari 1 K","name":"Entrance K","parents":["main"],"nosearch":true,"osm_elements":[["node","1674426522"]]},{"id":"r012-ent-K","type":"entrance","latlon":[60.182768,24.82477],"name":"Entrance K (main)","parents":["r012"],"nosearch":true,"osm_elements":[["node","301670848"]]},{"id":"main-ent-L","type":"entrance","latlon":[60.18717,24.828263],"name":"Entrance L","parents":["main"],"nosearch":true,"osm_elements":[["node","1433646855"]]},{"id":"T-ent-L","type":"entrance","latlon":[60.187066,24.821995],"name":"Entrance L","parents":["T"],"nosearch":true,"osm_elements":[["node","569957326"]]},{"id":"main-ent-M","type":"entrance","latlon":[60.187205,24.828314],"name":"Entrance M","parents":["main"],"nosearch":true,"osm_elements":[["node","299447493"]]},{"id":"main-ent-N","type":"entrance","latlon":[60.18746,24.828558],"name":"Entrance N \u267f","parents":["main"],"nosearch":true,"osm_elements":[["node","5027035164"]]},{"id":"main-ent-P","type":"entrance","latlon":[60.18721,24.829099],"name":"Entrance P","parents":["main"],"nosearch":true,"osm_elements":[["node","299447502"]]},{"id":"r012-ent-R","type":"entrance","latlon":[60.183146,24.824994],"name":"Entrance R","parents":["r012"],"nosearch":true,"osm_elements":[["node","5020264807"]]},{"id":"main-ent-T","type":"entrance","latlon":[60.186655,24.828842],"name":"Entrance T \u267f","parents":["main"],"nosearch":true,"osm_elements":[["node","299447504"]]},{"id":"main-ent-U","type":"entrance","latlon":[60.186478,24.82923],"name":"Entrance U \u267f","parents":["main"],"nosearch":true,"osm_elements":[["node","569956704"]]},{"id":"main-ent-U1","type":"entrance","latlon":[60.18633,24.829592],"name":"Entrance U1 \u267f","parents":["main"],"nosearch":true,"osm_elements":[["node","5027035173"]]},{"id":"main-ent-X","type":"entrance","latlon":[60.186205,24.830366],"address":"Otakaari 1 X","name":"Entrance X","parents":["main"],"nosearch":true,"osm_elements":[["node","301814758"]]},{"id":"main-ent-Y","type":"entrance","latlon":[60.185781,24.828842],"address":"Otakaari 1 Y","name":"Entrance Y","parents":["main"],"nosearch":true,"osm_elements":[["node","2564163071"]]},{"id":"main-ent-Z","type":"entrance","latlon":[60.185785,24.828414],"address":"Otakaari 1 Z","name":"Entrance Z \u267f","parents":["main"],"nosearch":true,"osm_elements":[["node","299449721"]]},{"id":"main-ent-\u00c4","type":"entrance","latlon":[60.185658,24.827192],"name":"Entrance \u00c4","parents":["main"],"nosearch":true,"osm_elements":[["node","569956681"]]},{"id":"marsio-ent-12141949984","type":"entrance","latlon":[60.186505,24.826527],"name":"Entrance \u267f","parents":["marsio"],"nosearch":true,"osm_elements":[["node","12141949984"]]}],"redirects":{"cs-C105":"T2"},"search":[]} \ No newline at end of file diff --git a/data.json-readable b/data.json-readable new file mode 100644 index 0000000..58a2d9e --- /dev/null +++ b/data.json-readable @@ -0,0 +1,25017 @@ +{ + "locations": [ + { + "address": "Otakaari 1", + "aliases": [ + "P\u00e4\u00e4lafka", + "R001", + "A", + "H", + "M", + "U", + "Y", + "Kandi", + "Main Building", + "OK1" + ], + "children": [ + "dept:physics", + "dept:math", + "itservices", + "servicedesk_kandi", + "main-printer-5131418798", + "main-printer-5113813861", + "startingpoint", + "studentservices", + "alvari", + "studenthub", + "SCI", + "ainocafe", + "elissacafe", + "silinteri", + "A", + "H", + "main-kwing", + "M", + "U", + "Y", + "main-A123", + "main-K014", + "main-K101", + "main-K102", + "main-M102", + "main-M134", + "main-M140", + "main-M145b", + "main-M232", + "main-M233", + "main-M234", + "main-MA215", + "main-U115a", + "main-U115b", + "main-U119", + "main-U121a", + "main-U121b", + "main-U134a", + "main-U135a", + "main-U141", + "main-U142", + "main-U147", + "main-U149", + "main-U154", + "main-U157", + "main-U257", + "main-U259", + "main-U270", + "main-U271", + "main-Y115", + "main-Y122", + "main-Y124", + "main-Y202", + "main-Y203", + "main-Y205", + "main-ent-11222444126", + "main-ent-1433646779", + "main-ent-57240233", + "main-ent-D", + "main-ent-K", + "main-ent-L", + "main-ent-M", + "main-ent-N", + "main-ent-P", + "main-ent-T", + "main-ent-U", + "main-ent-U1", + "main-ent-X", + "main-ent-Y", + "main-ent-Z", + "main-ent-\u00c4" + ], + "entrances": [ + { + "lat": 60.185658, + "lon": 24.827192, + "name": "\u00c4" + }, + { + "lat": 60.185408, + "lon": 24.82676, + "name": "D" + }, + { + "lat": 60.185953, + "lon": 24.827071, + "main": true + }, + { + "lat": 60.186808, + "lon": 24.828135, + "name": "K" + }, + { + "lat": 60.18717, + "lon": 24.828263, + "name": "L" + }, + { + "lat": 60.187205, + "lon": 24.828314, + "name": "M" + }, + { + "lat": 60.18746, + "lon": 24.828558, + "name": "N" + }, + { + "lat": 60.18721, + "lon": 24.829099, + "name": "P" + }, + { + "lat": 60.186655, + "lon": 24.828842, + "name": "T" + }, + { + "lat": 60.186478, + "lon": 24.82923, + "name": "U" + }, + { + "lat": 60.18633, + "lon": 24.829592, + "name": "U1" + }, + { + "lat": 60.186205, + "lon": 24.830366, + "name": "X" + }, + { + "lat": 60.186178, + "lon": 24.830057 + }, + { + "lat": 60.185781, + "lon": 24.828842, + "name": "Y" + }, + { + "lat": 60.185785, + "lon": 24.828414, + "name": "Z" + }, + { + "lat": 60.186093, + "lon": 24.827721 + } + ], + "id": "main", + "label": "Main\n1", + "latlon": [ + 60.185953, + 24.827071 + ], + "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.", + "name": "Aalto-yliopisto Kandidaattikeskus", + "name_en": "Undergraduate Centre", + "name_sv": "Aalto-universitetet Kandidatcentret", + "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.\n", + "opening_hours": "Mo-Th 07:45-20:00; Fr 07:45-18:00; Jun-Aug: Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 4252946 + ], + [ + "relation", + "4148" + ] + ], + "outline": [ + [ + 60.185634, + 24.827635 + ], + [ + 60.185638, + 24.827618 + ], + [ + 60.185643, + 24.82759 + ], + [ + 60.185645, + 24.827552 + ], + [ + 60.185638, + 24.827527 + ], + [ + 60.18567, + 24.827381 + ], + [ + 60.185682, + 24.827373 + ], + [ + 60.185706, + 24.82722 + ], + [ + 60.185658, + 24.827192 + ], + [ + 60.185555, + 24.827129 + ], + [ + 60.185403, + 24.827036 + ], + [ + 60.185393, + 24.827088 + ], + [ + 60.185257, + 24.827003 + ], + [ + 60.18525, + 24.826998 + ], + [ + 60.185244, + 24.826994 + ], + [ + 60.18522, + 24.826978 + ], + [ + 60.185202, + 24.826966 + ], + [ + 60.185101, + 24.826899 + ], + [ + 60.185103, + 24.826882 + ], + [ + 60.185052, + 24.826794 + ], + [ + 60.185108, + 24.826672 + ], + [ + 60.185143, + 24.826597 + ], + [ + 60.185273, + 24.826677 + ], + [ + 60.185259, + 24.826773 + ], + [ + 60.185277, + 24.826783 + ], + [ + 60.185282, + 24.826785 + ], + [ + 60.185289, + 24.82679 + ], + [ + 60.185306, + 24.8268 + ], + [ + 60.185322, + 24.826706 + ], + [ + 60.185408, + 24.82676 + ], + [ + 60.185595, + 24.826875 + ], + [ + 60.185598, + 24.826851 + ], + [ + 60.185953, + 24.827071 + ], + [ + 60.185993, + 24.827095 + ], + [ + 60.18602, + 24.827111 + ], + [ + 60.186004, + 24.827209 + ], + [ + 60.186025, + 24.827227 + ], + [ + 60.186009, + 24.827327 + ], + [ + 60.18603, + 24.827342 + ], + [ + 60.186026, + 24.827368 + ], + [ + 60.186145, + 24.827441 + ], + [ + 60.186411, + 24.827611 + ], + [ + 60.186379, + 24.827839 + ], + [ + 60.186599, + 24.827978 + ], + [ + 60.186799, + 24.828105 + ], + [ + 60.186797, + 24.828129 + ], + [ + 60.186808, + 24.828135 + ], + [ + 60.186819, + 24.828141 + ], + [ + 60.186835, + 24.828053 + ], + [ + 60.18717, + 24.828263 + ], + [ + 60.187186, + 24.828273 + ], + [ + 60.187182, + 24.828299 + ], + [ + 60.187205, + 24.828314 + ], + [ + 60.187445, + 24.828466 + ], + [ + 60.187435, + 24.828541 + ], + [ + 60.18746, + 24.828558 + ], + [ + 60.187485, + 24.828576 + ], + [ + 60.187463, + 24.82872 + ], + [ + 60.187522, + 24.828758 + ], + [ + 60.187515, + 24.828793 + ], + [ + 60.187543, + 24.82881 + ], + [ + 60.187485, + 24.829171 + ], + [ + 60.187446, + 24.829149 + ], + [ + 60.187439, + 24.829177 + ], + [ + 60.187239, + 24.829062 + ], + [ + 60.187231, + 24.829111 + ], + [ + 60.187221, + 24.829105 + ], + [ + 60.18721, + 24.829099 + ], + [ + 60.187201, + 24.829093 + ], + [ + 60.187195, + 24.829133 + ], + [ + 60.187192, + 24.829149 + ], + [ + 60.187184, + 24.829201 + ], + [ + 60.187182, + 24.829212 + ], + [ + 60.187193, + 24.82922 + ], + [ + 60.187174, + 24.829411 + ], + [ + 60.187165, + 24.829419 + ], + [ + 60.187103, + 24.829417 + ], + [ + 60.187092, + 24.829405 + ], + [ + 60.187086, + 24.829376 + ], + [ + 60.187066, + 24.829376 + ], + [ + 60.187047, + 24.829377 + ], + [ + 60.187034, + 24.82942 + ], + [ + 60.18701, + 24.829473 + ], + [ + 60.186996, + 24.829475 + ], + [ + 60.186933, + 24.829411 + ], + [ + 60.18693, + 24.82939 + ], + [ + 60.186932, + 24.829309 + ], + [ + 60.186947, + 24.829248 + ], + [ + 60.186987, + 24.829079 + ], + [ + 60.18692, + 24.829037 + ], + [ + 60.186894, + 24.82902 + ], + [ + 60.186853, + 24.828994 + ], + [ + 60.186684, + 24.828887 + ], + [ + 60.186676, + 24.828882 + ], + [ + 60.186663, + 24.828874 + ], + [ + 60.186664, + 24.828862 + ], + [ + 60.186665, + 24.828848 + ], + [ + 60.186655, + 24.828842 + ], + [ + 60.186359, + 24.828669 + ], + [ + 60.186278, + 24.828621 + ], + [ + 60.186233, + 24.828915 + ], + [ + 60.186501, + 24.829085 + ], + [ + 60.186478, + 24.82923 + ], + [ + 60.18646, + 24.829352 + ], + [ + 60.186189, + 24.829186 + ], + [ + 60.186145, + 24.829473 + ], + [ + 60.18633, + 24.829592 + ], + [ + 60.18634, + 24.829599 + ], + [ + 60.186343, + 24.82958 + ], + [ + 60.186485, + 24.829607 + ], + [ + 60.186472, + 24.829718 + ], + [ + 60.186464, + 24.829718 + ], + [ + 60.186453, + 24.829832 + ], + [ + 60.186445, + 24.82983 + ], + [ + 60.186435, + 24.829957 + ], + [ + 60.186421, + 24.829959 + ], + [ + 60.186363, + 24.830322 + ], + [ + 60.186342, + 24.830449 + ], + [ + 60.18623, + 24.830381 + ], + [ + 60.186205, + 24.830366 + ], + [ + 60.186171, + 24.830344 + ], + [ + 60.185962, + 24.83021 + ], + [ + 60.185979, + 24.830102 + ], + [ + 60.185992, + 24.830011 + ], + [ + 60.185996, + 24.829984 + ], + [ + 60.186172, + 24.830094 + ], + [ + 60.186175, + 24.83008 + ], + [ + 60.186178, + 24.830057 + ], + [ + 60.186182, + 24.830036 + ], + [ + 60.186224, + 24.829784 + ], + [ + 60.186181, + 24.829757 + ], + [ + 60.186183, + 24.82973 + ], + [ + 60.186155, + 24.829713 + ], + [ + 60.186148, + 24.82973 + ], + [ + 60.186105, + 24.829704 + ], + [ + 60.186106, + 24.829684 + ], + [ + 60.186078, + 24.829667 + ], + [ + 60.186073, + 24.829684 + ], + [ + 60.186032, + 24.829658 + ], + [ + 60.186033, + 24.829635 + ], + [ + 60.185984, + 24.829607 + ], + [ + 60.18598, + 24.829625 + ], + [ + 60.185951, + 24.829609 + ], + [ + 60.185952, + 24.829585 + ], + [ + 60.185858, + 24.829526 + ], + [ + 60.18589, + 24.829313 + ], + [ + 60.186066, + 24.829423 + ], + [ + 60.186113, + 24.829111 + ], + [ + 60.185905, + 24.828983 + ], + [ + 60.1859, + 24.829015 + ], + [ + 60.185767, + 24.828933 + ], + [ + 60.185781, + 24.828842 + ], + [ + 60.185842, + 24.828449 + ], + [ + 60.185818, + 24.828434 + ], + [ + 60.185804, + 24.828427 + ], + [ + 60.185785, + 24.828414 + ], + [ + 60.185684, + 24.828349 + ], + [ + 60.18569, + 24.828311 + ], + [ + 60.185701, + 24.828237 + ], + [ + 60.185708, + 24.828191 + ], + [ + 60.185718, + 24.828126 + ], + [ + 60.185726, + 24.828076 + ], + [ + 60.18573, + 24.82805 + ], + [ + 60.185733, + 24.828025 + ], + [ + 60.185737, + 24.828 + ], + [ + 60.185741, + 24.827977 + ], + [ + 60.185744, + 24.827952 + ], + [ + 60.185762, + 24.827964 + ], + [ + 60.185778, + 24.827853 + ], + [ + 60.185741, + 24.827792 + ], + [ + 60.185714, + 24.827744 + ], + [ + 60.185695, + 24.827711 + ], + [ + 60.185684, + 24.827695 + ], + [ + 60.185677, + 24.827717 + ], + [ + 60.185634, + 24.827635 + ] + ], + "type": "building" + }, + { + "address": "Rakentajanaukio 4", + "aliases": [ + "Raksa", + "R002", + "R" + ], + "children": [ + "dept:civileng", + "r002-printer-5232638615", + "ENG", + "r002-R160a", + "r002-R161a", + "r002-R253", + "r002-R255", + "r002-R264a", + "r002-R265", + "r002-R309", + "r002-R351a", + "r002-R351b", + "r002-R352", + "r002-ent-303099817", + "r002-ent-A" + ], + "entrances": [ + { + "lat": 60.18688, + "lon": 24.830755, + "main": true, + "name": "A" + }, + { + "lat": 60.187273, + "lon": 24.830512 + } + ], + "id": "r002", + "label": "R\n2", + "latlon": [ + 60.18688, + 24.830755 + ], + "name": "Rakennus- ja ymp\u00e4rist\u00f6tekniikka", + "name_en": "Civil and Environmental Engineering", + "opening_hours": "Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 7579330 + ] + ], + "outline": [ + [ + 60.18685, + 24.831302 + ], + [ + 60.186807, + 24.831144 + ], + [ + 60.18682, + 24.831129 + ], + [ + 60.186809, + 24.831091 + ], + [ + 60.186708, + 24.831203 + ], + [ + 60.186654, + 24.831006 + ], + [ + 60.186845, + 24.830794 + ], + [ + 60.18688, + 24.830755 + ], + [ + 60.186916, + 24.830715 + ], + [ + 60.186931, + 24.830699 + ], + [ + 60.187233, + 24.830364 + ], + [ + 60.187273, + 24.830512 + ], + [ + 60.187281, + 24.83054 + ], + [ + 60.187316, + 24.830501 + ], + [ + 60.18756, + 24.831392 + ], + [ + 60.18755, + 24.831404 + ], + [ + 60.187602, + 24.831594 + ], + [ + 60.187555, + 24.831646 + ], + [ + 60.187503, + 24.831456 + ], + [ + 60.18739, + 24.831581 + ], + [ + 60.18751, + 24.832018 + ], + [ + 60.187394, + 24.832148 + ], + [ + 60.187268, + 24.83169 + ], + [ + 60.187167, + 24.831802 + ], + [ + 60.18709, + 24.831521 + ], + [ + 60.187348, + 24.831235 + ], + [ + 60.187217, + 24.830758 + ], + [ + 60.187175, + 24.830805 + ], + [ + 60.186975, + 24.831027 + ], + [ + 60.187007, + 24.831142 + ], + [ + 60.187086, + 24.831052 + ], + [ + 60.187106, + 24.831144 + ], + [ + 60.187125, + 24.831263 + ], + [ + 60.18703, + 24.831308 + ], + [ + 60.186955, + 24.831514 + ], + [ + 60.186902, + 24.831407 + ], + [ + 60.186869, + 24.831324 + ], + [ + 60.18689, + 24.831291 + ], + [ + 60.186875, + 24.831253 + ], + [ + 60.18685, + 24.831302 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 3", + "aliases": [ + "Fyssa", + "R003", + "F", + "F-talo", + "F-building", + "OK3" + ], + "children": [ + "dept:eea", + "dept:nbe", + "F-printer-5113813894", + "SCI", + "kvarkki", + "F-F138", + "F-F175a", + "F-F175b", + "F-F239a", + "F-F254", + "F-F255", + "F-F257", + "F-F258", + "F-F259", + "F-ent-A", + "F-ent-C", + "F-ent-D" + ], + "entrances": [ + { + "lat": 60.18839, + "lon": 24.829943, + "main": true, + "name": "A" + }, + { + "lat": 60.18774, + "lon": 24.830063, + "name": "D" + }, + { + "lat": 60.187815, + "lon": 24.829978, + "name": "C" + } + ], + "id": "F", + "label": "F\n3", + "latlon": [ + 60.18839, + 24.829943 + ], + "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.", + "name": "Aalto-yliopisto Terveysteknologian talo", + "name_en": "Health Technology House", + "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.", + "opening_hours": "Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 98855202 + ], + [ + "relation", + "1402504" + ] + ], + "outline": [ + [ + 60.188324, + 24.829707 + ], + [ + 60.18839, + 24.829943 + ], + [ + 60.188435, + 24.830106 + ], + [ + 60.188438, + 24.830118 + ], + [ + 60.188429, + 24.830129 + ], + [ + 60.188491, + 24.830353 + ], + [ + 60.188444, + 24.830406 + ], + [ + 60.188298, + 24.830552 + ], + [ + 60.18794, + 24.830956 + ], + [ + 60.187915, + 24.830868 + ], + [ + 60.187899, + 24.830808 + ], + [ + 60.187871, + 24.830709 + ], + [ + 60.187943, + 24.830629 + ], + [ + 60.187927, + 24.830573 + ], + [ + 60.18795, + 24.830547 + ], + [ + 60.187947, + 24.830536 + ], + [ + 60.188013, + 24.830462 + ], + [ + 60.188041, + 24.830565 + ], + [ + 60.18813, + 24.830465 + ], + [ + 60.188082, + 24.83029 + ], + [ + 60.188063, + 24.830224 + ], + [ + 60.188041, + 24.830143 + ], + [ + 60.188025, + 24.830161 + ], + [ + 60.187919, + 24.830281 + ], + [ + 60.187905, + 24.830229 + ], + [ + 60.187649, + 24.830518 + ], + [ + 60.187615, + 24.830556 + ], + [ + 60.187519, + 24.830663 + ], + [ + 60.187445, + 24.830395 + ], + [ + 60.187725, + 24.83008 + ], + [ + 60.18774, + 24.830063 + ], + [ + 60.187815, + 24.829978 + ], + [ + 60.188161, + 24.829588 + ], + [ + 60.188156, + 24.829568 + ], + [ + 60.188174, + 24.829547 + ], + [ + 60.188262, + 24.829448 + ], + [ + 60.188331, + 24.829698 + ], + [ + 60.188324, + 24.829707 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 5", + "aliases": [ + "S\u00e4hk\u00f6", + "R004", + "A-grid", + "Vanha S\u00e4hk\u00f6tekniikka", + "Old Electrical Engineering", + "OK5" + ], + "children": [ + "dept:eea", + "dept:dice", + "acousticslab", + "agrid-tapaus", + "agrid-agridimpact", + "agrid-until", + "agrid-startupcenter", + "agrid-esa", + "ami-center", + "ami-center", + "ami-center", + "elepaja", + "agrid-printer-5389688266", + "agrid-printer-5389688267", + "factory", + "agrid-havajava", + "agrid-A", + "agrid-B", + "agrid-CN", + "agrid-CS", + "agrid-D", + "agrid-EN", + "agrid-ES", + "agrid-K", + "agrid-F", + "agrid-GN", + "agrid-GS", + "agrid-H", + "agrid-IS", + "agrid-I", + "agrid-L", + "agrid-A108b/A111a", + "agrid-A205a", + "agrid-A208d", + "agrid-B210b", + "agrid-D109b", + "agrid-D209a", + "agrid-D209b", + "agrid-D209c", + "agrid-D309a", + "agrid-D309c", + "agrid-ent-5012868025", + "agrid-ent-264070011", + "agrid-ent-1656239835", + "agrid-ent-11146649709", + "agrid-ent-11146649710", + "agrid-ent-11146649711", + "agrid-ent-A" + ], + "entrances": [ + { + "lat": 60.18878, + "lon": 24.831313 + }, + { + "lat": 60.189054, + "lon": 24.830368 + }, + { + "lat": 60.189088, + "lon": 24.831786 + }, + { + "lat": 60.188767, + "lon": 24.832693 + }, + { + "lat": 60.188773, + "lon": 24.832433 + }, + { + "lat": 60.188778, + "lon": 24.831836 + }, + { + "lat": 60.188905, + "lon": 24.830154, + "main": true, + "name": "A" + } + ], + "id": "agrid", + "label": "A Grid\n4", + "latlon": [ + 60.188905, + 24.830154 + ], + "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.", + "opening_hours": "Mo-Fr 08:00-16:00; PH off", + "osm_elements": [ + [ + "way", + 24342454 + ] + ], + "outline": [ + [ + 60.18865, + 24.831584 + ], + [ + 60.188651, + 24.831377 + ], + [ + 60.188659, + 24.831378 + ], + [ + 60.188659, + 24.831331 + ], + [ + 60.188632, + 24.831331 + ], + [ + 60.188632, + 24.831187 + ], + [ + 60.188644, + 24.831167 + ], + [ + 60.188759, + 24.831168 + ], + [ + 60.188767, + 24.831188 + ], + [ + 60.188767, + 24.831312 + ], + [ + 60.18878, + 24.831313 + ], + [ + 60.188799, + 24.831313 + ], + [ + 60.1888, + 24.831231 + ], + [ + 60.188957, + 24.831246 + ], + [ + 60.188958, + 24.830912 + ], + [ + 60.18868, + 24.830905 + ], + [ + 60.188636, + 24.830905 + ], + [ + 60.188636, + 24.830724 + ], + [ + 60.188636, + 24.830639 + ], + [ + 60.188749, + 24.830639 + ], + [ + 60.188847, + 24.830639 + ], + [ + 60.188914, + 24.83064 + ], + [ + 60.188913, + 24.830606 + ], + [ + 60.188917, + 24.830323 + ], + [ + 60.188866, + 24.830213 + ], + [ + 60.18884, + 24.830165 + ], + [ + 60.188803, + 24.83009 + ], + [ + 60.188855, + 24.83001 + ], + [ + 60.188908, + 24.829961 + ], + [ + 60.188955, + 24.829939 + ], + [ + 60.189004, + 24.82993 + ], + [ + 60.189048, + 24.829947 + ], + [ + 60.189092, + 24.829977 + ], + [ + 60.189136, + 24.83003 + ], + [ + 60.189174, + 24.830098 + ], + [ + 60.189054, + 24.830336 + ], + [ + 60.189054, + 24.830368 + ], + [ + 60.189049, + 24.830639 + ], + [ + 60.189329, + 24.830645 + ], + [ + 60.189329, + 24.830742 + ], + [ + 60.189329, + 24.830912 + ], + [ + 60.189049, + 24.830913 + ], + [ + 60.189048, + 24.831208 + ], + [ + 60.189048, + 24.831247 + ], + [ + 60.18933, + 24.831242 + ], + [ + 60.189327, + 24.831382 + ], + [ + 60.189327, + 24.831514 + ], + [ + 60.189088, + 24.831511 + ], + [ + 60.189088, + 24.831755 + ], + [ + 60.189088, + 24.831786 + ], + [ + 60.189087, + 24.831838 + ], + [ + 60.18933, + 24.831842 + ], + [ + 60.189329, + 24.832107 + ], + [ + 60.189124, + 24.832105 + ], + [ + 60.189124, + 24.832351 + ], + [ + 60.189124, + 24.832386 + ], + [ + 60.189124, + 24.832409 + ], + [ + 60.189123, + 24.832444 + ], + [ + 60.189605, + 24.832451 + ], + [ + 60.18963, + 24.832451 + ], + [ + 60.189644, + 24.832451 + ], + [ + 60.189643, + 24.832506 + ], + [ + 60.189807, + 24.832509 + ], + [ + 60.189806, + 24.832757 + ], + [ + 60.189775, + 24.832756 + ], + [ + 60.189594, + 24.832754 + ], + [ + 60.189594, + 24.832705 + ], + [ + 60.189458, + 24.832703 + ], + [ + 60.189137, + 24.832698 + ], + [ + 60.188865, + 24.832694 + ], + [ + 60.188767, + 24.832693 + ], + [ + 60.188604, + 24.832691 + ], + [ + 60.188605, + 24.832432 + ], + [ + 60.188773, + 24.832433 + ], + [ + 60.188866, + 24.832436 + ], + [ + 60.189033, + 24.832438 + ], + [ + 60.189034, + 24.832105 + ], + [ + 60.18877, + 24.832102 + ], + [ + 60.188587, + 24.832101 + ], + [ + 60.188588, + 24.831801 + ], + [ + 60.188654, + 24.831802 + ], + [ + 60.188654, + 24.831835 + ], + [ + 60.188778, + 24.831836 + ], + [ + 60.188858, + 24.831836 + ], + [ + 60.188993, + 24.831837 + ], + [ + 60.188994, + 24.831508 + ], + [ + 60.188851, + 24.831507 + ], + [ + 60.188798, + 24.831506 + ], + [ + 60.188798, + 24.831436 + ], + [ + 60.188767, + 24.831436 + ], + [ + 60.188767, + 24.831585 + ], + [ + 60.188758, + 24.831604 + ], + [ + 60.188659, + 24.831603 + ], + [ + 60.18865, + 24.831584 + ] + ], + "type": "building" + }, + { + "address": "S\u00e4hk\u00f6miehentie 4", + "aliases": [ + "K4", + "R005" + ], + "children": [ + "dept:mecheng", + "ENG", + "K4-ent-338532521", + "K4-ent-5012868034", + "K4-ent-F", + "K4-ent-G" + ], + "entrances": [ + { + "lat": 60.1885, + "lon": 24.826076, + "name": "G" + }, + { + "lat": 60.188515, + "lon": 24.826029, + "name": "F" + }, + { + "lat": 60.189146, + "lon": 24.825643, + "main": true + }, + { + "lat": 60.188618, + "lon": 24.826586 + } + ], + "id": "K4", + "label": "K4\n5", + "latlon": [ + 60.189146, + 24.825643 + ], + "name": "Konetekniikka 4", + "name_en": "Mechanical Engineering 4", + "opening_hours": "Mo-Fr 08:00-15:45; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 7584026 + ] + ], + "outline": [ + [ + 60.188436, + 24.826277 + ], + [ + 60.1885, + 24.826076 + ], + [ + 60.188515, + 24.826029 + ], + [ + 60.188595, + 24.825771 + ], + [ + 60.188559, + 24.825726 + ], + [ + 60.188582, + 24.825668 + ], + [ + 60.18866, + 24.825473 + ], + [ + 60.188686, + 24.825409 + ], + [ + 60.188709, + 24.825438 + ], + [ + 60.188728, + 24.825377 + ], + [ + 60.188772, + 24.825238 + ], + [ + 60.188842, + 24.825015 + ], + [ + 60.18886, + 24.824958 + ], + [ + 60.189218, + 24.825412 + ], + [ + 60.189146, + 24.825643 + ], + [ + 60.189098, + 24.825796 + ], + [ + 60.18909, + 24.825786 + ], + [ + 60.188929, + 24.825582 + ], + [ + 60.188883, + 24.825729 + ], + [ + 60.188911, + 24.825764 + ], + [ + 60.188869, + 24.825898 + ], + [ + 60.188824, + 24.826042 + ], + [ + 60.188843, + 24.826067 + ], + [ + 60.18887, + 24.8261 + ], + [ + 60.188889, + 24.826125 + ], + [ + 60.188845, + 24.826265 + ], + [ + 60.188824, + 24.826238 + ], + [ + 60.188801, + 24.826209 + ], + [ + 60.188749, + 24.826143 + ], + [ + 60.188686, + 24.826344 + ], + [ + 60.188784, + 24.826469 + ], + [ + 60.188696, + 24.826751 + ], + [ + 60.188645, + 24.826916 + ], + [ + 60.188628, + 24.826895 + ], + [ + 60.188606, + 24.826865 + ], + [ + 60.188593, + 24.826907 + ], + [ + 60.188539, + 24.826839 + ], + [ + 60.188552, + 24.826797 + ], + [ + 60.188618, + 24.826586 + ], + [ + 60.188624, + 24.826565 + ], + [ + 60.188635, + 24.82653 + ], + [ + 60.188436, + 24.826277 + ] + ], + "type": "building" + }, + { + "address": "Puumiehenkuja 5", + "aliases": [ + "K3", + "R006" + ], + "children": [ + "dept:mecheng", + "designfactory", + "startupsauna", + "ENG", + "K3-ent-A" + ], + "entrances": [ + { + "lat": 60.187838, + "lon": 24.824478, + "main": true, + "name": "A" + } + ], + "id": "K3", + "label": "K3\n6", + "latlon": [ + 60.187838, + 24.824478 + ], + "name": "Viima", + "opening_hours": "Mo-Fr 08:00-15:45; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 156903284 + ] + ], + "outline": [ + [ + 60.187853, + 24.823894 + ], + [ + 60.188119, + 24.824237 + ], + [ + 60.188082, + 24.824358 + ], + [ + 60.18824, + 24.824566 + ], + [ + 60.188302, + 24.824639 + ], + [ + 60.188387, + 24.824371 + ], + [ + 60.188238, + 24.824187 + ], + [ + 60.188133, + 24.824049 + ], + [ + 60.188145, + 24.824013 + ], + [ + 60.188048, + 24.823888 + ], + [ + 60.187989, + 24.823816 + ], + [ + 60.18807, + 24.823559 + ], + [ + 60.18812, + 24.823622 + ], + [ + 60.188226, + 24.823757 + ], + [ + 60.188212, + 24.823799 + ], + [ + 60.188274, + 24.823878 + ], + [ + 60.188505, + 24.824172 + ], + [ + 60.188766, + 24.824504 + ], + [ + 60.188725, + 24.824636 + ], + [ + 60.188686, + 24.824769 + ], + [ + 60.188614, + 24.825006 + ], + [ + 60.188587, + 24.825092 + ], + [ + 60.188557, + 24.825188 + ], + [ + 60.188531, + 24.825274 + ], + [ + 60.188458, + 24.825184 + ], + [ + 60.188432, + 24.82515 + ], + [ + 60.188303, + 24.824995 + ], + [ + 60.188223, + 24.824893 + ], + [ + 60.188195, + 24.824864 + ], + [ + 60.188169, + 24.824827 + ], + [ + 60.188102, + 24.825041 + ], + [ + 60.187832, + 24.824702 + ], + [ + 60.187788, + 24.824645 + ], + [ + 60.187838, + 24.824478 + ], + [ + 60.187854, + 24.824431 + ], + [ + 60.187736, + 24.824278 + ], + [ + 60.187818, + 24.824021 + ], + [ + 60.187853, + 24.823894 + ] + ], + "type": "building" + }, + { + "address": "Puumiehenkuja 3", + "aliases": [ + "K2", + "R007" + ], + "children": [ + "dept:mecheng", + "ENG", + "K2-ent-5171375888" + ], + "entrances": [ + { + "lat": 60.187586, + "lon": 24.825221, + "main": true + } + ], + "id": "K2", + "label": "K2\n7", + "latlon": [ + 60.187586, + 24.825221 + ], + "name": "Aalto-yliopisto Konetekniikka 2", + "name_en": "Mechanical Engineering 2", + "name_sv": "Aalto-universitetet Mechanik Engineering 2", + "opening_hours": "Mo-Fr 08:00-15:45; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 156903282 + ] + ], + "outline": [ + [ + 60.187505, + 24.825119 + ], + [ + 60.187541, + 24.825001 + ], + [ + 60.187494, + 24.824941 + ], + [ + 60.187568, + 24.824701 + ], + [ + 60.187581, + 24.824717 + ], + [ + 60.187599, + 24.824739 + ], + [ + 60.187775, + 24.824958 + ], + [ + 60.187742, + 24.825065 + ], + [ + 60.188206, + 24.825637 + ], + [ + 60.188249, + 24.825688 + ], + [ + 60.188203, + 24.825835 + ], + [ + 60.188192, + 24.82582 + ], + [ + 60.188157, + 24.825932 + ], + [ + 60.187586, + 24.825221 + ], + [ + 60.187505, + 24.825119 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 4", + "aliases": [ + "Kone", + "R008", + "OK4" + ], + "children": [ + "dept:mecheng", + "dept:builtenv", + "K1-printer-5232638597", + "sodexokone", + "ENG", + "ENG", + "SCI", + "K1-101", + "K1-148", + "K1-150", + "K1-201", + "K1-202", + "K1-213a", + "K1-215", + "K1-216", + "K1-301c", + "K1-301d", + "K1-302b", + "K1-ent-338534555", + "K1-ent-1691532053" + ], + "entrances": [ + { + "lat": 60.187271, + "lon": 24.827012 + }, + { + "lat": 60.187083, + "lon": 24.826799, + "main": true + } + ], + "id": "K1", + "label": "K1\n8", + "latlon": [ + 60.187083, + 24.826799 + ], + "name": "Aalto-yliopisto Konetekniikka 1", + "name_en": "Mechanical Engineering 1", + "name_sv": "Aalto-universitetet Mechanik Engineering 1", + "opening_hours": "Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 156903276 + ] + ], + "outline": [ + [ + 60.187235, + 24.826087 + ], + [ + 60.187522, + 24.826445 + ], + [ + 60.187485, + 24.826566 + ], + [ + 60.187518, + 24.826607 + ], + [ + 60.187475, + 24.826748 + ], + [ + 60.187386, + 24.826638 + ], + [ + 60.187304, + 24.826905 + ], + [ + 60.187271, + 24.827012 + ], + [ + 60.18726, + 24.827047 + ], + [ + 60.18762, + 24.827496 + ], + [ + 60.187563, + 24.827681 + ], + [ + 60.187524, + 24.827632 + ], + [ + 60.187495, + 24.827725 + ], + [ + 60.187011, + 24.827121 + ], + [ + 60.187103, + 24.826824 + ], + [ + 60.187083, + 24.826799 + ], + [ + 60.187018, + 24.826719 + ], + [ + 60.187029, + 24.826684 + ], + [ + 60.187009, + 24.82666 + ], + [ + 60.187104, + 24.826353 + ], + [ + 60.18714, + 24.826397 + ], + [ + 60.187235, + 24.826087 + ] + ], + "type": "building" + }, + { + "aliases": [ + "R009" + ], + "children": [ + "dept:physics", + "otanano", + "nanotalo-printer-5171375893", + "SCI", + "nanotalo-ent-338531576", + "nanotalo-ent-338531789", + "nanotalo-ent-A" + ], + "entrances": [ + { + "lat": 60.186669, + "lon": 24.826038 + }, + { + "lat": 60.18666, + "lon": 24.824924 + }, + { + "lat": 60.187034, + "lon": 24.825393, + "main": true, + "name": "A" + } + ], + "id": "nanotalo", + "label": "Nanotalo\n9", + "latlon": [ + 60.187034, + 24.825393 + ], + "name": "Nanotalo", + "osm_elements": [ + [ + "way", + 27930945 + ] + ], + "outline": [ + [ + 60.186767, + 24.826333 + ], + [ + 60.186641, + 24.826189 + ], + [ + 60.18668, + 24.826051 + ], + [ + 60.186669, + 24.826038 + ], + [ + 60.186653, + 24.82602 + ], + [ + 60.186611, + 24.825971 + ], + [ + 60.186763, + 24.825433 + ], + [ + 60.186826, + 24.825209 + ], + [ + 60.186771, + 24.825146 + ], + [ + 60.186708, + 24.825369 + ], + [ + 60.18662, + 24.825269 + ], + [ + 60.186627, + 24.825243 + ], + [ + 60.186675, + 24.825075 + ], + [ + 60.186648, + 24.825045 + ], + [ + 60.186677, + 24.824943 + ], + [ + 60.18666, + 24.824924 + ], + [ + 60.186646, + 24.824908 + ], + [ + 60.186605, + 24.825058 + ], + [ + 60.18657, + 24.82518 + ], + [ + 60.186481, + 24.82508 + ], + [ + 60.186504, + 24.824998 + ], + [ + 60.186425, + 24.824909 + ], + [ + 60.186554, + 24.82444 + ], + [ + 60.186566, + 24.824397 + ], + [ + 60.186618, + 24.824455 + ], + [ + 60.186633, + 24.824402 + ], + [ + 60.186644, + 24.824363 + ], + [ + 60.186601, + 24.824311 + ], + [ + 60.186627, + 24.824218 + ], + [ + 60.186703, + 24.82395 + ], + [ + 60.186699, + 24.823946 + ], + [ + 60.186811, + 24.823534 + ], + [ + 60.186963, + 24.8237 + ], + [ + 60.18685, + 24.824107 + ], + [ + 60.186835, + 24.824096 + ], + [ + 60.186795, + 24.82424 + ], + [ + 60.186784, + 24.824227 + ], + [ + 60.186758, + 24.824321 + ], + [ + 60.186729, + 24.824289 + ], + [ + 60.186693, + 24.824419 + ], + [ + 60.186661, + 24.824383 + ], + [ + 60.186637, + 24.824476 + ], + [ + 60.186696, + 24.824542 + ], + [ + 60.186735, + 24.824585 + ], + [ + 60.186672, + 24.824813 + ], + [ + 60.186736, + 24.824887 + ], + [ + 60.186935, + 24.824188 + ], + [ + 60.187025, + 24.824292 + ], + [ + 60.18704, + 24.82424 + ], + [ + 60.187002, + 24.824196 + ], + [ + 60.187098, + 24.823859 + ], + [ + 60.187377, + 24.82418 + ], + [ + 60.187263, + 24.824583 + ], + [ + 60.187251, + 24.824569 + ], + [ + 60.187224, + 24.824664 + ], + [ + 60.187236, + 24.824678 + ], + [ + 60.187189, + 24.824846 + ], + [ + 60.187034, + 24.825393 + ], + [ + 60.18701, + 24.825476 + ], + [ + 60.186767, + 24.826333 + ] + ], + "type": "building" + }, + { + "address": "Konemiehentie 4", + "aliases": [ + "R010" + ], + "children": [ + "r010-ent-502886583" + ], + "entrances": [ + { + "lat": 60.187256, + "lon": 24.822421, + "main": true + } + ], + "id": "r010", + "label": "10", + "latlon": [ + 60.187256, + 24.822421 + ], + "name": "KY Espil\u00e4", + "osm_elements": [ + [ + "way", + 4424188 + ] + ], + "outline": [ + [ + 60.187669, + 24.822585 + ], + [ + 60.187642, + 24.822568 + ], + [ + 60.187638, + 24.822589 + ], + [ + 60.187583, + 24.822553 + ], + [ + 60.187587, + 24.822532 + ], + [ + 60.187534, + 24.822498 + ], + [ + 60.187511, + 24.82264 + ], + [ + 60.187272, + 24.822484 + ], + [ + 60.18728, + 24.822436 + ], + [ + 60.187256, + 24.822421 + ], + [ + 60.187232, + 24.822406 + ], + [ + 60.187268, + 24.822182 + ], + [ + 60.187524, + 24.822349 + ], + [ + 60.187528, + 24.822322 + ], + [ + 60.187506, + 24.822308 + ], + [ + 60.187532, + 24.822143 + ], + [ + 60.187587, + 24.822179 + ], + [ + 60.18756, + 24.822343 + ], + [ + 60.187543, + 24.822332 + ], + [ + 60.187539, + 24.822358 + ], + [ + 60.187689, + 24.822456 + ], + [ + 60.187669, + 24.822585 + ] + ], + "type": "building" + }, + { + "address": "Kemistintie 1", + "aliases": [ + "Kemma", + "R011", + "Ke", + "CHEM" + ], + "children": [ + "dept:cmet", + "dept:cmat", + "r011-printer-5130529215", + "CHEM", + "r011-ywing", + "r011-bwing", + "r011-cwing", + "r011-dwing", + "r011-ewing", + "r011-fwing", + "r011-A302", + "r011-A303", + "r011-A304", + "r011-A305", + "r011-ent-338537204", + "r011-ent-338537520", + "r011-ent-D", + "r011-ent-F3" + ], + "entrances": [ + { + "lat": 60.183771, + "lon": 24.824385, + "main": true + }, + { + "lat": 60.183856, + "lon": 24.825189 + }, + { + "lat": 60.183513, + "lon": 24.824262, + "name": "D" + }, + { + "lat": 60.183059, + "lon": 24.823056, + "name": "F3" + } + ], + "id": "r011", + "label": "Kemma\n11", + "latlon": [ + 60.183771, + 24.824385 + ], + "name": "Aalto-yliopisto Kemian tekniikan korkeakoulu", + "name_en": "School of Chemical Engineering", + "name_sv": "Aalto-universitetet H\u00c3\u00b6gskolan f\u00c3\u00b6r kemiteknik", + "opening_hours": "Mo-Th 07:45-20:00; Fr 07:45-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 7588058 + ] + ], + "outline": [ + [ + 60.183132, + 24.822952 + ], + [ + 60.183337, + 24.823521 + ], + [ + 60.183464, + 24.823336 + ], + [ + 60.183546, + 24.823563 + ], + [ + 60.183483, + 24.823654 + ], + [ + 60.183627, + 24.824056 + ], + [ + 60.183653, + 24.824004 + ], + [ + 60.183656, + 24.823896 + ], + [ + 60.18369, + 24.823763 + ], + [ + 60.183754, + 24.823669 + ], + [ + 60.183856, + 24.823941 + ], + [ + 60.183834, + 24.823983 + ], + [ + 60.18383, + 24.824036 + ], + [ + 60.183829, + 24.824081 + ], + [ + 60.183846, + 24.824143 + ], + [ + 60.183824, + 24.824173 + ], + [ + 60.183804, + 24.824199 + ], + [ + 60.183836, + 24.824288 + ], + [ + 60.183801, + 24.824339 + ], + [ + 60.183771, + 24.824385 + ], + [ + 60.183707, + 24.82448 + ], + [ + 60.18372, + 24.824517 + ], + [ + 60.183803, + 24.824745 + ], + [ + 60.183832, + 24.824828 + ], + [ + 60.183862, + 24.82491 + ], + [ + 60.183926, + 24.825088 + ], + [ + 60.183869, + 24.825171 + ], + [ + 60.183856, + 24.825189 + ], + [ + 60.183845, + 24.825205 + ], + [ + 60.183881, + 24.825303 + ], + [ + 60.184086, + 24.825875 + ], + [ + 60.183974, + 24.826037 + ], + [ + 60.183842, + 24.826229 + ], + [ + 60.183757, + 24.82599 + ], + [ + 60.183878, + 24.825812 + ], + [ + 60.183865, + 24.825776 + ], + [ + 60.183769, + 24.825511 + ], + [ + 60.183723, + 24.825382 + ], + [ + 60.183595, + 24.825568 + ], + [ + 60.183551, + 24.825632 + ], + [ + 60.183521, + 24.825548 + ], + [ + 60.183504, + 24.825573 + ], + [ + 60.183461, + 24.825453 + ], + [ + 60.183494, + 24.825405 + ], + [ + 60.183685, + 24.825128 + ], + [ + 60.183717, + 24.825081 + ], + [ + 60.183537, + 24.82458 + ], + [ + 60.183458, + 24.824695 + ], + [ + 60.183305, + 24.824918 + ], + [ + 60.183276, + 24.82484 + ], + [ + 60.183253, + 24.824874 + ], + [ + 60.183198, + 24.824721 + ], + [ + 60.183225, + 24.824679 + ], + [ + 60.183507, + 24.824271 + ], + [ + 60.183513, + 24.824262 + ], + [ + 60.183521, + 24.824251 + ], + [ + 60.183367, + 24.823823 + ], + [ + 60.18334, + 24.823861 + ], + [ + 60.183126, + 24.824173 + ], + [ + 60.183042, + 24.824296 + ], + [ + 60.18294, + 24.824014 + ], + [ + 60.183213, + 24.823617 + ], + [ + 60.1832, + 24.823581 + ], + [ + 60.183183, + 24.823534 + ], + [ + 60.183207, + 24.823499 + ], + [ + 60.183194, + 24.823462 + ], + [ + 60.183135, + 24.823548 + ], + [ + 60.183111, + 24.823485 + ], + [ + 60.182987, + 24.823159 + ], + [ + 60.183059, + 24.823056 + ], + [ + 60.183132, + 24.822952 + ] + ], + "type": "building" + }, + { + "address": "Vuorimiehentie 2", + "aliases": [ + "Vuori", + "R012", + "V" + ], + "children": [ + "space21", + "tasteat", + "r012-145", + "r012-C100", + "r012-C101", + "r012-ent-2N", + "r012-ent-A", + "r012-ent-D", + "r012-ent-K", + "r012-ent-R" + ], + "entrances": [ + { + "lat": 60.18287, + "lon": 24.825781, + "name": "A" + }, + { + "lat": 60.182797, + "lon": 24.82532, + "name": "D" + }, + { + "lat": 60.182768, + "lon": 24.82477, + "main": true, + "name": "K" + }, + { + "lat": 60.182564, + "lon": 24.823957, + "name": "2N" + }, + { + "lat": 60.183146, + "lon": 24.824994, + "name": "R" + } + ], + "id": "r012", + "label": "Vuori\n12", + "latlon": [ + 60.182768, + 24.82477 + ], + "name": "Materiaalitekniikka", + "name_en": "Materials Science and Technology", + "name_sv": "Materialteknik", + "opening_hours": "Mo-Fr 07:45-16:00; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 7588374 + ] + ], + "outline": [ + [ + 60.18326, + 24.825587 + ], + [ + 60.183271, + 24.82561 + ], + [ + 60.18325, + 24.825726 + ], + [ + 60.183129, + 24.825485 + ], + [ + 60.183106, + 24.825531 + ], + [ + 60.183038, + 24.825396 + ], + [ + 60.182958, + 24.825559 + ], + [ + 60.183156, + 24.82595 + ], + [ + 60.183145, + 24.825972 + ], + [ + 60.183159, + 24.826 + ], + [ + 60.183128, + 24.826065 + ], + [ + 60.183114, + 24.826037 + ], + [ + 60.183057, + 24.826152 + ], + [ + 60.183036, + 24.82611 + ], + [ + 60.18287, + 24.825781 + ], + [ + 60.182851, + 24.825743 + ], + [ + 60.182809, + 24.825828 + ], + [ + 60.18241, + 24.82504 + ], + [ + 60.182506, + 24.824843 + ], + [ + 60.182773, + 24.82537 + ], + [ + 60.182797, + 24.82532 + ], + [ + 60.182815, + 24.825283 + ], + [ + 60.18292, + 24.82507 + ], + [ + 60.182793, + 24.824819 + ], + [ + 60.182768, + 24.82477 + ], + [ + 60.182707, + 24.824649 + ], + [ + 60.182291, + 24.823826 + ], + [ + 60.182393, + 24.823619 + ], + [ + 60.182564, + 24.823957 + ], + [ + 60.183112, + 24.825042 + ], + [ + 60.183141, + 24.824983 + ], + [ + 60.183146, + 24.824994 + ], + [ + 60.183342, + 24.82538 + ], + [ + 60.183328, + 24.825407 + ], + [ + 60.183376, + 24.825501 + ], + [ + 60.183334, + 24.825587 + ], + [ + 60.183265, + 24.825451 + ], + [ + 60.183248, + 24.825486 + ], + [ + 60.183269, + 24.825528 + ], + [ + 60.18326, + 24.825587 + ] + ], + "type": "building" + }, + { + "address": "Vuorimiehentie 1", + "aliases": [ + "Puu", + "R013" + ], + "children": [ + "dept:bio", + "CHEM" + ], + "entrances": [], + "id": "r013", + "label": "13", + "latlon": [ + 60.181656, + 24.824961 + ], + "name": "Aalto Bioproducts Center", + "name_en": "Forest Products Technology 1", + "osm_elements": [ + [ + "way", + 7588593 + ] + ], + "outline": [ + [ + 60.181939, + 24.825179 + ], + [ + 60.18189, + 24.82528 + ], + [ + 60.181761, + 24.825546 + ], + [ + 60.181663, + 24.825355 + ], + [ + 60.181341, + 24.826018 + ], + [ + 60.181194, + 24.825729 + ], + [ + 60.181464, + 24.825172 + ], + [ + 60.181482, + 24.825208 + ], + [ + 60.18153, + 24.825109 + ], + [ + 60.181324, + 24.824703 + ], + [ + 60.181506, + 24.824328 + ], + [ + 60.181598, + 24.824509 + ], + [ + 60.181606, + 24.824524 + ], + [ + 60.181629, + 24.824475 + ], + [ + 60.181668, + 24.824551 + ], + [ + 60.181644, + 24.824599 + ], + [ + 60.18176, + 24.824826 + ], + [ + 60.181772, + 24.824801 + ], + [ + 60.181777, + 24.824801 + ], + [ + 60.181782, + 24.824806 + ], + [ + 60.181786, + 24.824813 + ], + [ + 60.181788, + 24.824825 + ], + [ + 60.181788, + 24.824833 + ], + [ + 60.181776, + 24.824858 + ], + [ + 60.181939, + 24.825179 + ] + ], + "type": "building" + }, + { + "address": "Otaniementie 9", + "aliases": [ + "R015", + "Harald Herlin Learning Centre", + "Aalto-yliopiston kirjasto", + "Main Library", + "Learning Center", + "HH-center", + "HH-keskus" + ], + "children": [ + "kirjasto-printer-5120785982", + "kirjasto-printer-5120785976", + "bakedbyeli", + "aaltopahvi", + "kirjasto-106", + "kirjasto-107", + "kirjasto-108", + "kirjasto-109", + "kirjasto-113", + "kirjasto-126", + "kirjasto-214", + "kirjasto-215", + "kirjasto-233a", + "kirjasto-ent-301875084", + "kirjasto-ent-5020265621", + "kirjasto-ent-5901449040", + "kirjasto-ent-301814925" + ], + "entrances": [ + { + "lat": 60.184802, + "lon": 24.828057 + }, + { + "lat": 60.184603, + "lon": 24.827889, + "main": true + }, + { + "lat": 60.184606, + "lon": 24.827486 + }, + { + "lat": 60.185033, + "lon": 24.827305 + } + ], + "id": "kirjasto", + "label": "15", + "latlon": [ + 60.184603, + 24.827889 + ], + "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.", + "name": "Library", + "name_en": "Library", + "name_fi": "Kirjasto", + "name_sv": "Aalto-universitetet Harald Herlin -l\u00e4rcentret", + "opening_hours": "Mo-Fr 08:00-20:00; Sa 08:00-15:00; PH off", + "osm_elements": [ + [ + "way", + 4252948 + ] + ], + "outline": [ + [ + 60.185143, + 24.827405 + ], + [ + 60.184802, + 24.828057 + ], + [ + 60.184463, + 24.828707 + ], + [ + 60.18445, + 24.828729 + ], + [ + 60.184435, + 24.828697 + ], + [ + 60.18441, + 24.828643 + ], + [ + 60.184424, + 24.828618 + ], + [ + 60.184402, + 24.828569 + ], + [ + 60.184394, + 24.828553 + ], + [ + 60.184399, + 24.828544 + ], + [ + 60.184404, + 24.828534 + ], + [ + 60.184379, + 24.828477 + ], + [ + 60.184404, + 24.828431 + ], + [ + 60.184397, + 24.828415 + ], + [ + 60.184568, + 24.828091 + ], + [ + 60.184609, + 24.828009 + ], + [ + 60.184622, + 24.827983 + ], + [ + 60.184613, + 24.827938 + ], + [ + 60.184603, + 24.827889 + ], + [ + 60.184596, + 24.827852 + ], + [ + 60.184585, + 24.827801 + ], + [ + 60.184569, + 24.827813 + ], + [ + 60.184536, + 24.827839 + ], + [ + 60.184519, + 24.827852 + ], + [ + 60.184491, + 24.827725 + ], + [ + 60.184504, + 24.827683 + ], + [ + 60.184523, + 24.827647 + ], + [ + 60.184545, + 24.827605 + ], + [ + 60.184548, + 24.827599 + ], + [ + 60.184606, + 24.827486 + ], + [ + 60.184618, + 24.827463 + ], + [ + 60.184613, + 24.827449 + ], + [ + 60.184634, + 24.827408 + ], + [ + 60.184812, + 24.827066 + ], + [ + 60.184846, + 24.827223 + ], + [ + 60.18486, + 24.827208 + ], + [ + 60.184857, + 24.827191 + ], + [ + 60.184924, + 24.82711 + ], + [ + 60.185034, + 24.827263 + ], + [ + 60.185025, + 24.827293 + ], + [ + 60.185033, + 24.827305 + ], + [ + 60.185042, + 24.827316 + ], + [ + 60.185049, + 24.827305 + ], + [ + 60.185143, + 24.827405 + ] + ], + "type": "building" + }, + { + "address": "Tietotie 1", + "aliases": [ + "R016", + "Aalto Ice Tank" + ], + "children": [ + "dept:mecheng", + "dept:builtenv", + "ENG", + "r016-ent-5898662649", + "r016-ent-A" + ], + "entrances": [ + { + "lat": 60.185997, + "lon": 24.81955, + "main": true, + "name": "A" + }, + { + "lat": 60.185675, + "lon": 24.821194 + } + ], + "id": "r016", + "label": "16", + "latlon": [ + 60.185997, + 24.81955 + ], + "name": "Meritekniikka", + "name_en": "Marine Technology", + "osm_elements": [ + [ + "way", + 4259025 + ] + ], + "outline": [ + [ + 60.185997, + 24.81955 + ], + [ + 60.186117, + 24.818192 + ], + [ + 60.186084, + 24.81818 + ], + [ + 60.186092, + 24.818088 + ], + [ + 60.186149, + 24.817443 + ], + [ + 60.186339, + 24.817511 + ], + [ + 60.186287, + 24.818105 + ], + [ + 60.186321, + 24.818117 + ], + [ + 60.18631, + 24.818244 + ], + [ + 60.186418, + 24.818283 + ], + [ + 60.186402, + 24.818467 + ], + [ + 60.186399, + 24.818505 + ], + [ + 60.186377, + 24.818748 + ], + [ + 60.186374, + 24.818784 + ], + [ + 60.186352, + 24.819032 + ], + [ + 60.186347, + 24.819089 + ], + [ + 60.186326, + 24.819322 + ], + [ + 60.186322, + 24.819375 + ], + [ + 60.186301, + 24.819611 + ], + [ + 60.186296, + 24.81966 + ], + [ + 60.186276, + 24.819891 + ], + [ + 60.186271, + 24.819941 + ], + [ + 60.18625, + 24.820183 + ], + [ + 60.186246, + 24.820224 + ], + [ + 60.186225, + 24.820465 + ], + [ + 60.186221, + 24.820508 + ], + [ + 60.186196, + 24.820795 + ], + [ + 60.186192, + 24.820839 + ], + [ + 60.18617, + 24.821081 + ], + [ + 60.186166, + 24.821124 + ], + [ + 60.186144, + 24.821373 + ], + [ + 60.186143, + 24.821392 + ], + [ + 60.186047, + 24.821358 + ], + [ + 60.185672, + 24.821223 + ], + [ + 60.185675, + 24.821194 + ], + [ + 60.185744, + 24.820411 + ], + [ + 60.185915, + 24.820473 + ], + [ + 60.185997, + 24.81955 + ] + ], + "type": "building" + }, + { + "address": "S\u00e4hk\u00f6miehentie 3", + "aliases": [ + "R017" + ], + "children": [ + "maari-printer-5171375890", + "maari-printer-5171375891", + "maari-ent-348028311" + ], + "entrances": [ + { + "lat": 60.18921, + "lon": 24.826134, + "main": true + } + ], + "id": "maari", + "label": "Maari\n17", + "latlon": [ + 60.18921, + 24.826134 + ], + "name": "Maarintalo", + "name_sv": "Maarihuset", + "osm_elements": [ + [ + "way", + 7584131 + ] + ], + "outline": [ + [ + 60.189548, + 24.825755 + ], + [ + 60.189368, + 24.826319 + ], + [ + 60.189381, + 24.826336 + ], + [ + 60.189354, + 24.826468 + ], + [ + 60.189305, + 24.826577 + ], + [ + 60.18929, + 24.826559 + ], + [ + 60.189157, + 24.826976 + ], + [ + 60.188995, + 24.826765 + ], + [ + 60.189017, + 24.826697 + ], + [ + 60.189001, + 24.826676 + ], + [ + 60.189019, + 24.82662 + ], + [ + 60.189035, + 24.82664 + ], + [ + 60.189156, + 24.826265 + ], + [ + 60.189165, + 24.826277 + ], + [ + 60.18921, + 24.826134 + ], + [ + 60.189223, + 24.826095 + ], + [ + 60.189187, + 24.826049 + ], + [ + 60.189358, + 24.825509 + ], + [ + 60.189473, + 24.825658 + ], + [ + 60.189484, + 24.825625 + ], + [ + 60.189548, + 24.825709 + ], + [ + 60.189537, + 24.825741 + ], + [ + 60.189548, + 24.825755 + ] + ], + "type": "building" + }, + { + "address": "Konemiehentie 3", + "aliases": [ + "R018" + ], + "children": [ + "r018-ent-560097715" + ], + "entrances": [ + { + "lat": 60.18753, + "lon": 24.823476, + "main": true + } + ], + "id": "r018", + "label": "18", + "latlon": [ + 60.18753, + 24.823476 + ], + "name": "SAHA", + "osm_elements": [ + [ + "way", + 7244238 + ] + ], + "outline": [ + [ + 60.187552, + 24.82349 + ], + [ + 60.187518, + 24.823715 + ], + [ + 60.187138, + 24.823486 + ], + [ + 60.187155, + 24.823372 + ], + [ + 60.187172, + 24.82326 + ], + [ + 60.18753, + 24.823476 + ], + [ + 60.187552, + 24.82349 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 24", + "aliases": [ + "R019", + "Fake Main Building", + "OK24" + ], + "children": [ + "carre", + "reima", + "tenhola", + "metso", + "dipoli-0.061", + "dipoli-1.010", + "dipoli-1.072", + "dipoli-1.073", + "dipoli-1.078", + "dipoli-1.093", + "dipoli-1.154", + "dipoli-1.178", + "dipoli-1.180", + "dipoli-1.183", + "dipoli-2.020", + "dipoli-2.031", + "dipoli-2.032", + "dipoli-2.034", + "dipoli-2.060", + "dipoli-2.061", + "dipoli-2.062", + "dipoli-ent-2476428715", + "dipoli-ent-263967699", + "dipoli-ent-1433646676" + ], + "entrances": [ + { + "lat": 60.184925, + "lon": 24.832981 + }, + { + "lat": 60.184923, + "lon": 24.832206, + "main": true + }, + { + "lat": 60.185288, + "lon": 24.832807 + } + ], + "id": "dipoli", + "label": "Dipoli\n19", + "latlon": [ + 60.184923, + 24.832206 + ], + "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\u00e4mp\u00f6miehenkuja 2 the \"main building\", which absolutely no one not in the administration paid attention to. Apparently the administration confuses \"Administration\" with \"Main\".", + "name": "Dipoli", + "opening_hours": "Mo-Fr 07:45-21:30; Sa 09:30-21:30; PH off", + "osm_elements": [ + [ + "way", + 4252954 + ] + ], + "outline": [ + [ + 60.185276, + 24.832887 + ], + [ + 60.185295, + 24.832962 + ], + [ + 60.185309, + 24.832946 + ], + [ + 60.18539, + 24.833243 + ], + [ + 60.185368, + 24.833259 + ], + [ + 60.185366, + 24.833247 + ], + [ + 60.185373, + 24.833242 + ], + [ + 60.185371, + 24.833235 + ], + [ + 60.185341, + 24.833238 + ], + [ + 60.185302, + 24.833259 + ], + [ + 60.185299, + 24.83324 + ], + [ + 60.185243, + 24.833284 + ], + [ + 60.185237, + 24.83327 + ], + [ + 60.185195, + 24.833335 + ], + [ + 60.185168, + 24.833231 + ], + [ + 60.185157, + 24.833223 + ], + [ + 60.185143, + 24.833216 + ], + [ + 60.185132, + 24.833208 + ], + [ + 60.185108, + 24.83335 + ], + [ + 60.185051, + 24.833217 + ], + [ + 60.185001, + 24.833174 + ], + [ + 60.18493, + 24.833178 + ], + [ + 60.184944, + 24.833051 + ], + [ + 60.184925, + 24.832981 + ], + [ + 60.184896, + 24.832873 + ], + [ + 60.184829, + 24.832794 + ], + [ + 60.184835, + 24.832778 + ], + [ + 60.184766, + 24.832678 + ], + [ + 60.184745, + 24.832679 + ], + [ + 60.184682, + 24.832645 + ], + [ + 60.184708, + 24.832573 + ], + [ + 60.18472, + 24.832503 + ], + [ + 60.184705, + 24.832394 + ], + [ + 60.184685, + 24.832325 + ], + [ + 60.184813, + 24.832352 + ], + [ + 60.184899, + 24.832308 + ], + [ + 60.184904, + 24.832312 + ], + [ + 60.184923, + 24.832206 + ], + [ + 60.184925, + 24.832168 + ], + [ + 60.184929, + 24.832064 + ], + [ + 60.184943, + 24.832073 + ], + [ + 60.184953, + 24.832063 + ], + [ + 60.18495, + 24.832053 + ], + [ + 60.184933, + 24.832055 + ], + [ + 60.184916, + 24.831933 + ], + [ + 60.18487, + 24.831882 + ], + [ + 60.184837, + 24.831857 + ], + [ + 60.184847, + 24.831826 + ], + [ + 60.184852, + 24.831772 + ], + [ + 60.184838, + 24.83172 + ], + [ + 60.18489, + 24.831668 + ], + [ + 60.184937, + 24.831579 + ], + [ + 60.184947, + 24.831522 + ], + [ + 60.185049, + 24.831613 + ], + [ + 60.185166, + 24.831635 + ], + [ + 60.185119, + 24.83177 + ], + [ + 60.185151, + 24.83179 + ], + [ + 60.185155, + 24.831765 + ], + [ + 60.185183, + 24.831782 + ], + [ + 60.185171, + 24.831858 + ], + [ + 60.18525, + 24.831906 + ], + [ + 60.185245, + 24.831935 + ], + [ + 60.185339, + 24.831992 + ], + [ + 60.185333, + 24.832035 + ], + [ + 60.185346, + 24.832043 + ], + [ + 60.185382, + 24.8318 + ], + [ + 60.185406, + 24.831815 + ], + [ + 60.185409, + 24.831792 + ], + [ + 60.185503, + 24.83185 + ], + [ + 60.185472, + 24.832059 + ], + [ + 60.185533, + 24.832097 + ], + [ + 60.185544, + 24.832022 + ], + [ + 60.185572, + 24.83204 + ], + [ + 60.185514, + 24.832427 + ], + [ + 60.185451, + 24.832844 + ], + [ + 60.185297, + 24.83275 + ], + [ + 60.185288, + 24.832807 + ], + [ + 60.185276, + 24.832887 + ] + ], + "type": "building" + }, + { + "address": "L\u00e4mp\u00f6miehenkuja 3", + "aliases": [ + "R023" + ], + "children": [ + "r023-ent-A" + ], + "entrances": [ + { + "lat": 60.181907, + "lon": 24.830619, + "main": true, + "name": "A" + } + ], + "id": "r023", + "label": "23", + "latlon": [ + 60.181907, + 24.830619 + ], + "name": "L\u00e4mp\u00f6miehenkuja 3", + "osm_elements": [ + [ + "way", + 26608177 + ] + ], + "outline": [ + [ + 60.181907, + 24.830619 + ], + [ + 60.18184, + 24.830672 + ], + [ + 60.181408, + 24.831012 + ], + [ + 60.181363, + 24.83078 + ], + [ + 60.181983, + 24.830291 + ], + [ + 60.182028, + 24.830524 + ], + [ + 60.181907, + 24.830619 + ] + ], + "type": "building" + }, + { + "address": "Metallimiehenkuja 4", + "aliases": [ + "R027" + ], + "children": [ + "r027-ent-9525308864", + "r027-ent-9525308859" + ], + "entrances": [ + { + "lat": 60.183251, + "lon": 24.828676 + }, + { + "lat": 60.183652, + "lon": 24.829379 + } + ], + "id": "r027", + "label": "27", + "latlon": [ + 60.183473, + 24.829127 + ], + "name": "Arkkitehtipaja", + "name_en": "Architecture Workshop", + "osm_elements": [ + [ + "way", + 7588940 + ] + ], + "outline": [ + [ + 60.183672, + 24.829424 + ], + [ + 60.183581, + 24.82959 + ], + [ + 60.183296, + 24.828961 + ], + [ + 60.183205, + 24.82876 + ], + [ + 60.183251, + 24.828676 + ], + [ + 60.183295, + 24.828594 + ], + [ + 60.183632, + 24.829335 + ], + [ + 60.183652, + 24.829379 + ], + [ + 60.183672, + 24.829424 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 7", + "aliases": [ + "R029", + "OK7" + ], + "children": [ + "r029-ent-C" + ], + "entrances": [ + { + "lat": 60.189028, + "lon": 24.833487, + "main": true, + "name": "C" + } + ], + "id": "r029", + "label": "29", + "latlon": [ + 60.189028, + 24.833487 + ], + "name": "R029", + "opening_hours": "Mo-Fr 07:45-15:30; PH off", + "osm_elements": [ + [ + "way", + 24342456 + ] + ], + "outline": [ + [ + 60.189562, + 24.833023 + ], + [ + 60.189562, + 24.833156 + ], + [ + 60.189549, + 24.833155 + ], + [ + 60.189548, + 24.833326 + ], + [ + 60.189484, + 24.833325 + ], + [ + 60.189484, + 24.833424 + ], + [ + 60.189069, + 24.833415 + ], + [ + 60.189043, + 24.833415 + ], + [ + 60.189042, + 24.833487 + ], + [ + 60.189042, + 24.833587 + ], + [ + 60.189041, + 24.833702 + ], + [ + 60.188998, + 24.833701 + ], + [ + 60.188861, + 24.833698 + ], + [ + 60.188586, + 24.833692 + ], + [ + 60.188587, + 24.833414 + ], + [ + 60.188588, + 24.833302 + ], + [ + 60.188489, + 24.8333 + ], + [ + 60.188491, + 24.833067 + ], + [ + 60.188657, + 24.833071 + ], + [ + 60.188695, + 24.833071 + ], + [ + 60.188723, + 24.833072 + ], + [ + 60.188721, + 24.833301 + ], + [ + 60.188748, + 24.833301 + ], + [ + 60.188883, + 24.833304 + ], + [ + 60.188919, + 24.833305 + ], + [ + 60.188919, + 24.833266 + ], + [ + 60.18892, + 24.833106 + ], + [ + 60.188921, + 24.83301 + ], + [ + 60.188965, + 24.833011 + ], + [ + 60.18897, + 24.833011 + ], + [ + 60.189071, + 24.833013 + ], + [ + 60.189085, + 24.833013 + ], + [ + 60.189456, + 24.833021 + ], + [ + 60.189495, + 24.833022 + ], + [ + 60.189552, + 24.833023 + ], + [ + 60.189562, + 24.833023 + ] + ], + "type": "building" + }, + { + "address": "Konemiehentie 2", + "aliases": [ + "Tikkitalo", + "R030", + "T", + "Subway Building", + "CS" + ], + "children": [ + "dept:cs", + "unit:hiit", + "library_cs", + "cs-it", + "T-printer-5104046531", + "T-printer-5105524124", + "T-printer-5105524125", + "subway_cs", + "SCI", + "sodexo-cs", + "r030-awing", + "r030-bwing", + "r030-cwing", + "T5", + "T6", + "T-A140", + "T2", + "T7", + "T-C106.2", + "T1", + "T3", + "paniikki", + "T-ent-289113781", + "T-ent-A", + "T-ent-F", + "T-ent-I", + "T-ent-L" + ], + "entrances": [ + { + "lat": 60.187066, + "lon": 24.821995, + "name": "L" + }, + { + "lat": 60.186776, + "lon": 24.822108, + "main": true, + "name": "A" + }, + { + "lat": 60.186881, + "lon": 24.820318, + "name": "F" + }, + { + "lat": 60.18697, + "lon": 24.820473 + }, + { + "lat": 60.187247, + "lon": 24.820964, + "name": "I" + } + ], + "id": "T", + "label": "CS / T\n30", + "latlon": [ + 60.186776, + 24.822108 + ], + "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.\n", + "name": "Tietotekniikka", + "name_en": "Computer Science", + "opening_hours": "Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 4217650 + ] + ], + "outline": [ + [ + 60.187179, + 24.821289 + ], + [ + 60.187124, + 24.821635 + ], + [ + 60.187093, + 24.82183 + ], + [ + 60.187087, + 24.821863 + ], + [ + 60.187093, + 24.821864 + ], + [ + 60.187099, + 24.821865 + ], + [ + 60.187095, + 24.821923 + ], + [ + 60.187078, + 24.821919 + ], + [ + 60.187066, + 24.821995 + ], + [ + 60.187057, + 24.822052 + ], + [ + 60.18699, + 24.822471 + ], + [ + 60.186979, + 24.822541 + ], + [ + 60.186896, + 24.822486 + ], + [ + 60.1869, + 24.822463 + ], + [ + 60.186903, + 24.822442 + ], + [ + 60.186779, + 24.822398 + ], + [ + 60.1868, + 24.822133 + ], + [ + 60.186776, + 24.822108 + ], + [ + 60.186752, + 24.822084 + ], + [ + 60.186716, + 24.822336 + ], + [ + 60.186707, + 24.822331 + ], + [ + 60.186677, + 24.822313 + ], + [ + 60.186662, + 24.822304 + ], + [ + 60.186658, + 24.822325 + ], + [ + 60.186655, + 24.822346 + ], + [ + 60.186583, + 24.822278 + ], + [ + 60.186584, + 24.822272 + ], + [ + 60.186695, + 24.821785 + ], + [ + 60.186687, + 24.821782 + ], + [ + 60.186692, + 24.821718 + ], + [ + 60.1867, + 24.821721 + ], + [ + 60.186708, + 24.821724 + ], + [ + 60.18676, + 24.821139 + ], + [ + 60.186747, + 24.821134 + ], + [ + 60.186753, + 24.821073 + ], + [ + 60.18676, + 24.821076 + ], + [ + 60.186766, + 24.821078 + ], + [ + 60.186818, + 24.820496 + ], + [ + 60.186805, + 24.820492 + ], + [ + 60.186811, + 24.820429 + ], + [ + 60.186819, + 24.820432 + ], + [ + 60.186824, + 24.820433 + ], + [ + 60.186836, + 24.820301 + ], + [ + 60.186881, + 24.820318 + ], + [ + 60.18688, + 24.820335 + ], + [ + 60.18697, + 24.820371 + ], + [ + 60.186961, + 24.82047 + ], + [ + 60.18697, + 24.820473 + ], + [ + 60.18698, + 24.820476 + ], + [ + 60.186996, + 24.820483 + ], + [ + 60.187291, + 24.820588 + ], + [ + 60.18734, + 24.820616 + ], + [ + 60.187357, + 24.820626 + ], + [ + 60.187299, + 24.820997 + ], + [ + 60.187247, + 24.820964 + ], + [ + 60.187233, + 24.820955 + ], + [ + 60.187188, + 24.821232 + ], + [ + 60.187195, + 24.821233 + ], + [ + 60.187204, + 24.821235 + ], + [ + 60.187201, + 24.821292 + ], + [ + 60.187179, + 24.821289 + ] + ], + "type": "building" + }, + { + "address": "Maarintie 6", + "aliases": [ + "R032", + "OIH" + ], + "children": [ + "oih_cafe", + "oih-ent-2375427439" + ], + "entrances": [ + { + "lat": 60.187201, + "lon": 24.816356, + "main": true + } + ], + "id": "oih", + "label": "OIH\n32", + "latlon": [ + 60.187201, + 24.816356 + ], + "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?", + "name": "Open Innovation House", + "opening_hours": "Mo-Fr 07:30-16:30; PH off", + "osm_elements": [ + [ + "way", + 148683540 + ] + ], + "outline": [ + [ + 60.187207, + 24.816288 + ], + [ + 60.18713, + 24.816259 + ], + [ + 60.187152, + 24.81604 + ], + [ + 60.187223, + 24.816068 + ], + [ + 60.187245, + 24.815842 + ], + [ + 60.187173, + 24.815814 + ], + [ + 60.187194, + 24.815599 + ], + [ + 60.187266, + 24.815627 + ], + [ + 60.187289, + 24.815393 + ], + [ + 60.187216, + 24.815364 + ], + [ + 60.187237, + 24.815147 + ], + [ + 60.18726, + 24.815156 + ], + [ + 60.187309, + 24.815175 + ], + [ + 60.187331, + 24.814946 + ], + [ + 60.18726, + 24.814919 + ], + [ + 60.187281, + 24.814702 + ], + [ + 60.187351, + 24.81473 + ], + [ + 60.187373, + 24.814509 + ], + [ + 60.187303, + 24.814482 + ], + [ + 60.187325, + 24.814254 + ], + [ + 60.187413, + 24.814288 + ], + [ + 60.187424, + 24.814176 + ], + [ + 60.187564, + 24.814231 + ], + [ + 60.187347, + 24.816476 + ], + [ + 60.187196, + 24.816413 + ], + [ + 60.187201, + 24.816356 + ], + [ + 60.187207, + 24.816288 + ] + ], + "type": "building" + }, + { + "address": "Tietotie 1 E", + "aliases": [ + "R034" + ], + "children": [ + "fatlizard", + "ENG", + "r034-286", + "r034-ent-25530504" + ], + "entrances": [ + { + "lat": 60.18551, + "lon": 24.820519, + "main": true + } + ], + "id": "r034", + "label": "34", + "latlon": [ + 60.18551, + 24.820519 + ], + "name": "Vesitalo", + "name_en": "Water Laboratory", + "name_sv": "Vattenlaboratorium", + "osm_elements": [ + [ + "way", + 4259026 + ] + ], + "outline": [ + [ + 60.185794, + 24.819001 + ], + [ + 60.185771, + 24.819296 + ], + [ + 60.185734, + 24.819735 + ], + [ + 60.185669, + 24.820453 + ], + [ + 60.18565, + 24.820533 + ], + [ + 60.18561, + 24.82059 + ], + [ + 60.185567, + 24.820598 + ], + [ + 60.185525, + 24.820557 + ], + [ + 60.18551, + 24.820519 + ], + [ + 60.185499, + 24.820482 + ], + [ + 60.185493, + 24.820392 + ], + [ + 60.185521, + 24.820061 + ], + [ + 60.185551, + 24.819698 + ], + [ + 60.185618, + 24.818933 + ], + [ + 60.185794, + 24.819001 + ] + ], + "type": "building" + }, + { + "address": "Tietotie 3", + "aliases": [ + "R036" + ], + "children": [ + "dept:cmat", + "dept:eea", + "dept:ele", + "dept:physics", + "nanofab", + "unit:nanofab", + "otanano", + "maukas-nova", + "CHEM", + "ELEC", + "SCI", + "micronova-ent-5081929212", + "micronova-ent-5081929217" + ], + "entrances": [ + { + "lat": 60.184791, + "lon": 24.818355, + "main": true + }, + { + "lat": 60.184552, + "lon": 24.815946 + } + ], + "id": "micronova", + "label": "Micronova\n36", + "latlon": [ + 60.184791, + 24.818355 + ], + "name": "Micronova", + "osm_elements": [ + [ + "way", + 7585092 + ] + ], + "outline": [ + [ + 60.185189, + 24.817165 + ], + [ + 60.184869, + 24.817291 + ], + [ + 60.184874, + 24.817342 + ], + [ + 60.184854, + 24.817349 + ], + [ + 60.184871, + 24.817524 + ], + [ + 60.184987, + 24.817478 + ], + [ + 60.185007, + 24.817683 + ], + [ + 60.184891, + 24.817728 + ], + [ + 60.184917, + 24.817989 + ], + [ + 60.185033, + 24.817943 + ], + [ + 60.185053, + 24.818151 + ], + [ + 60.184937, + 24.818196 + ], + [ + 60.184959, + 24.818419 + ], + [ + 60.184825, + 24.818471 + ], + [ + 60.184813, + 24.818346 + ], + [ + 60.184791, + 24.818355 + ], + [ + 60.184697, + 24.818392 + ], + [ + 60.184667, + 24.818092 + ], + [ + 60.184569, + 24.818131 + ], + [ + 60.184551, + 24.817945 + ], + [ + 60.184649, + 24.817906 + ], + [ + 60.184641, + 24.817827 + ], + [ + 60.184626, + 24.817667 + ], + [ + 60.184527, + 24.817706 + ], + [ + 60.184509, + 24.817519 + ], + [ + 60.184608, + 24.81748 + ], + [ + 60.184585, + 24.817253 + ], + [ + 60.184487, + 24.817292 + ], + [ + 60.184469, + 24.817107 + ], + [ + 60.184567, + 24.817068 + ], + [ + 60.184534, + 24.81673 + ], + [ + 60.184436, + 24.816769 + ], + [ + 60.184418, + 24.816585 + ], + [ + 60.184517, + 24.816546 + ], + [ + 60.184493, + 24.816306 + ], + [ + 60.184394, + 24.816345 + ], + [ + 60.184376, + 24.81616 + ], + [ + 60.184475, + 24.816121 + ], + [ + 60.18445, + 24.815865 + ], + [ + 60.184513, + 24.815841 + ], + [ + 60.184525, + 24.815956 + ], + [ + 60.184552, + 24.815946 + ], + [ + 60.184763, + 24.815862 + ], + [ + 60.184845, + 24.816707 + ], + [ + 60.185133, + 24.816593 + ], + [ + 60.185189, + 24.817165 + ] + ], + "type": "building" + }, + { + "address": "Maarintie 8", + "aliases": [ + "TUAS", + "R037", + "TU", + "AS" + ], + "children": [ + "dept:eea", + "dept:ele", + "dept:tuta", + "aaltoventuresprogram", + "tuas-s\u00e4hk\u00f6paja", + "tuas-printer-5105524127", + "tuas-printer-5105524126", + "amicatuas", + "ELEC", + "tuas-159xwing", + "tuas-x1xxwing", + "tuas-x5xxwing", + "tuas-1018", + "tuas-1021", + "tuas-1022", + "tuas-1023", + "tuas-1024", + "tuas-1171", + "tuas-1174", + "tuas-1194", + "tuas-1199", + "tuas-1200", + "tuas-1522", + "tuas-1621", + "tuas-AS2", + "tuas-Odeion", + "tuas-TU1", + "tuas-TU2", + "tuas-ent-289113873", + "tuas-ent-977658743", + "tuas-ent-330026233" + ], + "entrances": [ + { + "lat": 60.187006, + "lon": 24.820074 + }, + { + "lat": 60.186997, + "lon": 24.820071 + }, + { + "lat": 60.186878, + "lon": 24.819554, + "main": true + } + ], + "id": "tuas", + "label": "TUAS\n37", + "latlon": [ + 60.186878, + 24.819554 + ], + "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.", + "name": "TUAS", + "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)", + "opening_hours": "Mo-Th 08:00-20:00; Fr 08:00-18:00; Jun-Aug Mo-Fr 08:00-15:30; PH off", + "osm_elements": [ + [ + "way", + 29012757 + ] + ], + "outline": [ + [ + 60.18701, + 24.817416 + ], + [ + 60.187072, + 24.817439 + ], + [ + 60.187082, + 24.817334 + ], + [ + 60.187218, + 24.817388 + ], + [ + 60.187198, + 24.817589 + ], + [ + 60.18721, + 24.817593 + ], + [ + 60.187284, + 24.817622 + ], + [ + 60.187262, + 24.817874 + ], + [ + 60.187185, + 24.817846 + ], + [ + 60.187169, + 24.818015 + ], + [ + 60.187246, + 24.818044 + ], + [ + 60.187222, + 24.818301 + ], + [ + 60.187202, + 24.818294 + ], + [ + 60.18714, + 24.818271 + ], + [ + 60.187137, + 24.818296 + ], + [ + 60.187128, + 24.818401 + ], + [ + 60.187157, + 24.818412 + ], + [ + 60.187154, + 24.818442 + ], + [ + 60.187152, + 24.818464 + ], + [ + 60.187186, + 24.818478 + ], + [ + 60.187245, + 24.818503 + ], + [ + 60.187266, + 24.818321 + ], + [ + 60.187339, + 24.818356 + ], + [ + 60.187328, + 24.818454 + ], + [ + 60.187335, + 24.818457 + ], + [ + 60.187382, + 24.81848 + ], + [ + 60.187359, + 24.818672 + ], + [ + 60.187442, + 24.818711 + ], + [ + 60.187419, + 24.818904 + ], + [ + 60.187393, + 24.819127 + ], + [ + 60.1875, + 24.819177 + ], + [ + 60.187487, + 24.819291 + ], + [ + 60.187436, + 24.819701 + ], + [ + 60.18742, + 24.819824 + ], + [ + 60.187317, + 24.819781 + ], + [ + 60.187294, + 24.81997 + ], + [ + 60.187394, + 24.820016 + ], + [ + 60.18738, + 24.82014 + ], + [ + 60.187368, + 24.820244 + ], + [ + 60.187351, + 24.820236 + ], + [ + 60.18713, + 24.820134 + ], + [ + 60.187124, + 24.820187 + ], + [ + 60.187011, + 24.820135 + ], + [ + 60.187016, + 24.820078 + ], + [ + 60.187006, + 24.820074 + ], + [ + 60.186997, + 24.820071 + ], + [ + 60.186991, + 24.820069 + ], + [ + 60.186985, + 24.820125 + ], + [ + 60.186836, + 24.820069 + ], + [ + 60.186878, + 24.819554 + ], + [ + 60.186884, + 24.819478 + ], + [ + 60.186806, + 24.819449 + ], + [ + 60.186837, + 24.819134 + ], + [ + 60.186853, + 24.81914 + ], + [ + 60.186912, + 24.819164 + ], + [ + 60.186932, + 24.818948 + ], + [ + 60.186873, + 24.818925 + ], + [ + 60.186896, + 24.818686 + ], + [ + 60.186956, + 24.818708 + ], + [ + 60.186973, + 24.818524 + ], + [ + 60.186912, + 24.818501 + ], + [ + 60.186933, + 24.81827 + ], + [ + 60.186998, + 24.818294 + ], + [ + 60.187017, + 24.818093 + ], + [ + 60.186952, + 24.818069 + ], + [ + 60.186971, + 24.817849 + ], + [ + 60.187035, + 24.817872 + ], + [ + 60.187053, + 24.81767 + ], + [ + 60.186989, + 24.817647 + ], + [ + 60.18701, + 24.817416 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 11", + "aliases": [ + "R038", + "AYY", + "OK11" + ], + "children": [ + "AYY-servicepoint", + "r038-ent-1610326469", + "r038-ent-1610326471", + "r038-ent-1610326467" + ], + "entrances": [ + { + "lat": 60.184601, + "lon": 24.830169 + }, + { + "lat": 60.184804, + "lon": 24.830501 + }, + { + "lat": 60.184599, + "lon": 24.830491 + } + ], + "id": "r038", + "label": "AYY\n38", + "latlon": [ + 60.18468, + 24.830381 + ], + "name": "Aalto-yliopiston ylioppilaskunta", + "name_en": "Aalto University Student Union", + "name_sv": "Aalto-universitetets studentk\u00e5r", + "osm_elements": [ + [ + "way", + 7589907 + ] + ], + "outline": [ + [ + 60.184545, + 24.830501 + ], + [ + 60.184525, + 24.830366 + ], + [ + 60.184498, + 24.830187 + ], + [ + 60.184601, + 24.830169 + ], + [ + 60.184767, + 24.830141 + ], + [ + 60.184774, + 24.830193 + ], + [ + 60.184838, + 24.830187 + ], + [ + 60.184849, + 24.830492 + ], + [ + 60.184804, + 24.830501 + ], + [ + 60.184748, + 24.830512 + ], + [ + 60.184747, + 24.830494 + ], + [ + 60.184677, + 24.830508 + ], + [ + 60.184677, + 24.830477 + ], + [ + 60.184599, + 24.830491 + ], + [ + 60.184545, + 24.830501 + ] + ], + "type": "building" + }, + { + "address": "Metallimiehenkuja 6-8", + "aliases": [ + "R039" + ], + "children": [ + "panimo", + "r039-ent-5270776201", + "r039-ent-D" + ], + "entrances": [ + { + "lat": 60.183031, + "lon": 24.83054 + }, + { + "lat": 60.182931, + "lon": 24.829457, + "name": "D" + } + ], + "id": "r039", + "label": "39", + "latlon": [ + 60.183008, + 24.829878 + ], + "name": "Metallimiehenkuja 6-8", + "osm_elements": [ + [ + "way", + 27464085 + ] + ], + "outline": [ + [ + 60.183095, + 24.829752 + ], + [ + 60.183046, + 24.829845 + ], + [ + 60.183041, + 24.829835 + ], + [ + 60.183024, + 24.829868 + ], + [ + 60.183101, + 24.830033 + ], + [ + 60.183018, + 24.830189 + ], + [ + 60.183007, + 24.830166 + ], + [ + 60.183, + 24.830179 + ], + [ + 60.183104, + 24.830402 + ], + [ + 60.183031, + 24.83054 + ], + [ + 60.182953, + 24.830685 + ], + [ + 60.18259, + 24.829905 + ], + [ + 60.182741, + 24.829622 + ], + [ + 60.18284, + 24.829834 + ], + [ + 60.182847, + 24.829821 + ], + [ + 60.182817, + 24.829758 + ], + [ + 60.1829, + 24.829602 + ], + [ + 60.182929, + 24.829665 + ], + [ + 60.182947, + 24.829632 + ], + [ + 60.182896, + 24.829523 + ], + [ + 60.182931, + 24.829457 + ], + [ + 60.182944, + 24.829433 + ], + [ + 60.182898, + 24.829336 + ], + [ + 60.182996, + 24.829152 + ], + [ + 60.183406, + 24.830033 + ], + [ + 60.183386, + 24.830072 + ], + [ + 60.183346, + 24.830147 + ], + [ + 60.18331, + 24.830214 + ], + [ + 60.183095, + 24.829752 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 22", + "aliases": [ + "T\u00e4ff\u00e4", + "R040", + "Urdsgjallar", + "OK22" + ], + "children": [ + "tff", + "r040-ent-5111296238", + "r040-ent-5111323516", + "r040-ent-25468805" + ], + "entrances": [ + { + "lat": 60.185924, + "lon": 24.832462, + "main": true + }, + { + "lat": 60.186164, + "lon": 24.833241 + }, + { + "lat": 60.186033, + "lon": 24.83313 + } + ], + "id": "r040", + "label": "TF\n40", + "latlon": [ + 60.185924, + 24.832462 + ], + "name": "TF", + "name_en": "TF", + "name_sv": "Teknologf\u00f6reningen", + "osm_elements": [ + [ + "way", + 4252953 + ] + ], + "outline": [ + [ + 60.186028, + 24.832895 + ], + [ + 60.185994, + 24.832691 + ], + [ + 60.185985, + 24.832679 + ], + [ + 60.185914, + 24.832484 + ], + [ + 60.185924, + 24.832462 + ], + [ + 60.185934, + 24.832439 + ], + [ + 60.185962, + 24.832497 + ], + [ + 60.185979, + 24.832501 + ], + [ + 60.186066, + 24.832615 + ], + [ + 60.18609, + 24.83271 + ], + [ + 60.186091, + 24.832741 + ], + [ + 60.186122, + 24.832877 + ], + [ + 60.186136, + 24.832939 + ], + [ + 60.186136, + 24.832979 + ], + [ + 60.186181, + 24.83323 + ], + [ + 60.186164, + 24.833241 + ], + [ + 60.186152, + 24.833253 + ], + [ + 60.186159, + 24.833296 + ], + [ + 60.18608, + 24.833471 + ], + [ + 60.186067, + 24.833476 + ], + [ + 60.186052, + 24.833326 + ], + [ + 60.186029, + 24.833089 + ], + [ + 60.18598, + 24.833108 + ], + [ + 60.185936, + 24.833307 + ], + [ + 60.185929, + 24.833339 + ], + [ + 60.185872, + 24.833219 + ], + [ + 60.185894, + 24.833171 + ], + [ + 60.185871, + 24.833124 + ], + [ + 60.185959, + 24.832939 + ], + [ + 60.185967, + 24.832933 + ], + [ + 60.186028, + 24.832895 + ] + ], + "type": "building" + }, + { + "address": "Otaniementie 14", + "aliases": [ + "R067", + "School of Arts, Design and Architecture" + ], + "children": [ + "dept:architecture", + "dept:artmedia", + "dept:design", + "dept:film", + "medialab", + "servicedesk_vare", + "cafetoria", + "Kipsari", + "ARTS", + "vare-E", + "vare-F", + "vare-G", + "vare-J", + "vare-K", + "vare-L", + "vare-M", + "vare-O", + "vare-P", + "vare-Q", + "vare-R", + "vare-S", + "vare-ent-5880866309", + "vare-ent-4050038148", + "vare-ent-8719348753", + "vare-ent-14" + ], + "entrances": [ + { + "lat": 60.185831, + "lon": 24.824365 + }, + { + "lat": 60.185316, + "lon": 24.825587, + "main": true, + "name": "14" + }, + { + "lat": 60.185724, + "lon": 24.825546 + }, + { + "lat": 60.185935, + "lon": 24.824532 + } + ], + "id": "vare", + "label": "V\u00e4re\n67", + "latlon": [ + 60.185316, + 24.825587 + ], + "name": "V\u00e4re", + "name_sv": "Aalto-universitetets h\u00f6gskolan f\u00f6r konst, design och arkitektur byggnad V\u00e4re", + "osm_elements": [ + [ + "way", + 941553968 + ] + ], + "outline": [ + [ + 60.185223, + 24.824873 + ], + [ + 60.185297, + 24.824415 + ], + [ + 60.185339, + 24.824277 + ], + [ + 60.185412, + 24.824142 + ], + [ + 60.185519, + 24.823948 + ], + [ + 60.18559, + 24.824105 + ], + [ + 60.185616, + 24.824074 + ], + [ + 60.185705, + 24.82413 + ], + [ + 60.185709, + 24.824132 + ], + [ + 60.185717, + 24.824133 + ], + [ + 60.185722, + 24.824135 + ], + [ + 60.185814, + 24.82433 + ], + [ + 60.185831, + 24.824365 + ], + [ + 60.1859, + 24.824509 + ], + [ + 60.185923, + 24.824524 + ], + [ + 60.186009, + 24.824031 + ], + [ + 60.186033, + 24.823982 + ], + [ + 60.186037, + 24.823995 + ], + [ + 60.186044, + 24.824001 + ], + [ + 60.186048, + 24.823994 + ], + [ + 60.186104, + 24.824099 + ], + [ + 60.186029, + 24.824593 + ], + [ + 60.185954, + 24.825062 + ], + [ + 60.185907, + 24.825193 + ], + [ + 60.185729, + 24.825545 + ], + [ + 60.185724, + 24.825573 + ], + [ + 60.18565, + 24.82604 + ], + [ + 60.185543, + 24.825971 + ], + [ + 60.185409, + 24.825797 + ], + [ + 60.185335, + 24.825636 + ], + [ + 60.185316, + 24.825587 + ], + [ + 60.185297, + 24.82555 + ], + [ + 60.185229, + 24.825484 + ], + [ + 60.185134, + 24.825422 + ], + [ + 60.185205, + 24.824979 + ], + [ + 60.185223, + 24.824873 + ] + ], + "type": "building" + }, + { + "aliases": [ + "Metro Centre", + "Metro entrance A" + ], + "children": [ + "metroA-ent-5026528602" + ], + "entrances": [ + { + "lat": 60.184614, + "lon": 24.825804 + } + ], + "id": "metroA", + "latlon": [ + 60.184594, + 24.825564 + ], + "osm_elements": [ + [ + "way", + 402618641 + ] + ], + "outline": [ + [ + 60.18462, + 24.825222 + ], + [ + 60.184708, + 24.825438 + ], + [ + 60.184643, + 24.825836 + ], + [ + 60.184614, + 24.825804 + ], + [ + 60.184588, + 24.825772 + ], + [ + 60.18451, + 24.825678 + ], + [ + 60.184448, + 24.825543 + ], + [ + 60.18462, + 24.825222 + ] + ], + "parents": [ + "abloc" + ], + "type": "building" + }, + { + "address": "Otaniementie 14", + "aliases": [ + "Kauppis", + "R068" + ], + "children": [ + "dept:accounting", + "dept:economics", + "dept:finance", + "dept:infosrv", + "dept:management", + "dept:marketing", + "unit:cikr", + "kylteri", + "arvo", + "BIZ", + "biz-T", + "biz-U", + "biz-V", + "biz-X", + "biz-Y", + "R068-T003", + "R068-T004", + "R068-U006", + "R068-V001", + "R068-V002", + "R068-ent-6187837675" + ], + "entrances": [ + { + "lat": 60.186099, + "lon": 24.823148 + } + ], + "id": "R068", + "label": "68", + "latlon": [ + 60.185924, + 24.823465 + ], + "name": "Aalto-yliopisto Kauppakorkeakoulu", + "name_en": "School of Business", + "osm_elements": [ + [ + "way", + 941553966 + ] + ], + "outline": [ + [ + 60.186095, + 24.823107 + ], + [ + 60.186229, + 24.822856 + ], + [ + 60.186076, + 24.822691 + ], + [ + 60.186056, + 24.822678 + ], + [ + 60.185997, + 24.822641 + ], + [ + 60.185929, + 24.823078 + ], + [ + 60.185923, + 24.823117 + ], + [ + 60.185901, + 24.823177 + ], + [ + 60.185716, + 24.82352 + ], + [ + 60.185685, + 24.823627 + ], + [ + 60.185616, + 24.824074 + ], + [ + 60.185705, + 24.82413 + ], + [ + 60.185709, + 24.824132 + ], + [ + 60.185717, + 24.824133 + ], + [ + 60.185722, + 24.824135 + ], + [ + 60.185814, + 24.82433 + ], + [ + 60.185996, + 24.823961 + ], + [ + 60.186032, + 24.82385 + ], + [ + 60.186101, + 24.823395 + ], + [ + 60.186119, + 24.823342 + ], + [ + 60.186099, + 24.823148 + ], + [ + 60.186095, + 24.823107 + ] + ], + "type": "building" + }, + { + "address": "Otaniementie 12", + "children": [ + "metroA", + "abloc-rkioski", + "alko", + "abloc-apteekki", + "abloc-atm-otto", + "terveystalo", + "espressohouse", + "kot", + "whothexxxisalice", + "kmarket", + "konnichiwa", + "abloc-alepa", + "abloc-foodandco", + "abloc-eatpoke", + "mezame", + "abloc-wickedrabbit", + "abloc-A", + "abloc-D", + "abloc-I", + "abloc-N", + "abloc-ent-4050038158", + "abloc-ent-5026528602", + "abloc-ent-5871819458", + "abloc-ent-A" + ], + "entrances": [ + { + "lat": 60.184702, + "lon": 24.824799 + }, + { + "lat": 60.184614, + "lon": 24.825804 + }, + { + "lat": 60.184774, + "lon": 24.825804, + "main": true, + "name": "A" + }, + { + "lat": 60.185003, + "lon": 24.825333 + } + ], + "id": "abloc", + "latlon": [ + 60.184774, + 24.825804 + ], + "name": "A Bloc", + "opening_hours": "Mo-Sa 06:00-24:00; Su 09:00-24:00", + "osm_elements": [ + [ + "way", + 941553969 + ] + ], + "outline": [ + [ + 60.185134, + 24.825422 + ], + [ + 60.185205, + 24.824979 + ], + [ + 60.185223, + 24.824873 + ], + [ + 60.185297, + 24.824415 + ], + [ + 60.185259, + 24.824365 + ], + [ + 60.18518, + 24.824199 + ], + [ + 60.185, + 24.824545 + ], + [ + 60.184966, + 24.824474 + ], + [ + 60.184914, + 24.824365 + ], + [ + 60.184726, + 24.824726 + ], + [ + 60.184702, + 24.824799 + ], + [ + 60.184687, + 24.824876 + ], + [ + 60.184637, + 24.825184 + ], + [ + 60.18462, + 24.825222 + ], + [ + 60.184448, + 24.825543 + ], + [ + 60.18451, + 24.825678 + ], + [ + 60.184588, + 24.825772 + ], + [ + 60.184614, + 24.825804 + ], + [ + 60.184643, + 24.825836 + ], + [ + 60.18459, + 24.826157 + ], + [ + 60.184576, + 24.826244 + ], + [ + 60.184688, + 24.826318 + ], + [ + 60.184755, + 24.82591 + ], + [ + 60.184774, + 24.825804 + ], + [ + 60.18478, + 24.825771 + ], + [ + 60.184811, + 24.825708 + ], + [ + 60.185003, + 24.825333 + ], + [ + 60.185017, + 24.825305 + ], + [ + 60.185134, + 24.825422 + ] + ], + "type": "building" + }, + { + "address": "Tietotie 4 B", + "children": [ + "metroB-ent-4104851062" + ], + "entrances": [ + { + "lat": 60.185208, + "lon": 24.820743, + "main": true + } + ], + "id": "metroB", + "latlon": [ + 60.185208, + 24.820743 + ], + "name": "Metro entrance B", + "osm_elements": [ + [ + "way", + 408595707 + ] + ], + "outline": [ + [ + 60.185237, + 24.820702 + ], + [ + 60.185208, + 24.820743 + ], + [ + 60.185167, + 24.820811 + ], + [ + 60.185278, + 24.821059 + ], + [ + 60.185228, + 24.82113 + ], + [ + 60.185323, + 24.821389 + ], + [ + 60.185457, + 24.82121 + ], + [ + 60.185237, + 24.820702 + ] + ], + "type": "building" + }, + { + "address": "Otakaari 2", + "aliases": [ + "R044", + "Aalto Studios", + "OK2", + "OK2" + ], + "children": [ + "moo", + "ARTS", + "aaltoshop", + "marsio-1230", + "marsio-Digital Studio", + "marsio-Event Studio", + "marsio-Stage", + "marsio-ent-A", + "marsio-ent-12141949984" + ], + "entrances": [ + { + "lat": 60.186338, + "lon": 24.826321, + "main": true, + "name": "A" + }, + { + "lat": 60.186505, + "lon": 24.826527 + } + ], + "id": "marsio", + "label": "44", + "latlon": [ + 60.186338, + 24.826321 + ], + "name": "Marsio", + "opening_hours": "Mo-Th 07:45-21:00; Fr 07:45-20:00; Sa-Su off; PH off", + "osm_elements": [ + [ + "way", + 1119443893 + ] + ], + "outline": [ + [ + 60.186695, + 24.825486 + ], + [ + 60.186526, + 24.825277 + ], + [ + 60.186466, + 24.825204 + ], + [ + 60.186425, + 24.825153 + ], + [ + 60.186345, + 24.825053 + ], + [ + 60.186273, + 24.825831 + ], + [ + 60.186183, + 24.826128 + ], + [ + 60.186338, + 24.826321 + ], + [ + 60.186396, + 24.826392 + ], + [ + 60.186505, + 24.826527 + ], + [ + 60.186643, + 24.826697 + ], + [ + 60.186673, + 24.8266 + ], + [ + 60.186727, + 24.826422 + ], + [ + 60.186555, + 24.826209 + ], + [ + 60.186496, + 24.826136 + ], + [ + 60.186505, + 24.826107 + ], + [ + 60.186695, + 24.825486 + ] + ], + "type": "building" + }, + { + "address": "Konemiehentie 1", + "aliases": [ + "R045", + "KM1" + ], + "children": [ + "dept:dice", + "dept:physics", + "ELEC", + "SCI", + "kide-1501", + "kide-1571", + "kide-1572", + "kide-ent-10238806258" + ], + "entrances": [ + { + "lat": 60.18661, + "lon": 24.822962 + } + ], + "id": "kide", + "label": "45", + "latlon": [ + 60.186666, + 24.823414 + ], + "name": "Kide", + "opening_hours": "Mo-Fr 07:45-15:30; PH off", + "osm_elements": [ + [ + "way", + 1119443892 + ] + ], + "outline": [ + [ + 60.186917, + 24.822973 + ], + [ + 60.186641, + 24.822864 + ], + [ + 60.18661, + 24.822962 + ], + [ + 60.186547, + 24.823167 + ], + [ + 60.186449, + 24.824078 + ], + [ + 60.186546, + 24.824199 + ], + [ + 60.186564, + 24.824138 + ], + [ + 60.186799, + 24.823373 + ], + [ + 60.186917, + 24.822973 + ] + ], + "type": "building" + }, + { + "address": "Runeberginkatu 14-16, Helsinki.", + "aliases": [ + "T\u00f6\u00f6l\u00f6 P\u00e4\u00e4rakennus", + "T\u00f6\u00f6l\u00f6 main building" + ], + "children": [ + "r101-ent-298644469" + ], + "entrances": [ + { + "lat": 60.171761, + "lon": 24.923332 + } + ], + "id": "r101", + "latlon": [ + 60.171984, + 24.922667 + ], + "osm_elements": [ + [ + "way", + 124297669 + ], + [ + "relation", + "1697955" + ] + ], + "outline": [ + [ + 60.171747, + 24.923334 + ], + [ + 60.171743, + 24.923224 + ], + [ + 60.171721, + 24.923218 + ], + [ + 60.171611, + 24.923193 + ], + [ + 60.17153, + 24.923172 + ], + [ + 60.171612, + 24.921933 + ], + [ + 60.17177, + 24.921849 + ], + [ + 60.171922, + 24.921771 + ], + [ + 60.171982, + 24.92174 + ], + [ + 60.171982, + 24.921726 + ], + [ + 60.172081, + 24.921706 + ], + [ + 60.172103, + 24.922089 + ], + [ + 60.172114, + 24.922083 + ], + [ + 60.172149, + 24.922096 + ], + [ + 60.172153, + 24.922153 + ], + [ + 60.172119, + 24.922182 + ], + [ + 60.172108, + 24.922185 + ], + [ + 60.172127, + 24.922478 + ], + [ + 60.172149, + 24.922472 + ], + [ + 60.172148, + 24.922456 + ], + [ + 60.172164, + 24.922442 + ], + [ + 60.172184, + 24.922446 + ], + [ + 60.172213, + 24.922949 + ], + [ + 60.17223, + 24.92324 + ], + [ + 60.172138, + 24.923312 + ], + [ + 60.172133, + 24.923316 + ], + [ + 60.172124, + 24.923269 + ], + [ + 60.172073, + 24.923277 + ], + [ + 60.172058, + 24.923017 + ], + [ + 60.171957, + 24.923043 + ], + [ + 60.17194, + 24.923324 + ], + [ + 60.171859, + 24.923319 + ], + [ + 60.171761, + 24.923332 + ], + [ + 60.171747, + 24.923334 + ] + ], + "type": "building" + }, + { + "address": "Mechelininkatu 3c", + "children": [ + "unit:aaltoee", + "domusgadium-ent-11762183814", + "domusgadium-ent-317741521" + ], + "entrances": [ + { + "lat": 60.169373, + "lon": 24.922304 + }, + { + "lat": 60.169444, + "lon": 24.921382 + } + ], + "id": "domusgadium", + "latlon": [ + 60.169539, + 24.921634 + ], + "name": "Domus Gaudium", + "osm_elements": [ + [ + "way", + 96286289 + ], + [ + "node", + "1116096931" + ] + ], + "outline": [ + [ + 60.169766, + 24.921224 + ], + [ + 60.169746, + 24.921544 + ], + [ + 60.169731, + 24.921547 + ], + [ + 60.169737, + 24.921649 + ], + [ + 60.169463, + 24.921729 + ], + [ + 60.169422, + 24.922315 + ], + [ + 60.169373, + 24.922304 + ], + [ + 60.16927, + 24.922274 + ], + [ + 60.169337, + 24.921351 + ], + [ + 60.169444, + 24.921382 + ], + [ + 60.169474, + 24.921391 + ], + [ + 60.16948, + 24.921311 + ], + [ + 60.169766, + 24.921224 + ] + ], + "type": "building" + }, + { + "address": "Mets\u00e4hovintie 114", + "children": [ + "unit:metsahovi" + ], + "entrances": [], + "id": "metsahovi", + "latlon": [ + 60.21809, + 24.393158 + ], + "name": "Mets\u00e4hovi main building", + "osm_elements": [ + [ + "way", + 223131392 + ] + ], + "outline": [ + [ + 60.218233, + 24.393306 + ], + [ + 60.218225, + 24.393401 + ], + [ + 60.217927, + 24.393304 + ], + [ + 60.217933, + 24.393236 + ], + [ + 60.217904, + 24.393225 + ], + [ + 60.217875, + 24.393213 + ], + [ + 60.217882, + 24.393187 + ], + [ + 60.217889, + 24.393161 + ], + [ + 60.217963, + 24.393185 + ], + [ + 60.217969, + 24.393108 + ], + [ + 60.218108, + 24.393153 + ], + [ + 60.218119, + 24.393012 + ], + [ + 60.218049, + 24.392989 + ], + [ + 60.218066, + 24.392785 + ], + [ + 60.218241, + 24.392842 + ], + [ + 60.218227, + 24.393013 + ], + [ + 60.218187, + 24.393 + ], + [ + 60.218173, + 24.393175 + ], + [ + 60.218215, + 24.393189 + ], + [ + 60.218208, + 24.393275 + ], + [ + 60.218221, + 24.393279 + ], + [ + 60.218219, + 24.393301 + ], + [ + 60.218233, + 24.393306 + ] + ], + "type": "building" + }, + { + "id": "dept:architecture", + "name_en": "Department of Architecture", + "name_fi": "Arkkitehtuurin laitos", + "name_sv": "Institutionen f\u00f6r arkitektur", + "parents": [ + "vare", + "ARTS", + "A" + ], + "type": "department", + "url": "http://architecture.aalto.fi/", + "url_en": "http://architecture.aalto.fi/en/" + }, + { + "children": [ + "medialab" + ], + "id": "dept:artmedia", + "name_en": "Department of Art and Media", + "name_fi": "Taiteen ja median laitos", + "name_sv": "Institutionen f\u00f6r konst och media", + "parents": [ + "vare", + "ARTS" + ], + "type": "department", + "url_en": "https://www.aalto.fi/en/department-of-art-and-media", + "url_fi": "https://www.aalto.fi/fi/taiteen-ja-median-laitos" + }, + { + "id": "dept:design", + "name_en": "Department of Design", + "name_fi": "Muotoilun laitos", + "name_sv": "Institutionen f\u00f6r design", + "parents": [ + "vare", + "ARTS" + ], + "type": "department", + "url": "http://design.aalto.fi/", + "url_en": "http://design.aalto.fi/en/" + }, + { + "aliases": [ + "ELO" + ], + "id": "dept:film", + "name_en": "Department of Film, Television and Scenography", + "name_fi": "Elokuvataiteen ja lavastustaiteen laitos", + "name_sv": "Institutionen f\u00f6r filmkonst och scenografi", + "parents": [ + "vare", + "ARTS" + ], + "type": "department", + "url": "http://elo.aalto.fi/", + "url_en": "http://elo.aalto.fi/en/" + }, + { + "id": "dept:pupa", + "name_en": "Pori Urban Platform (PUPA)", + "name_fi": "Porin yliopistokeskus (PUPA)", + "type": "department", + "url_en": "http://taide.aalto.fi/en/pori/", + "url_fi": "http://taide.aalto.fi/fi/pori/" + }, + { + "id": "dept:accounting", + "name_en": "Department of Accounting", + "name_fi": "Laskentatoimen laitos", + "parents": [ + "R068", + "BIZ" + ], + "type": "department", + "url_en": "http://accounting.aalto.fi/en/", + "url_fi": "accounting.aalto.fi/fi/" + }, + { + "id": "dept:economics", + "name_en": "Department of Economics", + "name_fi": "Taloustieteen laitos", + "note": "Department located on Arabia campus, Helsinki.", + "parents": [ + "R068", + "BIZ" + ], + "type": "department", + "url_en": "http://economics.aalto.fi/en/", + "url_fi": "http://economics.aalto.fi/fi/" + }, + { + "id": "dept:finance", + "name_en": "Department of Finance", + "name_fi": "Rahoituksen laitos", + "parents": [ + "R068", + "BIZ" + ], + "type": "department", + "url_en": "http://finance.aalto.fi/en/", + "url_fi": "http://finance.aalto.fi/fi/" + }, + { + "id": "dept:infosrv", + "name_en": "Department of Information and Service Economy", + "name_fi": "Tieto- ja palvelutalouden laitos", + "parents": [ + "R068", + "BIZ" + ], + "type": "department", + "url_en": "http://information.aalto.fi/en/", + "url_fi": "http://information.aalto.fi/fi/" + }, + { + "id": "dept:management", + "name_en": "Department of Management", + "name_fi": "Johtamisen laitos", + "parents": [ + "R068", + "BIZ" + ], + "type": "department", + "url_en": "http://management.aalto.fi/en/", + "url_fi": "http://management.aalto.fi/fi" + }, + { + "id": "dept:marketing", + "name_en": "Department of Marketing", + "name_fi": "Markkinoinnin laitos", + "parents": [ + "R068", + "BIZ" + ], + "type": "department", + "url_en": null, + "url_fi": null + }, + { + "id": "dept:cmet", + "name_en": "Department of Chemical and Metallurgical Engineering", + "name_fi": "Kemian tekniikan ja metallurgian laitos", + "parents": [ + "r011", + "CHEM" + ], + "type": "department", + "url_en": "http://cmet.aalto.fi/en/", + "url_fi": "http://cmet.aalto.fi/fi/" + }, + { + "aliases": [ + "CMAT" + ], + "id": "dept:cmat", + "name_en": "Department of Chemistry and Materials Science", + "name_fi": "Kemian ja materiaalitieteen laitos", + "name_sv": "Institutionen f\u00f6r materialteknik", + "parents": [ + "r011", + "micronova", + "CHEM" + ], + "type": "department", + "url_en": "http://cmat.aalto.fi/en/", + "url_fi": "http://cmat.aalto.fi/fi/" + }, + { + "aliases": [ + "Bio2" + ], + "id": "dept:bio", + "name_en": "Department of Bioproducts and Biosystems", + "name_fi": "Biotuotteiden ja biotekniikan laitos", + "name_sv": "Institutionen f\u00f6r bio- och kemiteknik", + "parents": [ + "r013", + "CHEM" + ], + "type": "department" + }, + { + "id": "dept:eea", + "name_en": "Department of Electrical Engineering and Automation", + "name_fi": "S\u00e4hk\u00f6tekniikan ja automaation laitos", + "name_sv": "Instititutionen f\u00f6r elektroteknik och automation", + "parents": [ + "tuas", + "F", + "agrid", + "micronova", + "ELEC" + ], + "type": "department", + "url_en": "http://eea.aalto.fi/en/", + "url_fi": "http://eea.aalto.fi/fi/" + }, + { + "id": "dept:ele", + "name_en": "Department of Electronics and Nanoengineering", + "name_fi": "Elektroniikan ja nanotekniikan laitos", + "name_sv": "Institutionen f\u00f6r elektronik och nanoteknik", + "parents": [ + "micronova", + "tuas", + "ELEC" + ], + "type": "department", + "url_en": "http://ele.aalto.fi/en/", + "url_fi": "http://ele.aalto.fi/fi/" + }, + { + "id": "dept:dice", + "name_en": "Information and Communications Engineering", + "name_fi": "Informaatio- ja tietoliikennetekniikan laitos", + "parents": [ + "agrid", + "kide", + "ELEC" + ], + "type": "department", + "url_en": "https://dice.aalto.fi/en/", + "url_fi": "https://dice.aalto.fi/fi/" + }, + { + "id": "dept:mecheng", + "name_en": "Department of Mechanical Engineering", + "name_fi": "Konetekniikan laitos", + "parents": [ + "K1", + "K2", + "K3", + "K4", + "r016", + "ENG" + ], + "type": "department", + "url_en": "http://mecheng.aalto.fi/en/", + "url_fi": "http://mecheng.aalto.fi/fi/" + }, + { + "id": "dept:civileng", + "name_en": "Department of Civil Engineering", + "name_fi": "Rakennustekniikan laitos", + "parents": [ + "r002", + "ENG" + ], + "type": "department", + "url_en": "http://civileng.aalto.fi/en/", + "url_fi": "http://civileng.aalto.fi/fi/" + }, + { + "id": "dept:builtenv", + "name_en": "Department of Built Environment", + "name_fi": "Rakennetun ymp\u00e4rist\u00f6n laitos", + "parents": [ + "K1", + "r016", + "ENG" + ], + "type": "department", + "url_en": "http://builtenv.aalto.fi/en/", + "url_fi": "http://builtenv.aalto.fi/fi/" + }, + { + "id": "dept:physics", + "name_en": "Department of Applied Physics", + "name_fi": "Teknillisen fysiikan laitos", + "name_sv": "Institutionen f\u00f6r teknisk fysik", + "parents": [ + "main", + "micronova", + "nanotalo", + "kide", + "SCI" + ], + "type": "department", + "url_en": "http://physics.aalto.fi/en/", + "url_fi": "http://physics.aalto.fi/" + }, + { + "aliases": [ + "CS" + ], + "children": [ + "unit:hiit" + ], + "id": "dept:cs", + "name_en": "Department of Computer Science", + "name_fi": "Tietotekniikan laitos", + "name_sv": "Institutionen f\u00f6r datateknik", + "parents": [ + "T", + "SCI" + ], + "type": "department", + "url_en": "http://cs.aalto.fi/en/", + "url_fi": "http://cs.aalto.fi/fi/" + }, + { + "id": "dept:tuta", + "name_en": "Department of Industrial Engineering and Management", + "name_fi": "Tuotantotalouden laitos", + "name_sv": "Institutionen f\u00f6r produktionsekonomi", + "parents": [ + "tuas", + "SCI" + ], + "type": "department", + "url_en": "http://tuta.aalto.fi/en/", + "url_fi": "http://tuta.aalto.fi/fi/" + }, + { + "id": "dept:math", + "name_en": "Department of Mathematics and Systems Analysis", + "name_fi": "Matematiikan ja systeemianalyysin laitos", + "name_sv": "Institutionen f\u00f6r matematik och systemanlys", + "note": "M wing (Y entrance closest), 2nd-3rd floors", + "parents": [ + "main", + "SCI" + ], + "type": "department", + "url_en": "http://math.aalto.fi/en/", + "url_fi": "http://math.aalto.fi/fi/" + }, + { + "id": "dept:nbe", + "name_en": "Department of Neuroscience and Biomedical Engineering", + "name_fi": "Neurotieteen ja l\u00e4\u00e4ketieteellisen tekniikan laitos", + "name_sv": "Institutionen f\u00f6r neurovetenskap och biomedicinsk teknik", + "note": "Rakentajanaukio 2 C entrance only, 2nd-3rd floors", + "parents": [ + "F", + "SCI" + ], + "type": "department", + "url_en": "http://nbe.aalto.fi/en/", + "url_fi": "http://nbe.aalto.fi/fi/" + }, + { + "id": "itservices", + "name": "IT Services", + "parents": [ + "main", + "U" + ], + "type": "unit" + }, + { + "id": "acousticslab", + "latlon": [ + 60.1887, + 24.8313 + ], + "name": "Acoustics Laboratory", + "parents": [ + "agrid" + ], + "type": "unit", + "url": "http://acousticslab.aalto.fi/en/" + }, + { + "floor": 2, + "id": "agrid-tapaus", + "name": "Tapaus", + "parents": [ + "agrid", + "agrid-CN" + ], + "type": "unit", + "url": "https://www.tapaus.fi/" + }, + { + "floor": 3, + "id": "agrid-agridimpact", + "name": "A Grid Impact", + "parents": [ + "agrid", + "agrid-CN" + ], + "type": "unit" + }, + { + "aliases": [ + "UNTIL" + ], + "floor": 1, + "id": "agrid-until", + "name": "United Nations Technology Innovanion Labs", + "parents": [ + "agrid", + "agrid-CN" + ], + "type": "unit" + }, + { + "id": "agrid-startupcenter", + "name": "Aalto Start-up center", + "parents": [ + "agrid", + "agrid-CS" + ], + "type": "unit", + "url": "https://startupcenter.aalto.fi/" + }, + { + "aliases": [ + "ESA" + ], + "floor": 3, + "id": "agrid-esa", + "name": "European Space Agency", + "parents": [ + "agrid", + "agrid-CS" + ], + "type": "unit" + }, + { + "floor": 2, + "id": "ami-center", + "name": "AMI-Centre", + "parents": [ + "agrid", + "agrid-I" + ], + "type": "unit", + "url": "http://ani.aalto.fi/en/ami_centre/" + }, + { + "floor": 4, + "id": "ami-center", + "name": "Aalto TMS", + "parents": [ + "agrid", + "agrid-I" + ], + "type": "unit", + "url": "http://ani.aalto.fi/en/ami_centre/" + }, + { + "floor": 4, + "id": "ami-center", + "name": "Aalto Behavorial Laboratory", + "parents": [ + "agrid", + "agrid-I" + ], + "type": "unit", + "url": "http://ani.aalto.fi/en/ami_centre/" + }, + { + "address": "Puumiehenkuja 5 A", + "aliases": [ + "ADF" + ], + "id": "designfactory", + "latlon": [ + 60.187948, + 24.824377 + ], + "name": "Aalto Design Factory", + "osm_elements": [ + [ + "node", + "11107521668" + ] + ], + "parents": [ + "K3" + ], + "type": "unit", + "url": "https://designfactory.aalto.fi/" + }, + { + "id": "startupsauna", + "name": "Startup Sauna", + "parents": [ + "K3" + ], + "type": "unit" + }, + { + "id": "nanofab", + "name": "Nanofab", + "parents": [ + "micronova" + ], + "type": "unit" + }, + { + "id": "aaltoventuresprogram", + "name": "Aalto Ventures Program", + "parents": [ + "tuas" + ], + "type": "unit" + }, + { + "id": "itservicedesks", + "name": "IT Service Desks", + "name_fi": "IT K\u00e4ytt\u00e4j\u00e4palvelut", + "parents": [ + "servicedesk_kandi", + "servicedesk_vare" + ], + "type": "unit", + "url": "https://www.aalto.fi/en/services/it-service-desk-contact-information-and-service-hours" + }, + { + "id": "medialab", + "name": "Aalto Media Lab", + "parents": [ + "vare", + "dept:artmedia" + ], + "type": "unit" + }, + { + "aliases": [ + "Aalto EE" + ], + "id": "unit:aaltoee", + "name_en": "Aalto University Executive Education", + "parents": [ + "domusgadium", + "BIZ" + ], + "type": "unit", + "url": "http://www.aaltoee.com/" + }, + { + "aliases": [ + "CKIR" + ], + "id": "unit:cikr", + "name_en": "Center for Knowledge and Innovation Research", + "name_fi": "Tiedon ja innovaatioiden tutkimuskeskus", + "parents": [ + "R068", + "BIZ" + ], + "type": "unit", + "url_en": "http://ckir.aalto.fi/en/", + "url_fi": "http://ckir.aalto.fi/fi/" + }, + { + "id": "unit:mikkeli", + "name_en": "Mikkeli Campus", + "name_fi": "Mikkelin yksikk\u00f6", + "parents": [ + "BIZ" + ], + "type": "unit", + "url_en": "http://biz.aalto.fi/en/studies/mikkeli/", + "url_fi": "http://biz.aalto.fi/fi/studies/mikkeli/" + }, + { + "aliases": [ + "Micronova" + ], + "id": "unit:nanofab", + "name": "Aalto Nanofab", + "parents": [ + "micronova", + "ELEC" + ], + "type": "unit", + "url": "http://www.micronova.fi/" + }, + { + "id": "unit:metsahovi", + "name_en": "Mets\u00e4hovi Radio Observatory", + "name_fi": "Mets\u00e4hovin radiotutkimusasema", + "name_sv": "Skogg\u00e5rd radioforskningsinstitut", + "parents": [ + "metsahovi", + "ELEC" + ], + "type": "unit", + "url_en": "http://metsahovi.aalto.fi/en/", + "url_fi": "http://metsahovi.aalto.fi/fi/" + }, + { + "aliases": [ + "HIIT" + ], + "id": "unit:hiit", + "name_en": "Helsinki Institute for Information Technology", + "name_fi": "Tietotekniikan tutkimuslaitos", + "name_sv": "Forskningsinstitutet f\u00f6r informationsteknologi", + "parents": [ + "T", + "dept:cs" + ], + "type": "unit", + "url_en": "http://www.hiit.fi/" + }, + { + "id": "otanano", + "name": "OtaNano", + "parents": [ + "nanotalo", + "micronova" + ], + "type": "unit", + "url": "https://otanano.fi" + }, + { + "address": "Vuorimiehentie 2 A", + "id": "space21", + "latlon": [ + 60.18279, + 24.825633 + ], + "name": "Space 21", + "opening_hours": "24/7", + "osm_elements": [ + [ + "node", + "9569447991" + ] + ], + "parents": [ + "r012" + ], + "type": "service" + }, + { + "aliases": [ + "ATM" + ], + "id": "r020-atm", + "latlon": [ + 60.184099, + 24.830737 + ], + "name": "Nosto", + "opening_hours": "24/7", + "osm_elements": [ + [ + "node", + "263964909" + ] + ], + "parents": [ + "r020" + ], + "type": "service" + }, + { + "id": "shortcut", + "latlon": [ + 60.184047, + 24.830887 + ], + "name": "Shortcut", + "opening_hours": "Mo-Fr 09:00-20:00; Sa 09:00-17:00", + "osm_elements": [ + [ + "node", + "8912114264" + ] + ], + "parents": [ + "r020" + ], + "type": "service" + }, + { + "id": "pukupesu", + "latlon": [ + 60.183997, + 24.830957 + ], + "name": "Puku Pesu", + "osm_elements": [ + [ + "node", + "9044279913" + ] + ], + "parents": [ + "r020" + ], + "type": "service" + }, + { + "address": "Otakaari 27", + "id": "tapiolan-juhlapuku", + "latlon": [ + 60.183947, + 24.831027 + ], + "name": "Tapiolan juhlapuku", + "osm_elements": [ + [ + "node", + "9044279914" + ] + ], + "parents": [ + "r020" + ], + "type": "service" + }, + { + "id": "library_cs", + "latlon": [ + 60.187022, + 24.821072 + ], + "name": "Learning Hub Greenhouse", + "opening_hours": "Mo-Th 08:00-19:45; Fr 08:00-17:45; Jun-Aug 08:00-15:30; PH off", + "osm_elements": [ + [ + "node", + "5012868057" + ] + ], + "parents": [ + "T" + ], + "type": "service" + }, + { + "id": "tuas-s\u00e4hk\u00f6paja", + "latlon": [ + 60.187306, + 24.819425 + ], + "name": "S\u00e4hk\u00f6paja", + "osm_elements": [ + [ + "node", + "6817211766" + ] + ], + "parents": [ + "tuas" + ], + "type": "service" + }, + { + "address": "Otaniementie 12", + "id": "abloc-rkioski", + "latlon": [ + 60.184778, + 24.825563 + ], + "name": "R-Kioski", + "opening_hours": "Mo-Fr 06:30-20:00; Sa 09:00-20:00", + "osm_elements": [ + [ + "node", + "5870791841" + ] + ], + "parents": [ + "abloc" + ], + "type": "service" + }, + { + "address": "Otaniementie 12", + "id": "alko", + "latlon": [ + 60.184994, + 24.82502 + ], + "name": "Alko", + "opening_hours": "Mo-Sa 11:00-18:00", + "osm_elements": [ + [ + "node", + "5870791844" + ] + ], + "parents": [ + "abloc" + ], + "type": "service" + }, + { + "address": "Otaniementie 12", + "aliases": [ + "Pharmacy" + ], + "id": "abloc-apteekki", + "latlon": [ + 60.185036, + 24.82496 + ], + "name": "Otaniemen sivuapteekki", + "opening_hours": "Mo-Fr 10:00-20:00; Sa 10:00-18:00", + "osm_elements": [ + [ + "node", + "5870791853" + ] + ], + "parents": [ + "abloc" + ], + "type": "service" + }, + { + "id": "convroom", + "latlon": [ + 60.186081, + 24.830833 + ], + "name": "Keskustelutila", + "osm_elements": [ + [ + "way", + 515942280 + ] + ], + "outline": [ + [ + 60.1861, + 24.830852 + ], + [ + 60.186063, + 24.830873 + ], + [ + 60.186054, + 24.830805 + ], + [ + 60.18609, + 24.830784 + ], + [ + 60.1861, + 24.830852 + ] + ], + "type": "service" + }, + { + "aliases": [ + "Otto-automaatti", + "Pankkiautomaatti", + "Automated teller machine" + ], + "id": "abloc-atm-otto", + "latlon": [ + 60.18501, + 24.825235 + ], + "name": "ATM", + "osm_elements": [ + [ + "node", + "5871819587" + ] + ], + "parents": [ + "abloc" + ], + "type": "service" + }, + { + "address": "Otakaari 11", + "aliases": [ + "AYY keskustoimisto", + "Keto" + ], + "id": "AYY-servicepoint", + "latlon": [ + 60.184617, + 24.830426 + ], + "name": "AYY J\u00e4senpalvelupisteet", + "name_en": "AYY service point", + "opening_hours": "Mo,We,Fr 12:00-15:00; 10:00-16:00 \"First weekday of each month\"", + "osm_elements": [ + [ + "node", + "263978267" + ] + ], + "parents": [ + "r038" + ], + "type": "service" + }, + { + "id": "secureprint", + "name": "All printers (secureprint)", + "parents": [ + "T-printer-5104046531", + "T-printer-5105524124", + "T-printer-5105524125", + "F-printer-5113813894", + "r011-printer-5130529215", + "main-printer-5131418798", + "maari-printer-5171375890", + "nanotalo-printer-5171375893", + "K1-printer-5232638597", + "r002-printer-5232638615", + "kirjasto-printer-5120785982", + "tuas-printer-5105524127", + "tuas-printer-5105524126", + "maari-printer-5171375891", + "kirjasto-printer-5120785976", + "agrid-printer-5389688266", + "agrid-printer-5389688267", + "main-printer-5113813861" + ], + "type": "service" + }, + { + "aliases": [ + "CS-IT", + "Aalto Scientific Computing", + "ASC" + ], + "floor": 2, + "id": "cs-it", + "latlon": [ + 60.18691, + 24.82092 + ], + "name": "Computer Science IT", + "note": "Room A243. Access is possible from the atrium area, bridges on the second floor.\n", + "parents": [ + "T" + ], + "type": "service" + }, + { + "id": "elepaja", + "name": "Elepaja", + "parents": [ + "agrid" + ], + "type": "service", + "url": "https://elepaja.aalto.fi" + }, + { + "address": "Room U133a", + "children": [ + "itservicedesks" + ], + "id": "servicedesk_kandi", + "latlon": [ + 60.18692, + 24.82891 + ], + "name": "IT Service Desk Kandi", + "opening_hours": "Mo-We 09:00-11:00, 12:00-15:00; Th-Fr 09:00-11:00, 12:00-14:00", + "parents": [ + "main" + ], + "type": "service", + "url": "https://www.aalto.fi/en/services/it-service-desk-contact-information-and-service-hours" + }, + { + "address": "Room R101", + "children": [ + "itservicedesks" + ], + "floor": 1, + "id": "servicedesk_vare", + "latlon": [ + 60.18557, + 24.82412 + ], + "name": "IT Service Desk V\u00e4re", + "opening_hours": "Mo-We 09:00-11:00, 12:00-15:00", + "parents": [ + "vare" + ], + "type": "service", + "url": "https://www.aalto.fi/en/services/it-service-desk-contact-information-and-service-hours" + }, + { + "aliases": [ + "Tram", + "Tram 13", + "Line 13" + ], + "id": "lightrail", + "latlon": [ + 60.184421, + 24.827302 + ], + "name": "Light Rail", + "name_fi": "Pikaraitio", + "name_sv": "Snabbsp\u00e5rv\u00e4gs", + "osm_elements": [ + [ + "node", + "9574731673" + ] + ], + "type": "service" + }, + { + "aliases": [ + "Mail box" + ], + "id": "vare-postbox", + "latlon": [ + 60.184707, + 24.824761 + ], + "name": "Postilaatikko", + "name_en": "Post box", + "note": "Collection times Mo-Fr 16:00", + "osm_elements": [ + [ + "node", + "11430420741" + ] + ], + "type": "service" + }, + { + "floor": 1, + "id": "T-printer-5104046531", + "latlon": [ + 60.187055, + 24.821137 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "note": "In Learning Hub", + "osm_elements": [ + [ + "node", + "5104046531" + ] + ], + "parents": [ + "T", + "secureprint" + ], + "type": "service" + }, + { + "floor": 2, + "id": "T-printer-5105524124", + "latlon": [ + 60.18698, + 24.821911 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5105524124" + ] + ], + "parents": [ + "T", + "secureprint" + ], + "type": "service" + }, + { + "floor": 2, + "id": "T-printer-5105524125", + "latlon": [ + 60.18698, + 24.820516 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5105524125" + ] + ], + "parents": [ + "T", + "secureprint" + ], + "type": "service" + }, + { + "floor": 1, + "id": "F-printer-5113813894", + "latlon": [ + 60.188296, + 24.829888 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "note": "Main lobby", + "osm_elements": [ + [ + "node", + "5113813894" + ] + ], + "parents": [ + "F", + "secureprint" + ], + "type": "service" + }, + { + "floor": 2, + "id": "r011-printer-5130529215", + "latlon": [ + 60.183585, + 24.824154 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5130529215" + ] + ], + "parents": [ + "r011", + "secureprint" + ], + "type": "service" + }, + { + "floor": -1, + "id": "main-printer-5131418798", + "latlon": [ + 60.186135, + 24.830179 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5131418798" + ] + ], + "parents": [ + "main", + "secureprint" + ], + "type": "service" + }, + { + "floor": 3, + "id": "maari-printer-5171375890", + "latlon": [ + 60.189415, + 24.825909 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5171375890" + ] + ], + "parents": [ + "maari", + "secureprint" + ], + "type": "service" + }, + { + "floor": 1, + "id": "nanotalo-printer-5171375893", + "latlon": [ + 60.18697, + 24.825429 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5171375893" + ] + ], + "parents": [ + "nanotalo", + "secureprint" + ], + "type": "service" + }, + { + "floor": 1, + "id": "K1-printer-5232638597", + "latlon": [ + 60.187115, + 24.827102 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5232638597" + ] + ], + "parents": [ + "K1", + "secureprint" + ], + "type": "service" + }, + { + "floor": 2, + "id": "r002-printer-5232638615", + "latlon": [ + 60.186876, + 24.831115 + ], + "name": "Printer (secureprint)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5232638615" + ] + ], + "parents": [ + "r002", + "secureprint" + ], + "type": "service" + }, + { + "floor": 1, + "id": "kirjasto-printer-5120785982", + "latlon": [ + 60.185019, + 24.827531 + ], + "name": "Printer (secureprint) 105b", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5120785982" + ] + ], + "parents": [ + "kirjasto", + "secureprint" + ], + "ref": "105b", + "type": "service" + }, + { + "floor": 1, + "id": "tuas-printer-5105524127", + "latlon": [ + 60.187098, + 24.818379 + ], + "name": "Printer (secureprint) 1177", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5105524127" + ] + ], + "parents": [ + "tuas", + "secureprint" + ], + "ref": "1177", + "type": "service" + }, + { + "floor": 1, + "id": "tuas-printer-5105524126", + "latlon": [ + 60.187177, + 24.819234 + ], + "name": "Printer (secureprint) 1621", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5105524126" + ] + ], + "parents": [ + "tuas", + "secureprint" + ], + "ref": "1621", + "type": "service" + }, + { + "floor": 1, + "id": "maari-printer-5171375891", + "latlon": [ + 60.189459, + 24.825959 + ], + "name": "Printer (secureprint) 169", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5171375891" + ] + ], + "parents": [ + "maari", + "secureprint" + ], + "ref": "169", + "type": "service" + }, + { + "floor": 2, + "id": "kirjasto-printer-5120785976", + "latlon": [ + 60.184783, + 24.82798 + ], + "name": "Printer (secureprint) 212a", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5120785976" + ] + ], + "parents": [ + "kirjasto", + "secureprint" + ], + "ref": "212a", + "type": "service" + }, + { + "floor": 2, + "id": "agrid-printer-5389688266", + "latlon": [ + 60.18902, + 24.830973 + ], + "name": "Printer (secureprint) D", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5389688266" + ] + ], + "parents": [ + "agrid", + "secureprint" + ], + "ref": "D", + "type": "service" + }, + { + "floor": 3, + "id": "agrid-printer-5389688267", + "latlon": [ + 60.189039, + 24.830956 + ], + "name": "Printer (secureprint) D", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5389688267" + ] + ], + "parents": [ + "agrid", + "secureprint" + ], + "ref": "D", + "type": "service" + }, + { + "floor": 1, + "id": "main-printer-5113813861", + "latlon": [ + 60.186929, + 24.828297 + ], + "name": "Printer (secureprint) U114b", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5113813861" + ] + ], + "parents": [ + "main", + "secureprint" + ], + "ref": "U114b", + "type": "service" + }, + { + "id": "startingpoint", + "latlon": [ + 60.18655, + 24.8287 + ], + "name": "Starting Point", + "opening_hours": "Mo-Fr 11:00-13:00; PH off", + "parents": [ + "main" + ], + "ref": "Y199a", + "type": "service" + }, + { + "id": "studentservices", + "name": "Student services", + "parents": [ + "main" + ], + "type": "service" + }, + { + "aliases": [ + "Taksi" + ], + "id": "taxi-metro", + "latlon": [ + 60.18432, + 24.827134 + ], + "name": "Taxi", + "note": "Usually you will call for one instead. L\u00e4hitaksi phone=0100 7300", + "osm_elements": [ + [ + "node", + "5020264820" + ] + ], + "type": "service" + }, + { + "id": "terveystalo", + "latlon": [ + 60.184267, + 24.830751 + ], + "name": "Terveystalo Otaniemi", + "opening_hours": "Mo-Th 08:00-16:00, Fr 08:00-14:00", + "osm_elements": [ + [ + "node", + "9044279912" + ] + ], + "parents": [ + "abloc" + ], + "type": "service" + }, + { + "id": "tervystalo-ablanc", + "latlon": [ + 60.184267, + 24.830751 + ], + "name": "Tervystalo A-blanc", + "opening_hours": "Mo-Th 08:00-16:00, Fr 08:00-14:00", + "osm_elements": [ + [ + "node", + "9044279912" + ] + ], + "parents": [ + "r020" + ], + "type": "service" + }, + { + "id": "unisport", + "name": "Unisport", + "parents": [ + "r028" + ], + "type": "service" + }, + { + "address": "Otakaari 1", + "id": "alvari", + "latlon": [ + 60.1856, + 24.827006 + ], + "name": "Alvari", + "opening_hours": "Mo-Th 10:45-17:15; Fr 10:45-15:00; PH off", + "osm_elements": [ + [ + "node", + "301814516" + ] + ], + "parents": [ + "main" + ], + "type": "restaurant" + }, + { + "id": "studenthub", + "latlon": [ + 60.186559, + 24.828316 + ], + "name": "Opiskelija Hub", + "name_en": "Student Hub", + "name_sv": "Studenthubb", + "osm_elements": [ + [ + "way", + 514232691 + ] + ], + "outline": [ + [ + 60.186737, + 24.828303 + ], + [ + 60.186692, + 24.828586 + ], + [ + 60.186292, + 24.828334 + ], + [ + 60.186335, + 24.828053 + ], + [ + 60.186737, + 24.828303 + ] + ], + "parents": [ + "main" + ], + "type": "location" + }, + { + "id": "factory", + "latlon": [ + 60.188863, + 24.831998 + ], + "name": "Factory", + "opening_hours": "Mo-Fr 10:30-14:00", + "osm_elements": [ + [ + "node", + "5012868028" + ] + ], + "parents": [ + "agrid" + ], + "type": "restaurant" + }, + { + "id": "agrid-havajava", + "latlon": [ + 60.189028, + 24.830588 + ], + "name": "Hav a Java", + "opening_hours": "Mo-Fr 08:00-16:00; PH off", + "osm_elements": [ + [ + "node", + "5389688275" + ] + ], + "parents": [ + "agrid" + ], + "type": "cafe" + }, + { + "address": "Otakaari 4", + "id": "sodexokone", + "latlon": [ + 60.187085, + 24.826558 + ], + "name": "Sodexo: Kone", + "opening_hours": "Mo-Fr 08:15-14:30; Mo-Fr 10:30-14:00 \"lunch\"; May 25-Aug 27 off; PH off", + "osm_elements": [ + [ + "node", + "589913032" + ] + ], + "parents": [ + "K1" + ], + "type": "restaurant" + }, + { + "address": "Vuorimiehentie 2", + "id": "tasteat", + "latlon": [ + 60.183083, + 24.825076 + ], + "name": "Tasteat", + "opening_hours": "Mo-Fr 10:30-14:00; PH off", + "osm_elements": [ + [ + "node", + "2381696675" + ] + ], + "parents": [ + "r012" + ], + "type": "restaurant" + }, + { + "id": "bakedbyeli", + "latlon": [ + 60.184712, + 24.827668 + ], + "name": "Baked by Eli", + "opening_hours": "Mo-Th 08:00-20:00; Fr 08:00-18:00; PH off", + "osm_elements": [ + [ + "node", + "5012868053" + ] + ], + "parents": [ + "kirjasto" + ], + "type": "cafe" + }, + { + "address": "Otaniementie 9", + "id": "aaltopahvi", + "latlon": [ + 60.184595, + 24.827675 + ], + "name": "Pahvi", + "opening_hours": "Mo 10:00-18:00; Tu-Th 10:00-17:00; PH 10:00-15:00; Fr 10:00-15:00", + "osm_elements": [ + [ + "node", + "6115098577" + ] + ], + "parents": [ + "kirjasto" + ], + "type": "shopping" + }, + { + "id": "carre", + "latlon": [ + 60.185045, + 24.832179 + ], + "name": "Cafe Carr\u00e9", + "opening_hours": "Mo-Fr 08:30-14:30; PH off", + "osm_elements": [ + [ + "node", + "5022009311" + ] + ], + "parents": [ + "dipoli" + ], + "type": "cafe" + }, + { + "id": "reima", + "latlon": [ + 60.185148, + 24.832466 + ], + "name": "Reima", + "opening_hours": "Mo-Fr 10:30-19:00 ; Sa 10:30-15:00; PH off", + "osm_elements": [ + [ + "node", + "5022009310" + ] + ], + "parents": [ + "dipoli" + ], + "type": "restaurant" + }, + { + "id": "tenhola", + "latlon": [ + 60.184817, + 24.832422 + ], + "name": "Tenhola", + "opening_hours": "Mo-Fr 16:00-22:00; Sa 11:00-15:00; PH off", + "osm_elements": [ + [ + "node", + "5022009278" + ] + ], + "parents": [ + "dipoli" + ], + "type": "cafe" + }, + { + "id": "metso", + "latlon": [ + 60.184979, + 24.831768 + ], + "name": "Metso", + "opening_hours": "Mo-Sa 11:00-22:00; PH off", + "osm_elements": [ + [ + "node", + "5022009279" + ] + ], + "parents": [ + "dipoli" + ], + "type": "restaurant" + }, + { + "id": "taproomd20", + "latlon": [ + 60.184303, + 24.830488 + ], + "name": "Taproom d20", + "opening_hours": "Tu-Th 16:00-22:00; Fr-Sa 16:00-23:15", + "osm_elements": [ + [ + "node", + "9738013085" + ] + ], + "parents": [ + "r020" + ], + "type": "restaurant" + }, + { + "address": "L\u00e4mp\u00f6miehenkuja 2", + "aliases": [ + "R022" + ], + "id": "r022", + "latlon": [ + 60.182108, + 24.83201 + ], + "name": "Kivimiehen koulu", + "osm_elements": [ + [ + "way", + 26608151 + ] + ], + "outline": [ + [ + 60.181645, + 24.832771 + ], + [ + 60.181581, + 24.832568 + ], + [ + 60.182035, + 24.831989 + ], + [ + 60.182017, + 24.831931 + ], + [ + 60.181995, + 24.831959 + ], + [ + 60.181968, + 24.831873 + ], + [ + 60.181854, + 24.832019 + ], + [ + 60.181798, + 24.831842 + ], + [ + 60.182273, + 24.831235 + ], + [ + 60.182323, + 24.831393 + ], + [ + 60.182297, + 24.831426 + ], + [ + 60.18232, + 24.831502 + ], + [ + 60.182447, + 24.83134 + ], + [ + 60.182503, + 24.831516 + ], + [ + 60.182283, + 24.831796 + ], + [ + 60.182251, + 24.831692 + ], + [ + 60.182281, + 24.831654 + ], + [ + 60.182267, + 24.83161 + ], + [ + 60.182065, + 24.831867 + ], + [ + 60.182121, + 24.832043 + ], + [ + 60.182174, + 24.832211 + ], + [ + 60.182337, + 24.832003 + ], + [ + 60.182432, + 24.832303 + ], + [ + 60.182363, + 24.832393 + ], + [ + 60.182101, + 24.832735 + ], + [ + 60.182002, + 24.832433 + ], + [ + 60.182127, + 24.832273 + ], + [ + 60.182101, + 24.83219 + ], + [ + 60.181973, + 24.832344 + ], + [ + 60.181761, + 24.832624 + ], + [ + 60.181645, + 24.832771 + ] + ], + "type": "otherbuilding" + }, + { + "address": "Otaranta 6", + "aliases": [ + "R028" + ], + "children": [ + "unisport" + ], + "id": "r028", + "latlon": [ + 60.184273, + 24.835179 + ], + "name": "Otahalli", + "opening_hours": "Mo-Th 06:45-23:15; Fr 06:45-22:15; Sa 09:45-19:15; Su 09:45-22:15", + "osm_elements": [ + [ + "way", + 4259272 + ] + ], + "outline": [ + [ + 60.184508, + 24.83522 + ], + [ + 60.184605, + 24.835217 + ], + [ + 60.184609, + 24.835697 + ], + [ + 60.184517, + 24.835699 + ], + [ + 60.184458, + 24.835701 + ], + [ + 60.184459, + 24.835786 + ], + [ + 60.184082, + 24.835797 + ], + [ + 60.184082, + 24.835718 + ], + [ + 60.183909, + 24.835723 + ], + [ + 60.183908, + 24.835543 + ], + [ + 60.183812, + 24.835545 + ], + [ + 60.183811, + 24.835481 + ], + [ + 60.183798, + 24.835481 + ], + [ + 60.183797, + 24.835371 + ], + [ + 60.183832, + 24.83537 + ], + [ + 60.18383, + 24.835173 + ], + [ + 60.184037, + 24.835167 + ], + [ + 60.184036, + 24.835128 + ], + [ + 60.184008, + 24.835128 + ], + [ + 60.184008, + 24.835101 + ], + [ + 60.183962, + 24.835102 + ], + [ + 60.183962, + 24.835049 + ], + [ + 60.183902, + 24.835051 + ], + [ + 60.183898, + 24.834389 + ], + [ + 60.184706, + 24.834368 + ], + [ + 60.184708, + 24.834551 + ], + [ + 60.184676, + 24.834552 + ], + [ + 60.184677, + 24.83471 + ], + [ + 60.18464, + 24.834712 + ], + [ + 60.184641, + 24.83477 + ], + [ + 60.184613, + 24.83477 + ], + [ + 60.184615, + 24.835026 + ], + [ + 60.184578, + 24.835027 + ], + [ + 60.184578, + 24.83508 + ], + [ + 60.184547, + 24.835081 + ], + [ + 60.184547, + 24.835156 + ], + [ + 60.184507, + 24.835158 + ], + [ + 60.184508, + 24.83522 + ] + ], + "type": "auxbuilding" + }, + { + "id": "subway_cs", + "latlon": [ + 60.187006, + 24.821401 + ], + "name": "Subway", + "opening_hours": "Mo-Th 10:00-19:30; Fr 10:00-17:30; Sa 11:00-18:00; Jun 5-Aug 13 Mo-Fr 10:30-15:30; PH off", + "osm_elements": [ + [ + "node", + "3575222399" + ] + ], + "parents": [ + "T" + ], + "type": "restaurant" + }, + { + "id": "oih_cafe", + "latlon": [ + 60.187291, + 24.816254 + ], + "name": "OIH Kahvilla", + "opening_hours": "Mo-Fr 09:30-15:00; Mo-Fr 11:00-14:00 \"lunch\"; PH off", + "osm_elements": [ + [ + "node", + "5012868059" + ] + ], + "parents": [ + "oih" + ], + "type": "cafe" + }, + { + "address": "Tietotie 1", + "id": "fatlizard", + "latlon": [ + 60.185575, + 24.820403 + ], + "name": "Ravintola Fat Lizard", + "opening_hours": "Su-Tu 10:30-24:00; We-Th 10:30-01:00; Fr-Sa 10:30-04:00", + "osm_elements": [ + [ + "node", + "5323641949" + ] + ], + "parents": [ + "r034" + ], + "type": "restaurant" + }, + { + "address": "Tietotie 3", + "id": "maukas-nova", + "latlon": [ + 60.184871, + 24.818228 + ], + "name": "Nova Mau-kas", + "note": "No student discounts", + "opening_hours": "Mo-Fr 08:00-15:00", + "osm_elements": [ + [ + "node", + "5081929842" + ] + ], + "parents": [ + "micronova" + ], + "type": "restaurant" + }, + { + "id": "amicatuas", + "latlon": [ + 60.187188, + 24.819812 + ], + "name": "Fazer Food & Co: TUAS", + "opening_hours": "Mo-Th 07:45-15:00; Fr 07:45-14:00; Mo-Th 10:30-15:00 \"lunch\"; Fr 10:30-14:00 \"lunch\"; PH off", + "osm_elements": [ + [ + "node", + "580706218" + ] + ], + "parents": [ + "tuas" + ], + "type": "restaurant" + }, + { + "id": "panimo", + "latlon": [ + 60.182867, + 24.829705 + ], + "osm_elements": [ + [ + "node", + "6583558878" + ] + ], + "parents": [ + "r039" + ], + "type": "restaurant" + }, + { + "address": "Otaranta 4", + "aliases": [ + "R041" + ], + "id": "r041", + "latlon": [ + 60.184441, + 24.836446 + ], + "lore": "This is basically a long-term residence for Aalto-affiliated visitors. Booking through your departments.", + "name": "Inn", + "osm_elements": [ + [ + "way", + 181643549 + ] + ], + "outline": [ + [ + 60.18448, + 24.836135 + ], + [ + 60.184481, + 24.836232 + ], + [ + 60.184443, + 24.836235 + ], + [ + 60.184489, + 24.837226 + ], + [ + 60.184491, + 24.83727 + ], + [ + 60.184355, + 24.837283 + ], + [ + 60.184294, + 24.836147 + ], + [ + 60.184435, + 24.836142 + ], + [ + 60.184441, + 24.836206 + ], + [ + 60.184453, + 24.836204 + ], + [ + 60.184453, + 24.836138 + ], + [ + 60.18448, + 24.836135 + ] + ], + "type": "auxbuilding" + }, + { + "address": "J\u00e4mer\u00e4ntaival 8", + "aliases": [ + "R043" + ], + "id": "chappel", + "latlon": [ + 60.189397, + 24.83732 + ], + "name": "Otaniemen kappeli", + "name_en": "Otaniemi Chapel", + "name_sv": "Otn\u00e4s kapell", + "osm_elements": [ + [ + "way", + 4266572 + ] + ], + "outline": [ + [ + 60.189452, + 24.837384 + ], + [ + 60.189479, + 24.837397 + ], + [ + 60.18947, + 24.83746 + ], + [ + 60.189442, + 24.837442 + ], + [ + 60.189245, + 24.837328 + ], + [ + 60.189254, + 24.83727 + ], + [ + 60.189287, + 24.83705 + ], + [ + 60.189488, + 24.837169 + ], + [ + 60.189452, + 24.837384 + ] + ], + "type": "auxbuilding" + }, + { + "address": "J\u00e4mer\u00e4ntaival 4", + "aliases": [ + "Sm\u00f6kki", + "R044" + ], + "id": "servinmokki", + "latlon": [ + 60.188441, + 24.836588 + ], + "name": "Servin m\u00f6kki", + "osm_elements": [ + [ + "way", + 4259265 + ] + ], + "outline": [ + [ + 60.188309, + 24.836624 + ], + [ + 60.18818, + 24.836652 + ], + [ + 60.188176, + 24.836582 + ], + [ + 60.188174, + 24.836547 + ], + [ + 60.188252, + 24.836529 + ], + [ + 60.188241, + 24.83633 + ], + [ + 60.188537, + 24.836251 + ], + [ + 60.188547, + 24.836404 + ], + [ + 60.188585, + 24.836395 + ], + [ + 60.188593, + 24.836525 + ], + [ + 60.188672, + 24.836507 + ], + [ + 60.18868, + 24.836651 + ], + [ + 60.188599, + 24.836669 + ], + [ + 60.1886, + 24.836685 + ], + [ + 60.188579, + 24.83669 + ], + [ + 60.188578, + 24.836675 + ], + [ + 60.188503, + 24.836691 + ], + [ + 60.188502, + 24.836671 + ], + [ + 60.188455, + 24.836682 + ], + [ + 60.188456, + 24.8367 + ], + [ + 60.188446, + 24.836702 + ], + [ + 60.188446, + 24.836683 + ], + [ + 60.188376, + 24.836698 + ], + [ + 60.188369, + 24.836554 + ], + [ + 60.188306, + 24.836567 + ], + [ + 60.188309, + 24.836624 + ] + ], + "type": "auxbuilding" + }, + { + "address": "Vastaranta 1", + "aliases": [ + "Rantsu", + "R045" + ], + "id": "rantasauna", + "latlon": [ + 60.188194, + 24.839283 + ], + "name": "Rantasauna", + "osm_elements": [ + [ + "way", + 26139146 + ] + ], + "outline": [ + [ + 60.188187, + 24.839121 + ], + [ + 60.188302, + 24.83928 + ], + [ + 60.188358, + 24.839358 + ], + [ + 60.188302, + 24.83952 + ], + [ + 60.188284, + 24.839495 + ], + [ + 60.188275, + 24.839519 + ], + [ + 60.188235, + 24.839462 + ], + [ + 60.188229, + 24.839455 + ], + [ + 60.188232, + 24.839444 + ], + [ + 60.188171, + 24.83936 + ], + [ + 60.188165, + 24.839369 + ], + [ + 60.188121, + 24.839306 + ], + [ + 60.188138, + 24.839259 + ], + [ + 60.188145, + 24.839242 + ], + [ + 60.188138, + 24.839232 + ], + [ + 60.188133, + 24.839219 + ], + [ + 60.188131, + 24.839195 + ], + [ + 60.188132, + 24.839172 + ], + [ + 60.188138, + 24.839148 + ], + [ + 60.188149, + 24.83913 + ], + [ + 60.188162, + 24.839125 + ], + [ + 60.18817, + 24.839125 + ], + [ + 60.18818, + 24.839137 + ], + [ + 60.188187, + 24.839121 + ] + ], + "type": "auxbuilding" + }, + { + "address": "Otaranta 2", + "aliases": [ + "R056" + ], + "children": [ + "ravintolaranta" + ], + "id": "radisonblu", + "latlon": [ + 60.183841, + 24.836624 + ], + "name": "Radisson Blu Otaniemi", + "osm_elements": [ + [ + "way", + 4259289 + ] + ], + "outline": [ + [ + 60.184259, + 24.836338 + ], + [ + 60.184139, + 24.836364 + ], + [ + 60.184137, + 24.836476 + ], + [ + 60.183913, + 24.836497 + ], + [ + 60.183919, + 24.837376 + ], + [ + 60.183797, + 24.837377 + ], + [ + 60.183787, + 24.836574 + ], + [ + 60.183812, + 24.836571 + ], + [ + 60.183812, + 24.836512 + ], + [ + 60.183572, + 24.836534 + ], + [ + 60.183277, + 24.837101 + ], + [ + 60.183169, + 24.836915 + ], + [ + 60.183507, + 24.836212 + ], + [ + 60.184259, + 24.83617 + ], + [ + 60.184259, + 24.836338 + ] + ], + "type": "auxbuilding" + }, + { + "address": "Otaranta 2", + "id": "ravintolaranta", + "latlon": [ + 60.184009, + 24.836432 + ], + "name": "Ravintola Ranta", + "opening_hours": "PH,Mo-Su 07:30-23:00", + "osm_elements": [ + [ + "node", + "2071892285" + ] + ], + "parents": [ + "radisonblu" + ], + "type": "restaurant" + }, + { + "id": "cafetoria", + "latlon": [ + 60.18519, + 24.825391 + ], + "name": "Cafetoria", + "opening_hours": "Mo-Th 09:00-17:00; Fr 09:00-16:00", + "osm_elements": [ + [ + "node", + "5871819459" + ] + ], + "parents": [ + "vare" + ], + "type": "cafe" + }, + { + "id": "Kipsari", + "latlon": [ + 60.185693, + 24.824374 + ], + "name": "Kipsari", + "opening_hours": "Mo-Fr 08:00-18:00; Mo-Fr 11:00-18:00 \"lunch\"", + "osm_elements": [ + [ + "node", + "5880866308" + ] + ], + "parents": [ + "vare" + ], + "type": "restaurant" + }, + { + "address": "Ekonominaukio 1", + "id": "kylteri", + "latlon": [ + 60.185861, + 24.823662 + ], + "name": "Caf\u00e9 Kylteri", + "opening_hours": "Mo-Fr 11:00-14:00", + "osm_elements": [ + [ + "node", + "6316319506" + ] + ], + "parents": [ + "R068" + ], + "type": "cafe" + }, + { + "id": "arvo", + "latlon": [ + 60.186085, + 24.822882 + ], + "name": "Arvo", + "name_en": "Restaurant and Wine Bar Arvo", + "opening_hours": "Mo-Fr 11:00-14:00", + "osm_elements": [ + [ + "node", + "6316319505" + ] + ], + "parents": [ + "R068" + ], + "type": "restaurant" + }, + { + "address": "Otaniementie 12", + "id": "espressohouse", + "latlon": [ + 60.184678, + 24.826056 + ], + "name": "Espresso House", + "opening_hours": "Mo-Fr 07:30-19:00; Sa 09:00-17:00", + "osm_elements": [ + [ + "node", + "5870791847" + ] + ], + "parents": [ + "abloc" + ], + "type": "cafe" + }, + { + "address": "Otaniementie 12", + "id": "kot", + "latlon": [ + 60.184711, + 24.825109 + ], + "name": "kot.MENU", + "opening_hours": "Mo-Sa 11:00-23:00", + "osm_elements": [ + [ + "node", + "5871819461" + ] + ], + "parents": [ + "abloc" + ], + "type": "restaurant" + }, + { + "address": "Otaniementie 12", + "id": "whothexxxisalice", + "latlon": [ + 60.18473, + 24.824985 + ], + "name": "Who the XXXX is Alice", + "opening_hours": "Mo-Fr 10:30-21:00; Sa 11:00-22:00; Su 12:00-20:00", + "osm_elements": [ + [ + "node", + "5871819455" + ] + ], + "parents": [ + "abloc" + ], + "type": "restaurant" + }, + { + "address": "Otaniementie 12", + "id": "kmarket", + "latlon": [ + 60.18491, + 24.824925 + ], + "name": "K-Market", + "opening_hours": "Mo-Fr 07:00-23:00; Sa,Su 09:00-23:00", + "osm_elements": [ + [ + "node", + "5870791843" + ] + ], + "parents": [ + "abloc" + ], + "type": "shopping" + }, + { + "address": "Otaniementie 12", + "id": "konnichiwa", + "latlon": [ + 60.185098, + 24.825099 + ], + "name": "Konnichiwa", + "opening_hours": "Mo-Fr 10:30-20:30; Sa 12:00-19:30; Su 12:00-19:00", + "osm_elements": [ + [ + "node", + "5870791848" + ] + ], + "parents": [ + "abloc" + ], + "type": "restaurant" + }, + { + "address": "Otaniementie 12", + "id": "abloc-alepa", + "latlon": [ + 60.185102, + 24.824698 + ], + "name": "Alepa", + "opening_hours": "Mo-Sa 06:00-24:00; Su 09:00-24:00", + "osm_elements": [ + [ + "node", + "5870791842" + ] + ], + "parents": [ + "abloc" + ], + "type": "shopping" + }, + { + "address": "Otaniementie 12", + "id": "abloc-foodandco", + "latlon": [ + 60.185155, + 24.824755 + ], + "name": "Food&Co A-Bloc", + "opening_hours": "Mo-Fr 11:00-18:00; Sa 11:00-16:00", + "osm_elements": [ + [ + "node", + "5891050368" + ] + ], + "parents": [ + "abloc" + ], + "type": "restaurant" + }, + { + "address": "Otaniementie 12", + "id": "abloc-eatpoke", + "latlon": [ + 60.184881, + 24.825298 + ], + "name": "Eat Pok\u00e9", + "opening_hours": "Mo-Fr 11:00-20:00; Sa-Su 12:00-18:00", + "osm_elements": [ + [ + "node", + "10850660019" + ] + ], + "parents": [ + "abloc" + ], + "type": "restaurant" + }, + { + "id": "mezame", + "latlon": [ + 60.18453, + 24.825471 + ], + "name": "Mezame", + "opening_hours": "Mo-Sa 11:00-23:00", + "osm_elements": [ + [ + "node", + "11883413019" + ] + ], + "parents": [ + "abloc" + ], + "type": "restaurant" + }, + { + "address": "Otakaari 2", + "id": "moo", + "latlon": [ + 60.186472, + 24.826305 + ], + "name": "MOO", + "opening_hours": "Mo-We,Fr 08:00-16:00; Th 08:00-19:00; Mo-Fr 11:00-14:00 \"lunch\"; PH off", + "osm_elements": [ + [ + "node", + "12141712493" + ] + ], + "parents": [ + "marsio" + ], + "type": "restaurant" + }, + { + "address": "Vuorimiehentie 5", + "id": "maukas", + "latlon": [ + 60.182828, + 24.828121 + ], + "name": "Mau-kas", + "opening_hours": "Mo-Fr 08:00-14:30; Mo-Fr 08:00-09:45 \"breakfast\"; Mo-Fr 10:45-14:00 \"lunch\"; PH off", + "osm_elements": [ + [ + "node", + "2381695985" + ] + ], + "type": "restaurant" + }, + { + "address": "S\u00e4hk\u00f6miehentie 3", + "id": "otaparkki", + "latlon": [ + 60.188907, + 24.827644 + ], + "name": "Otaparkki", + "opening_hours": "24/7", + "osm_elements": [ + [ + "way", + 1202350275 + ] + ], + "outline": [ + [ + 60.188896, + 24.828274 + ], + [ + 60.188911, + 24.828225 + ], + [ + 60.188924, + 24.828183 + ], + [ + 60.189119, + 24.827541 + ], + [ + 60.189078, + 24.82749 + ], + [ + 60.189096, + 24.827431 + ], + [ + 60.188959, + 24.827263 + ], + [ + 60.188912, + 24.827205 + ], + [ + 60.188867, + 24.82715 + ], + [ + 60.188852, + 24.827198 + ], + [ + 60.188794, + 24.827388 + ], + [ + 60.188774, + 24.827456 + ], + [ + 60.188626, + 24.827942 + ], + [ + 60.188896, + 24.828274 + ] + ], + "type": "auxbuilding" + }, + { + "aliases": [ + "ARTS" + ], + "children": [ + "dept:architecture", + "dept:artmedia", + "dept:design", + "dept:film" + ], + "id": "ARTS", + "name_en": "School of Arts, Design and Architecture", + "name_fi": "Taiteiden ja suunnittelun korkeakoulu", + "name_sv": "H\u00f6gskolan f\u00f6r konst,design och arkitektur", + "parents": [ + "vare", + "marsio", + "A" + ], + "type": "school", + "url_en": "http://arts.aalto.fi/en/", + "url_fi": "http://arts.aalto.fi/fi/", + "url_sv": "http://arts.aalto.fi/sv/" + }, + { + "aliases": [ + "BIZ" + ], + "children": [ + "dept:accounting", + "dept:economics", + "dept:finance", + "dept:infosrv", + "dept:management", + "dept:marketing", + "unit:aaltoee", + "unit:cikr", + "unit:mikkeli" + ], + "id": "BIZ", + "name_en": "School of Business", + "name_fi": "Kauppakorkeakoulu", + "name_sv": "Handelsh\u00f6gskolan", + "parents": [ + "R068" + ], + "type": "school", + "url_en": "http://biz.aalto.fi/en/", + "url_fi": "http://biz.aalto.fi/fi/" + }, + { + "aliases": [ + "CHEM" + ], + "children": [ + "dept:cmet", + "dept:cmat", + "dept:bio" + ], + "id": "CHEM", + "name_en": "School of Chemical Engineering", + "name_fi": "Kemian tekniikan korkeakoulu", + "name_sv": "H\u00f6gskolan f\u00f6r kemiteknik", + "parents": [ + "r011", + "r013", + "micronova" + ], + "type": "school", + "url_en": "http://chem.aalto.fi/en/", + "url_fi": "http://chem.aalto.fi/fi/", + "url_sv": "http://chem.aalto.fi/sv/" + }, + { + "aliases": [ + "ELEC" + ], + "children": [ + "dept:eea", + "dept:ele", + "dept:dice", + "unit:nanofab", + "unit:metsahovi" + ], + "id": "ELEC", + "name_en": "School of Electrical Engineering", + "name_fi": "S\u00e4hk\u00f6tekniikan korkeakoulu", + "name_sv": "H\u00f6gskolan f\u00f6r elektroteknik", + "parents": [ + "tuas", + "micronova", + "kide", + "agrid-K" + ], + "type": "school", + "url_en": "http://elec.aalto.fi/en/", + "url_fi": "http://elec.aalto.fi/fi/", + "url_sv": "http://elec.aalto.fi/sv/" + }, + { + "aliases": [ + "ENG" + ], + "children": [ + "dept:mecheng", + "dept:civileng", + "dept:builtenv" + ], + "id": "ENG", + "name_en": "School of Engineering", + "name_fi": "Insin\u00f6\u00f6ritieteiden korkeakoulu", + "name_sv": "H\u00f6gskolan f\u00f6r ingenj\u00f6rsvetenskaper", + "parents": [ + "K1", + "r034", + "r002", + "K1", + "K3", + "K2", + "K4", + "r016" + ], + "type": "school", + "url_en": "http://eng.aalto.fi/en/", + "url_fi": "http://eng.aalto.fi/fi/", + "url_sv": "http://eng.aalto.fi/sv/" + }, + { + "aliases": [ + "SCI" + ], + "children": [ + "dept:physics", + "dept:cs", + "dept:tuta", + "dept:math", + "dept:nbe" + ], + "id": "SCI", + "name_en": "School of Science", + "name_fi": "Perustieteiden korkeakoulu", + "name_sv": "H\u00f6gskolan f\u00f6r teknikvetenskaper", + "parents": [ + "main", + "F", + "K1", + "nanotalo", + "T", + "micronova", + "kide" + ], + "type": "school", + "url_en": "http://sci.aalto.fi/en/", + "url_fi": "http://sci.aalto.fi/fi/", + "url_sv": "http://sci.aalto.fi/sv/" + }, + { + "address": "Servin Maijan tie 10", + "aliases": [ + "SMT10" + ], + "id": "SMT10", + "latlon": [ + 60.191502, + 24.836688 + ], + "name": "Servin Maijan tie 10", + "osm_elements": [ + [ + "way", + 4266885 + ] + ], + "outline": [ + [ + 60.191545, + 24.836827 + ], + [ + 60.191547, + 24.8367 + ], + [ + 60.191504, + 24.836698 + ], + [ + 60.191355, + 24.836688 + ], + [ + 60.191258, + 24.836682 + ], + [ + 60.19121, + 24.836679 + ], + [ + 60.191208, + 24.836805 + ], + [ + 60.191139, + 24.8368 + ], + [ + 60.19105, + 24.836795 + ], + [ + 60.191054, + 24.836541 + ], + [ + 60.191081, + 24.836543 + ], + [ + 60.191082, + 24.836475 + ], + [ + 60.191206, + 24.836482 + ], + [ + 60.191208, + 24.836356 + ], + [ + 60.191563, + 24.836379 + ], + [ + 60.191561, + 24.836503 + ], + [ + 60.191794, + 24.836517 + ], + [ + 60.191793, + 24.836611 + ], + [ + 60.191904, + 24.836618 + ], + [ + 60.191902, + 24.836702 + ], + [ + 60.191926, + 24.836704 + ], + [ + 60.191922, + 24.836941 + ], + [ + 60.191836, + 24.836935 + ], + [ + 60.191774, + 24.836931 + ], + [ + 60.191776, + 24.836842 + ], + [ + 60.191721, + 24.836838 + ], + [ + 60.191604, + 24.836831 + ], + [ + 60.191545, + 24.836827 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servin Maijan tie 12", + "aliases": [ + "SMT12" + ], + "id": "SMT12n", + "latlon": [ + 60.191653, + 24.837471 + ], + "name": "Servin Maijan tie 12", + "osm_elements": [ + [ + "way", + 4266886 + ] + ], + "outline": [ + [ + 60.191659, + 24.8376 + ], + [ + 60.191657, + 24.837685 + ], + [ + 60.191411, + 24.837667 + ], + [ + 60.191412, + 24.837597 + ], + [ + 60.191384, + 24.837595 + ], + [ + 60.191388, + 24.837369 + ], + [ + 60.191476, + 24.837375 + ], + [ + 60.19159, + 24.837383 + ], + [ + 60.191654, + 24.837388 + ], + [ + 60.191657, + 24.837253 + ], + [ + 60.191712, + 24.837257 + ], + [ + 60.191828, + 24.837265 + ], + [ + 60.191919, + 24.837272 + ], + [ + 60.191914, + 24.83754 + ], + [ + 60.191888, + 24.837538 + ], + [ + 60.191887, + 24.837617 + ], + [ + 60.191659, + 24.8376 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servin Maijan tie 12", + "aliases": [ + "SMT12" + ], + "id": "SMT12s", + "latlon": [ + 60.190892, + 24.837442 + ], + "name": "Servin Maijan tie 12", + "osm_elements": [ + [ + "way", + 4266887 + ] + ], + "outline": [ + [ + 60.190538, + 24.837344 + ], + [ + 60.190595, + 24.837348 + ], + [ + 60.190752, + 24.83736 + ], + [ + 60.190855, + 24.837368 + ], + [ + 60.190915, + 24.837373 + ], + [ + 60.190917, + 24.837268 + ], + [ + 60.190981, + 24.837273 + ], + [ + 60.191091, + 24.837282 + ], + [ + 60.191205, + 24.837291 + ], + [ + 60.191289, + 24.837297 + ], + [ + 60.191284, + 24.837557 + ], + [ + 60.191259, + 24.837556 + ], + [ + 60.191258, + 24.837612 + ], + [ + 60.190905, + 24.837584 + ], + [ + 60.190903, + 24.837692 + ], + [ + 60.190564, + 24.837666 + ], + [ + 60.190565, + 24.837589 + ], + [ + 60.190533, + 24.837587 + ], + [ + 60.190538, + 24.837344 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 3 B", + "aliases": [ + "SK3 B" + ], + "id": "SK3b", + "latlon": [ + 60.191313, + 24.835529 + ], + "name": "Servinkuja 3 B", + "osm_elements": [ + [ + "way", + 24342605 + ] + ], + "outline": [ + [ + 60.191372, + 24.835378 + ], + [ + 60.191381, + 24.835538 + ], + [ + 60.191414, + 24.83553 + ], + [ + 60.191423, + 24.835689 + ], + [ + 60.191197, + 24.835741 + ], + [ + 60.191187, + 24.835556 + ], + [ + 60.191241, + 24.835543 + ], + [ + 60.191234, + 24.83541 + ], + [ + 60.191372, + 24.835378 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 3 A", + "aliases": [ + "SK3 A" + ], + "id": "SK3a", + "latlon": [ + 60.191012, + 24.835366 + ], + "name": "Servinkuja 3 A", + "osm_elements": [ + [ + "way", + 4259186 + ] + ], + "outline": [ + [ + 60.19089, + 24.835313 + ], + [ + 60.190943, + 24.835309 + ], + [ + 60.190939, + 24.835112 + ], + [ + 60.190993, + 24.835107 + ], + [ + 60.1911, + 24.835098 + ], + [ + 60.191104, + 24.83529 + ], + [ + 60.191145, + 24.835287 + ], + [ + 60.191146, + 24.83536 + ], + [ + 60.191131, + 24.835361 + ], + [ + 60.191132, + 24.83544 + ], + [ + 60.191068, + 24.835445 + ], + [ + 60.191069, + 24.835486 + ], + [ + 60.191044, + 24.835488 + ], + [ + 60.191045, + 24.83551 + ], + [ + 60.190994, + 24.835514 + ], + [ + 60.190994, + 24.835492 + ], + [ + 60.19097, + 24.835494 + ], + [ + 60.190969, + 24.835444 + ], + [ + 60.190903, + 24.83545 + ], + [ + 60.190902, + 24.83537 + ], + [ + 60.190891, + 24.83537 + ], + [ + 60.19089, + 24.835313 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 5 A", + "aliases": [ + "SK5 A" + ], + "id": "SK5a", + "latlon": [ + 60.190865, + 24.833998 + ], + "name": "Servinkuja 5 A", + "osm_elements": [ + [ + "way", + 4266888 + ] + ], + "outline": [ + [ + 60.191017, + 24.834076 + ], + [ + 60.19079, + 24.834171 + ], + [ + 60.190771, + 24.834042 + ], + [ + 60.190754, + 24.834045 + ], + [ + 60.190731, + 24.833856 + ], + [ + 60.190976, + 24.833717 + ], + [ + 60.191017, + 24.834076 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 5 B", + "aliases": [ + "SK5 B" + ], + "id": "SK5b", + "latlon": [ + 60.191123, + 24.833385 + ], + "name": "Servinkuja 5 B", + "osm_elements": [ + [ + "way", + 11074082 + ] + ], + "outline": [ + [ + 60.19124, + 24.83315 + ], + [ + 60.191289, + 24.833518 + ], + [ + 60.191048, + 24.83361 + ], + [ + 60.191037, + 24.833484 + ], + [ + 60.19102, + 24.833492 + ], + [ + 60.190989, + 24.83329 + ], + [ + 60.19124, + 24.83315 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servin Maijan tie 6", + "aliases": [ + "SMT 6", + "SMT6" + ], + "id": "SMT6", + "latlon": [ + 60.190589, + 24.836128 + ], + "name": "Servin Maijan tie 6", + "osm_elements": [ + [ + "way", + 4259184 + ] + ], + "outline": [ + [ + 60.190631, + 24.836201 + ], + [ + 60.190632, + 24.836289 + ], + [ + 60.190631, + 24.83632 + ], + [ + 60.190621, + 24.836319 + ], + [ + 60.190164, + 24.836322 + ], + [ + 60.190163, + 24.836185 + ], + [ + 60.190136, + 24.836185 + ], + [ + 60.190136, + 24.83607 + ], + [ + 60.190136, + 24.836037 + ], + [ + 60.190631, + 24.836035 + ], + [ + 60.190631, + 24.835908 + ], + [ + 60.190914, + 24.835906 + ], + [ + 60.191, + 24.835906 + ], + [ + 60.191, + 24.836043 + ], + [ + 60.190978, + 24.836043 + ], + [ + 60.190978, + 24.8362 + ], + [ + 60.190631, + 24.836201 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servin Maijan tie 8", + "aliases": [ + "SMT8" + ], + "id": "SMT8", + "latlon": [ + 60.190612, + 24.836805 + ], + "name": "Servin Maijan tie 8", + "osm_elements": [ + [ + "way", + 4266889 + ] + ], + "outline": [ + [ + 60.190419, + 24.836586 + ], + [ + 60.19054, + 24.836593 + ], + [ + 60.190538, + 24.836701 + ], + [ + 60.190551, + 24.836701 + ], + [ + 60.190549, + 24.836842 + ], + [ + 60.19061, + 24.836846 + ], + [ + 60.190615, + 24.836511 + ], + [ + 60.190742, + 24.836516 + ], + [ + 60.190742, + 24.836523 + ], + [ + 60.19074, + 24.836644 + ], + [ + 60.19076, + 24.836645 + ], + [ + 60.190759, + 24.836712 + ], + [ + 60.190756, + 24.836987 + ], + [ + 60.190719, + 24.836985 + ], + [ + 60.190718, + 24.837066 + ], + [ + 60.190674, + 24.837064 + ], + [ + 60.190675, + 24.836981 + ], + [ + 60.190578, + 24.836976 + ], + [ + 60.190577, + 24.837055 + ], + [ + 60.190489, + 24.83705 + ], + [ + 60.19049, + 24.836969 + ], + [ + 60.190414, + 24.836965 + ], + [ + 60.190419, + 24.836586 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 1", + "aliases": [ + "SK1" + ], + "id": "SK1", + "latlon": [ + 60.190331, + 24.835177 + ], + "name": "Servinkuja 1", + "osm_elements": [ + [ + "way", + 4259185 + ] + ], + "outline": [ + [ + 60.190635, + 24.834966 + ], + [ + 60.190646, + 24.835197 + ], + [ + 60.190393, + 24.835246 + ], + [ + 60.1904, + 24.835376 + ], + [ + 60.189928, + 24.835468 + ], + [ + 60.189916, + 24.835226 + ], + [ + 60.19003, + 24.835204 + ], + [ + 60.19031, + 24.83515 + ], + [ + 60.190379, + 24.835136 + ], + [ + 60.190373, + 24.835017 + ], + [ + 60.190635, + 24.834966 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 6", + "aliases": [ + "SK6" + ], + "id": "SK6", + "latlon": [ + 60.190758, + 24.832729 + ], + "name": "Servinkuja 6", + "osm_elements": [ + [ + "way", + 4259181 + ] + ], + "outline": [ + [ + 60.190938, + 24.832534 + ], + [ + 60.190967, + 24.832738 + ], + [ + 60.190487, + 24.833021 + ], + [ + 60.190458, + 24.832818 + ], + [ + 60.190938, + 24.832534 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 2", + "aliases": [ + "SK2" + ], + "id": "SK2n", + "latlon": [ + 60.190207, + 24.833826 + ], + "name": "Servinkuja 2", + "osm_elements": [ + [ + "way", + 4259182 + ] + ], + "outline": [ + [ + 60.190043, + 24.83402 + ], + [ + 60.190011, + 24.833815 + ], + [ + 60.190453, + 24.833534 + ], + [ + 60.190485, + 24.833739 + ], + [ + 60.190043, + 24.83402 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servinkuja 2", + "aliases": [ + "SK2" + ], + "id": "SK2s", + "latlon": [ + 60.189601, + 24.83464 + ], + "name": "Servinkuja 2", + "osm_elements": [ + [ + "way", + 4259183 + ] + ], + "outline": [ + [ + 60.189812, + 24.834588 + ], + [ + 60.189709, + 24.834642 + ], + [ + 60.189576, + 24.834712 + ], + [ + 60.189428, + 24.83479 + ], + [ + 60.18936, + 24.834826 + ], + [ + 60.189331, + 24.834606 + ], + [ + 60.189783, + 24.834369 + ], + [ + 60.189812, + 24.834588 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servin Maijan tie 3", + "aliases": [ + "SMT3" + ], + "id": "SMT3", + "latlon": [ + 60.189417, + 24.835761 + ], + "name": "Servin Maijan tie 3", + "osm_elements": [ + [ + "way", + 4259187 + ] + ], + "outline": [ + [ + 60.189244, + 24.835601 + ], + [ + 60.189262, + 24.835559 + ], + [ + 60.189239, + 24.83552 + ], + [ + 60.189275, + 24.835436 + ], + [ + 60.189297, + 24.835475 + ], + [ + 60.189325, + 24.83541 + ], + [ + 60.189543, + 24.835784 + ], + [ + 60.189526, + 24.835822 + ], + [ + 60.18958, + 24.835915 + ], + [ + 60.189746, + 24.836199 + ], + [ + 60.189669, + 24.836382 + ], + [ + 60.189441, + 24.835991 + ], + [ + 60.189454, + 24.835962 + ], + [ + 60.189244, + 24.835601 + ] + ], + "type": "studenthousing" + }, + { + "address": "Servin Maijan tie 1", + "aliases": [ + "SMT1" + ], + "id": "SMT1", + "latlon": [ + 60.188887, + 24.835202 + ], + "name": "Servin Maijan tie 1", + "osm_elements": [ + [ + "way", + 4259263 + ] + ], + "outline": [ + [ + 60.188712, + 24.835016 + ], + [ + 60.189177, + 24.835253 + ], + [ + 60.189148, + 24.835482 + ], + [ + 60.188684, + 24.835245 + ], + [ + 60.188712, + 24.835016 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 10", + "aliases": [ + "JMT10" + ], + "id": "JMT10n", + "latlon": [ + 60.190339, + 24.83879 + ], + "name": "J\u00e4mer\u00e4ntaival 10", + "osm_elements": [ + [ + "way", + 24334281 + ] + ], + "outline": [ + [ + 60.189969, + 24.838562 + ], + [ + 60.189967, + 24.838756 + ], + [ + 60.189951, + 24.838756 + ], + [ + 60.189951, + 24.838839 + ], + [ + 60.189968, + 24.83884 + ], + [ + 60.189968, + 24.838877 + ], + [ + 60.190002, + 24.838878 + ], + [ + 60.190002, + 24.838857 + ], + [ + 60.190062, + 24.838859 + ], + [ + 60.190062, + 24.838879 + ], + [ + 60.190097, + 24.83888 + ], + [ + 60.19013, + 24.838881 + ], + [ + 60.19013, + 24.83886 + ], + [ + 60.190187, + 24.838862 + ], + [ + 60.190187, + 24.838885 + ], + [ + 60.190221, + 24.838887 + ], + [ + 60.19022, + 24.839001 + ], + [ + 60.190259, + 24.839003 + ], + [ + 60.190259, + 24.838979 + ], + [ + 60.190319, + 24.838981 + ], + [ + 60.190319, + 24.839004 + ], + [ + 60.190351, + 24.839005 + ], + [ + 60.190386, + 24.839007 + ], + [ + 60.190386, + 24.838982 + ], + [ + 60.190444, + 24.838984 + ], + [ + 60.190444, + 24.839005 + ], + [ + 60.190482, + 24.839007 + ], + [ + 60.190483, + 24.838973 + ], + [ + 60.190499, + 24.838973 + ], + [ + 60.1905, + 24.838883 + ], + [ + 60.190485, + 24.838882 + ], + [ + 60.190485, + 24.838863 + ], + [ + 60.190513, + 24.838864 + ], + [ + 60.190512, + 24.838899 + ], + [ + 60.190544, + 24.8389 + ], + [ + 60.190544, + 24.838893 + ], + [ + 60.190573, + 24.838894 + ], + [ + 60.190573, + 24.838931 + ], + [ + 60.190604, + 24.838932 + ], + [ + 60.190641, + 24.838934 + ], + [ + 60.190642, + 24.8389 + ], + [ + 60.190703, + 24.838902 + ], + [ + 60.190703, + 24.838865 + ], + [ + 60.190732, + 24.838867 + ], + [ + 60.190735, + 24.838642 + ], + [ + 60.190705, + 24.83864 + ], + [ + 60.190706, + 24.838604 + ], + [ + 60.190643, + 24.838602 + ], + [ + 60.190643, + 24.838568 + ], + [ + 60.190575, + 24.838565 + ], + [ + 60.190575, + 24.8386 + ], + [ + 60.190515, + 24.838597 + ], + [ + 60.190515, + 24.838636 + ], + [ + 60.190485, + 24.838635 + ], + [ + 60.190484, + 24.838695 + ], + [ + 60.190451, + 24.838694 + ], + [ + 60.190451, + 24.838715 + ], + [ + 60.190388, + 24.838713 + ], + [ + 60.190388, + 24.838692 + ], + [ + 60.190322, + 24.838689 + ], + [ + 60.190322, + 24.838708 + ], + [ + 60.190261, + 24.838706 + ], + [ + 60.190262, + 24.838687 + ], + [ + 60.190228, + 24.838685 + ], + [ + 60.190229, + 24.838571 + ], + [ + 60.190193, + 24.83857 + ], + [ + 60.190193, + 24.83859 + ], + [ + 60.190133, + 24.838588 + ], + [ + 60.190133, + 24.838567 + ], + [ + 60.190064, + 24.838565 + ], + [ + 60.190064, + 24.838586 + ], + [ + 60.190004, + 24.838584 + ], + [ + 60.190004, + 24.838564 + ], + [ + 60.189969, + 24.838562 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 11", + "aliases": [ + "JMT11" + ], + "id": "JMT11n", + "latlon": [ + 60.1903, + 24.839913 + ], + "name": "J\u00e4mer\u00e4ntaival 11", + "osm_elements": [ + [ + "way", + 26139101 + ] + ], + "outline": [ + [ + 60.190289, + 24.839873 + ], + [ + 60.190313, + 24.839863 + ], + [ + 60.190308, + 24.839814 + ], + [ + 60.190373, + 24.839787 + ], + [ + 60.190438, + 24.83976 + ], + [ + 60.190443, + 24.839809 + ], + [ + 60.190503, + 24.839785 + ], + [ + 60.190498, + 24.839737 + ], + [ + 60.190563, + 24.83971 + ], + [ + 60.190627, + 24.839684 + ], + [ + 60.190632, + 24.839732 + ], + [ + 60.190647, + 24.839725 + ], + [ + 60.190659, + 24.83972 + ], + [ + 60.190677, + 24.839898 + ], + [ + 60.19065, + 24.83991 + ], + [ + 60.190655, + 24.839958 + ], + [ + 60.190526, + 24.840011 + ], + [ + 60.190521, + 24.839962 + ], + [ + 60.190461, + 24.839987 + ], + [ + 60.190466, + 24.840035 + ], + [ + 60.190336, + 24.840088 + ], + [ + 60.190331, + 24.840041 + ], + [ + 60.190301, + 24.840053 + ], + [ + 60.190295, + 24.83999 + ], + [ + 60.190274, + 24.839999 + ], + [ + 60.190278, + 24.840048 + ], + [ + 60.19015, + 24.8401 + ], + [ + 60.190145, + 24.840052 + ], + [ + 60.190085, + 24.840077 + ], + [ + 60.19009, + 24.840124 + ], + [ + 60.189959, + 24.840178 + ], + [ + 60.189954, + 24.840131 + ], + [ + 60.189924, + 24.840143 + ], + [ + 60.189906, + 24.839965 + ], + [ + 60.189936, + 24.839953 + ], + [ + 60.189931, + 24.839904 + ], + [ + 60.189996, + 24.839877 + ], + [ + 60.190062, + 24.83985 + ], + [ + 60.190067, + 24.839899 + ], + [ + 60.190127, + 24.839874 + ], + [ + 60.190122, + 24.839826 + ], + [ + 60.190186, + 24.8398 + ], + [ + 60.19025, + 24.839773 + ], + [ + 60.190255, + 24.839821 + ], + [ + 60.190283, + 24.83981 + ], + [ + 60.190289, + 24.839873 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 10", + "aliases": [ + "JMT10" + ], + "id": "JMT10s", + "latlon": [ + 60.189607, + 24.838374 + ], + "name": "J\u00e4mer\u00e4ntaival 10", + "osm_elements": [ + [ + "way", + 24334282 + ] + ], + "outline": [ + [ + 60.189414, + 24.838024 + ], + [ + 60.189409, + 24.838058 + ], + [ + 60.189379, + 24.838041 + ], + [ + 60.18935, + 24.838249 + ], + [ + 60.189379, + 24.838265 + ], + [ + 60.189373, + 24.838306 + ], + [ + 60.189428, + 24.838338 + ], + [ + 60.189423, + 24.838377 + ], + [ + 60.189453, + 24.838395 + ], + [ + 60.189489, + 24.838415 + ], + [ + 60.189493, + 24.838382 + ], + [ + 60.189555, + 24.838417 + ], + [ + 60.189559, + 24.838384 + ], + [ + 60.189582, + 24.838396 + ], + [ + 60.189578, + 24.838419 + ], + [ + 60.189564, + 24.838411 + ], + [ + 60.189552, + 24.838493 + ], + [ + 60.189566, + 24.838501 + ], + [ + 60.18956, + 24.838542 + ], + [ + 60.189596, + 24.838562 + ], + [ + 60.189598, + 24.838544 + ], + [ + 60.189653, + 24.838576 + ], + [ + 60.18965, + 24.838597 + ], + [ + 60.189685, + 24.838618 + ], + [ + 60.189718, + 24.838637 + ], + [ + 60.189721, + 24.838617 + ], + [ + 60.189774, + 24.838648 + ], + [ + 60.18977, + 24.838678 + ], + [ + 60.189813, + 24.838704 + ], + [ + 60.189818, + 24.838664 + ], + [ + 60.189831, + 24.838672 + ], + [ + 60.189844, + 24.838581 + ], + [ + 60.189828, + 24.838571 + ], + [ + 60.189855, + 24.838391 + ], + [ + 60.189826, + 24.838374 + ], + [ + 60.189823, + 24.838394 + ], + [ + 60.18976, + 24.838357 + ], + [ + 60.189763, + 24.838333 + ], + [ + 60.189702, + 24.838297 + ], + [ + 60.189698, + 24.838321 + ], + [ + 60.189637, + 24.838285 + ], + [ + 60.18964, + 24.838262 + ], + [ + 60.189607, + 24.838243 + ], + [ + 60.189616, + 24.838182 + ], + [ + 60.189591, + 24.838167 + ], + [ + 60.189596, + 24.838133 + ], + [ + 60.189534, + 24.838098 + ], + [ + 60.189539, + 24.838062 + ], + [ + 60.189476, + 24.838025 + ], + [ + 60.189471, + 24.838057 + ], + [ + 60.189414, + 24.838024 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 11", + "aliases": [ + "JMT11" + ], + "id": "JVM11sw", + "latlon": [ + 60.189391, + 24.839047 + ], + "name": "J\u00e4mer\u00e4ntaival 11", + "osm_elements": [ + [ + "way", + 24334286 + ] + ], + "outline": [ + [ + 60.189375, + 24.839096 + ], + [ + 60.189367, + 24.83916 + ], + [ + 60.1894, + 24.839177 + ], + [ + 60.189396, + 24.839208 + ], + [ + 60.189449, + 24.839235 + ], + [ + 60.189502, + 24.839262 + ], + [ + 60.189506, + 24.839232 + ], + [ + 60.189567, + 24.839263 + ], + [ + 60.189563, + 24.839294 + ], + [ + 60.189616, + 24.839321 + ], + [ + 60.18967, + 24.839349 + ], + [ + 60.189674, + 24.839318 + ], + [ + 60.189705, + 24.839334 + ], + [ + 60.189719, + 24.839227 + ], + [ + 60.189728, + 24.839157 + ], + [ + 60.189696, + 24.83914 + ], + [ + 60.189702, + 24.839099 + ], + [ + 60.189595, + 24.839044 + ], + [ + 60.189589, + 24.839085 + ], + [ + 60.189528, + 24.839054 + ], + [ + 60.189534, + 24.839012 + ], + [ + 60.189428, + 24.838958 + ], + [ + 60.189422, + 24.838999 + ], + [ + 60.189393, + 24.838984 + ], + [ + 60.189403, + 24.838917 + ], + [ + 60.189368, + 24.838897 + ], + [ + 60.189374, + 24.838858 + ], + [ + 60.189268, + 24.838795 + ], + [ + 60.189263, + 24.838835 + ], + [ + 60.189206, + 24.838801 + ], + [ + 60.189212, + 24.838762 + ], + [ + 60.189106, + 24.838699 + ], + [ + 60.1891, + 24.838738 + ], + [ + 60.189069, + 24.83872 + ], + [ + 60.189043, + 24.838899 + ], + [ + 60.189074, + 24.838917 + ], + [ + 60.189069, + 24.838949 + ], + [ + 60.189122, + 24.838981 + ], + [ + 60.189175, + 24.839012 + ], + [ + 60.18918, + 24.83898 + ], + [ + 60.189237, + 24.839014 + ], + [ + 60.189232, + 24.839045 + ], + [ + 60.189285, + 24.839077 + ], + [ + 60.189337, + 24.839108 + ], + [ + 60.189342, + 24.839076 + ], + [ + 60.189375, + 24.839096 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 11", + "aliases": [ + "JMT11" + ], + "id": "JMT11se", + "latlon": [ + 60.189331, + 24.839661 + ], + "name": "J\u00e4mer\u00e4ntaival 11", + "osm_elements": [ + [ + "way", + 24332800 + ] + ], + "outline": [ + [ + 60.189057, + 24.839428 + ], + [ + 60.189002, + 24.83941 + ], + [ + 60.188946, + 24.839391 + ], + [ + 60.188942, + 24.839437 + ], + [ + 60.188915, + 24.839428 + ], + [ + 60.188901, + 24.8396 + ], + [ + 60.188928, + 24.839609 + ], + [ + 60.188924, + 24.839655 + ], + [ + 60.189036, + 24.839692 + ], + [ + 60.18904, + 24.839645 + ], + [ + 60.189094, + 24.839663 + ], + [ + 60.189091, + 24.83971 + ], + [ + 60.189205, + 24.839747 + ], + [ + 60.189209, + 24.8397 + ], + [ + 60.189234, + 24.839709 + ], + [ + 60.189228, + 24.839778 + ], + [ + 60.189257, + 24.839787 + ], + [ + 60.189253, + 24.839832 + ], + [ + 60.189363, + 24.839868 + ], + [ + 60.189367, + 24.839823 + ], + [ + 60.189421, + 24.839841 + ], + [ + 60.189417, + 24.839886 + ], + [ + 60.189531, + 24.839923 + ], + [ + 60.189534, + 24.839878 + ], + [ + 60.189566, + 24.839888 + ], + [ + 60.189572, + 24.839803 + ], + [ + 60.189597, + 24.839811 + ], + [ + 60.189594, + 24.839855 + ], + [ + 60.189706, + 24.839891 + ], + [ + 60.189709, + 24.839848 + ], + [ + 60.189737, + 24.839857 + ], + [ + 60.189751, + 24.839682 + ], + [ + 60.189723, + 24.839673 + ], + [ + 60.189727, + 24.83963 + ], + [ + 60.189671, + 24.839612 + ], + [ + 60.189615, + 24.839594 + ], + [ + 60.189611, + 24.839637 + ], + [ + 60.189581, + 24.839627 + ], + [ + 60.189574, + 24.839714 + ], + [ + 60.189548, + 24.839706 + ], + [ + 60.189552, + 24.839659 + ], + [ + 60.189495, + 24.839641 + ], + [ + 60.189438, + 24.839622 + ], + [ + 60.189435, + 24.839669 + ], + [ + 60.18938, + 24.839651 + ], + [ + 60.189384, + 24.839605 + ], + [ + 60.189329, + 24.839587 + ], + [ + 60.189274, + 24.839569 + ], + [ + 60.18927, + 24.839615 + ], + [ + 60.189247, + 24.839607 + ], + [ + 60.189253, + 24.839538 + ], + [ + 60.189223, + 24.839529 + ], + [ + 60.189226, + 24.839483 + ], + [ + 60.189169, + 24.839464 + ], + [ + 60.189112, + 24.839446 + ], + [ + 60.189108, + 24.839491 + ], + [ + 60.189054, + 24.839473 + ], + [ + 60.189057, + 24.839428 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 9", + "aliases": [ + "JMT9" + ], + "id": "JMT9", + "latlon": [ + 60.188688, + 24.839707 + ], + "name": "J\u00e4mer\u00e4ntaival 9", + "osm_elements": [ + [ + "way", + 24332799 + ] + ], + "outline": [ + [ + 60.188592, + 24.839456 + ], + [ + 60.188567, + 24.839732 + ], + [ + 60.188603, + 24.839745 + ], + [ + 60.188593, + 24.839855 + ], + [ + 60.188783, + 24.839924 + ], + [ + 60.188792, + 24.839816 + ], + [ + 60.188823, + 24.839827 + ], + [ + 60.188848, + 24.839549 + ], + [ + 60.188592, + 24.839456 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 7 A", + "aliases": [ + "JMT7 A" + ], + "id": "JVM7a", + "latlon": [ + 60.188673, + 24.838538 + ], + "name": "J\u00e4mer\u00e4ntaival 7 A", + "osm_elements": [ + [ + "way", + 24333771 + ] + ], + "outline": [ + [ + 60.188585, + 24.838367 + ], + [ + 60.188577, + 24.838694 + ], + [ + 60.188639, + 24.8387 + ], + [ + 60.188657, + 24.838701 + ], + [ + 60.188657, + 24.838685 + ], + [ + 60.188663, + 24.838686 + ], + [ + 60.188709, + 24.83869 + ], + [ + 60.188709, + 24.838679 + ], + [ + 60.188776, + 24.838686 + ], + [ + 60.188783, + 24.838415 + ], + [ + 60.188718, + 24.838409 + ], + [ + 60.188718, + 24.838391 + ], + [ + 60.18867, + 24.838386 + ], + [ + 60.18867, + 24.838375 + ], + [ + 60.188659, + 24.838374 + ], + [ + 60.188585, + 24.838367 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 7 C", + "aliases": [ + "JMT7 C" + ], + "id": "JMT7c", + "latlon": [ + 60.188592, + 24.83911 + ], + "name": "J\u00e4mer\u00e4ntaival 7 C", + "osm_elements": [ + [ + "way", + 24333796 + ] + ], + "outline": [ + [ + 60.188486, + 24.838989 + ], + [ + 60.188479, + 24.839285 + ], + [ + 60.188556, + 24.839293 + ], + [ + 60.188556, + 24.83928 + ], + [ + 60.188603, + 24.839284 + ], + [ + 60.188603, + 24.839267 + ], + [ + 60.188665, + 24.839273 + ], + [ + 60.188668, + 24.839156 + ], + [ + 60.18866, + 24.839155 + ], + [ + 60.188662, + 24.839072 + ], + [ + 60.188655, + 24.839071 + ], + [ + 60.188658, + 24.838971 + ], + [ + 60.188631, + 24.838968 + ], + [ + 60.188596, + 24.838964 + ], + [ + 60.188596, + 24.838983 + ], + [ + 60.188545, + 24.838978 + ], + [ + 60.188544, + 24.838994 + ], + [ + 60.188486, + 24.838989 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 7 B", + "aliases": [ + "JMT7 B" + ], + "id": "JMT7b", + "latlon": [ + 60.18833, + 24.838353 + ], + "name": "J\u00e4mer\u00e4ntaival 7 B", + "osm_elements": [ + [ + "way", + 24333770 + ] + ], + "outline": [ + [ + 60.188218, + 24.8382 + ], + [ + 60.188196, + 24.838496 + ], + [ + 60.188281, + 24.838523 + ], + [ + 60.188283, + 24.838504 + ], + [ + 60.188329, + 24.838518 + ], + [ + 60.18833, + 24.838501 + ], + [ + 60.188392, + 24.83852 + ], + [ + 60.188399, + 24.838422 + ], + [ + 60.188401, + 24.838404 + ], + [ + 60.188393, + 24.838402 + ], + [ + 60.188395, + 24.838372 + ], + [ + 60.188397, + 24.838342 + ], + [ + 60.188399, + 24.838317 + ], + [ + 60.188388, + 24.838314 + ], + [ + 60.188396, + 24.838212 + ], + [ + 60.188335, + 24.838193 + ], + [ + 60.188333, + 24.838213 + ], + [ + 60.188262, + 24.838191 + ], + [ + 60.18826, + 24.838213 + ], + [ + 60.188218, + 24.8382 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 6", + "aliases": [ + "JMT6" + ], + "id": "JVM6", + "latlon": [ + 60.188488, + 24.83733 + ], + "name": "J\u00e4mer\u00e4ntaival 6", + "osm_elements": [ + [ + "way", + 24334231 + ] + ], + "outline": [ + [ + 60.188284, + 24.837283 + ], + [ + 60.188286, + 24.837332 + ], + [ + 60.188235, + 24.837344 + ], + [ + 60.188238, + 24.837391 + ], + [ + 60.188239, + 24.837413 + ], + [ + 60.18822, + 24.837417 + ], + [ + 60.188232, + 24.83762 + ], + [ + 60.188268, + 24.837612 + ], + [ + 60.188271, + 24.837655 + ], + [ + 60.188347, + 24.837638 + ], + [ + 60.188342, + 24.837536 + ], + [ + 60.188472, + 24.837506 + ], + [ + 60.188475, + 24.837562 + ], + [ + 60.188551, + 24.837544 + ], + [ + 60.18854, + 24.837354 + ], + [ + 60.188556, + 24.837351 + ], + [ + 60.188656, + 24.837328 + ], + [ + 60.188671, + 24.837324 + ], + [ + 60.188675, + 24.837381 + ], + [ + 60.18875, + 24.837364 + ], + [ + 60.188748, + 24.837334 + ], + [ + 60.1888, + 24.837322 + ], + [ + 60.18879, + 24.837146 + ], + [ + 60.188775, + 24.83715 + ], + [ + 60.188768, + 24.837034 + ], + [ + 60.188655, + 24.83706 + ], + [ + 60.188656, + 24.837077 + ], + [ + 60.18856, + 24.8371 + ], + [ + 60.188557, + 24.837046 + ], + [ + 60.18848, + 24.837063 + ], + [ + 60.188486, + 24.837178 + ], + [ + 60.188491, + 24.837253 + ], + [ + 60.188361, + 24.837283 + ], + [ + 60.18836, + 24.837266 + ], + [ + 60.188284, + 24.837283 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 5 A", + "aliases": [ + "JMT5 A" + ], + "id": "JMT5a", + "latlon": [ + 60.187876, + 24.837918 + ], + "name": "J\u00e4mer\u00e4ntaival 5 A", + "osm_elements": [ + [ + "way", + 24333899 + ] + ], + "outline": [ + [ + 60.187776, + 24.838021 + ], + [ + 60.187792, + 24.837702 + ], + [ + 60.187889, + 24.837721 + ], + [ + 60.187922, + 24.837727 + ], + [ + 60.187922, + 24.837738 + ], + [ + 60.187985, + 24.837751 + ], + [ + 60.187972, + 24.838023 + ], + [ + 60.187909, + 24.83801 + ], + [ + 60.187908, + 24.838028 + ], + [ + 60.187871, + 24.838021 + ], + [ + 60.187855, + 24.838017 + ], + [ + 60.187854, + 24.838037 + ], + [ + 60.187826, + 24.838031 + ], + [ + 60.187776, + 24.838021 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 5 B", + "aliases": [ + "JMT5 B" + ], + "id": "JMT5b", + "latlon": [ + 60.187555, + 24.837649 + ], + "name": "J\u00e4mer\u00e4ntaival 5 B", + "osm_elements": [ + [ + "way", + 24333934 + ] + ], + "outline": [ + [ + 60.187447, + 24.837542 + ], + [ + 60.187454, + 24.837842 + ], + [ + 60.187522, + 24.837835 + ], + [ + 60.187522, + 24.837817 + ], + [ + 60.187581, + 24.837811 + ], + [ + 60.18758, + 24.837791 + ], + [ + 60.187637, + 24.837785 + ], + [ + 60.187635, + 24.837678 + ], + [ + 60.187634, + 24.837643 + ], + [ + 60.187633, + 24.837593 + ], + [ + 60.187614, + 24.837595 + ], + [ + 60.187611, + 24.837493 + ], + [ + 60.187553, + 24.837498 + ], + [ + 60.187553, + 24.837514 + ], + [ + 60.187505, + 24.837518 + ], + [ + 60.187505, + 24.837537 + ], + [ + 60.187447, + 24.837542 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 5 C", + "aliases": [ + "JMT5 C" + ], + "id": "JMT5c", + "latlon": [ + 60.187783, + 24.838386 + ], + "name": "J\u00e4mer\u00e4ntaival 5 C", + "osm_elements": [ + [ + "way", + 24333883 + ] + ], + "outline": [ + [ + 60.187815, + 24.838247 + ], + [ + 60.187844, + 24.838252 + ], + [ + 60.187848, + 24.838253 + ], + [ + 60.187839, + 24.83844 + ], + [ + 60.187858, + 24.838443 + ], + [ + 60.187852, + 24.838561 + ], + [ + 60.187797, + 24.83855 + ], + [ + 60.187796, + 24.838569 + ], + [ + 60.187722, + 24.838554 + ], + [ + 60.18772, + 24.838576 + ], + [ + 60.187669, + 24.838566 + ], + [ + 60.187683, + 24.838265 + ], + [ + 60.18774, + 24.838276 + ], + [ + 60.187741, + 24.838253 + ], + [ + 60.18779, + 24.838262 + ], + [ + 60.18779, + 24.838242 + ], + [ + 60.187815, + 24.838247 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 3 A", + "aliases": [ + "JMT3 A" + ], + "children": [ + "polyteekkarimuseo" + ], + "id": "JMT3a", + "latlon": [ + 60.187309, + 24.836385 + ], + "name": "J\u00e4mer\u00e4ntaival 3 A", + "osm_elements": [ + [ + "way", + 24333970 + ] + ], + "outline": [ + [ + 60.187251, + 24.836198 + ], + [ + 60.18725, + 24.836261 + ], + [ + 60.187244, + 24.836261 + ], + [ + 60.187244, + 24.836303 + ], + [ + 60.187238, + 24.836302 + ], + [ + 60.187235, + 24.836506 + ], + [ + 60.187241, + 24.836507 + ], + [ + 60.18724, + 24.836541 + ], + [ + 60.187287, + 24.836545 + ], + [ + 60.187305, + 24.836546 + ], + [ + 60.187336, + 24.836548 + ], + [ + 60.187336, + 24.836539 + ], + [ + 60.187368, + 24.836542 + ], + [ + 60.187368, + 24.836519 + ], + [ + 60.187439, + 24.836524 + ], + [ + 60.187444, + 24.83623 + ], + [ + 60.187374, + 24.836225 + ], + [ + 60.187374, + 24.836206 + ], + [ + 60.187355, + 24.836205 + ], + [ + 60.187251, + 24.836198 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 3 A", + "id": "polyteekkarimuseo", + "latlon": [ + 60.187343, + 24.836548 + ], + "name": "Opiskelijakulttuurimuseo", + "name_en": "Museum of Student Life", + "opening_hours": "\"open by agreement\"", + "osm_elements": [ + [ + "node", + "25038585" + ] + ], + "parents": [ + "JMT3a" + ], + "type": "museum" + }, + { + "address": "J\u00e4mer\u00e4ntaival 3 B", + "aliases": [ + "JMT3 B" + ], + "id": "JMT3b", + "latlon": [ + 60.187022, + 24.836131 + ], + "name": "J\u00e4mer\u00e4ntaival 3 B", + "osm_elements": [ + [ + "way", + 24334035 + ] + ], + "outline": [ + [ + 60.186937, + 24.835941 + ], + [ + 60.186932, + 24.836198 + ], + [ + 60.186938, + 24.836198 + ], + [ + 60.186936, + 24.836315 + ], + [ + 60.186982, + 24.836319 + ], + [ + 60.186983, + 24.836303 + ], + [ + 60.187052, + 24.836308 + ], + [ + 60.187053, + 24.836292 + ], + [ + 60.187127, + 24.836297 + ], + [ + 60.187129, + 24.836183 + ], + [ + 60.187131, + 24.836091 + ], + [ + 60.187133, + 24.835987 + ], + [ + 60.187061, + 24.835982 + ], + [ + 60.187062, + 24.835962 + ], + [ + 60.18699, + 24.835957 + ], + [ + 60.18699, + 24.835945 + ], + [ + 60.186937, + 24.835941 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 3 C", + "aliases": [ + "JMT3 C" + ], + "id": "JMT3c", + "latlon": [ + 60.187217, + 24.837011 + ], + "name": "J\u00e4mer\u00e4ntaival 3 C", + "osm_elements": [ + [ + "way", + 24333952 + ] + ], + "outline": [ + [ + 60.187094, + 24.836844 + ], + [ + 60.187099, + 24.837101 + ], + [ + 60.187105, + 24.8371 + ], + [ + 60.187108, + 24.837222 + ], + [ + 60.187157, + 24.837218 + ], + [ + 60.187157, + 24.8372 + ], + [ + 60.187228, + 24.837194 + ], + [ + 60.187227, + 24.837174 + ], + [ + 60.187297, + 24.837167 + ], + [ + 60.187295, + 24.837055 + ], + [ + 60.187331, + 24.837052 + ], + [ + 60.18733, + 24.83701 + ], + [ + 60.187329, + 24.836966 + ], + [ + 60.187341, + 24.836965 + ], + [ + 60.187339, + 24.836856 + ], + [ + 60.18728, + 24.836861 + ], + [ + 60.187221, + 24.836867 + ], + [ + 60.187221, + 24.836846 + ], + [ + 60.187147, + 24.836853 + ], + [ + 60.187147, + 24.836839 + ], + [ + 60.187094, + 24.836844 + ] + ], + "type": "studenthousing" + }, + { + "address": "J\u00e4mer\u00e4ntaival 1", + "aliases": [ + "JMT1" + ], + "id": "JMT1", + "latlon": [ + 60.187031, + 24.834883 + ], + "name": "J\u00e4mer\u00e4ntaival 1", + "osm_elements": [ + [ + "way", + 24334123 + ] + ], + "outline": [ + [ + 60.186892, + 24.835011 + ], + [ + 60.186896, + 24.834785 + ], + [ + 60.187036, + 24.834794 + ], + [ + 60.187393, + 24.834816 + ], + [ + 60.187395, + 24.834705 + ], + [ + 60.187407, + 24.834706 + ], + [ + 60.18741, + 24.834553 + ], + [ + 60.187359, + 24.834549 + ], + [ + 60.187359, + 24.834523 + ], + [ + 60.187105, + 24.834507 + ], + [ + 60.187105, + 24.834529 + ], + [ + 60.187056, + 24.834526 + ], + [ + 60.187057, + 24.834501 + ], + [ + 60.186925, + 24.834492 + ], + [ + 60.186925, + 24.834512 + ], + [ + 60.186876, + 24.834509 + ], + [ + 60.186875, + 24.834585 + ], + [ + 60.1868, + 24.83458 + ], + [ + 60.1868, + 24.834553 + ], + [ + 60.186721, + 24.834477 + ], + [ + 60.18672, + 24.834574 + ], + [ + 60.186729, + 24.834698 + ], + [ + 60.186788, + 24.83493 + ], + [ + 60.186812, + 24.83508 + ], + [ + 60.186857, + 24.835182 + ], + [ + 60.18691, + 24.835246 + ], + [ + 60.186916, + 24.835218 + ], + [ + 60.186954, + 24.835253 + ], + [ + 60.186951, + 24.835266 + ], + [ + 60.18716, + 24.83546 + ], + [ + 60.187165, + 24.835441 + ], + [ + 60.187212, + 24.835485 + ], + [ + 60.187244, + 24.835342 + ], + [ + 60.187236, + 24.835334 + ], + [ + 60.187263, + 24.835217 + ], + [ + 60.187053, + 24.835023 + ], + [ + 60.187041, + 24.835078 + ], + [ + 60.186997, + 24.835038 + ], + [ + 60.18699, + 24.835031 + ], + [ + 60.186977, + 24.835089 + ], + [ + 60.186892, + 24.835011 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otakaari 18", + "aliases": [ + "OK18" + ], + "id": "OK18", + "latlon": [ + 60.188216, + 24.835365 + ], + "name": "Ossin linna", + "osm_elements": [ + [ + "way", + 4259264 + ] + ], + "outline": [ + [ + 60.187966, + 24.835486 + ], + [ + 60.187977, + 24.835483 + ], + [ + 60.187971, + 24.835401 + ], + [ + 60.187962, + 24.835282 + ], + [ + 60.188215, + 24.835202 + ], + [ + 60.188219, + 24.835245 + ], + [ + 60.188238, + 24.83524 + ], + [ + 60.188261, + 24.835237 + ], + [ + 60.188257, + 24.835116 + ], + [ + 60.188501, + 24.835086 + ], + [ + 60.188507, + 24.835249 + ], + [ + 60.188507, + 24.835283 + ], + [ + 60.188522, + 24.835281 + ], + [ + 60.188527, + 24.835425 + ], + [ + 60.188248, + 24.83546 + ], + [ + 60.188248, + 24.835432 + ], + [ + 60.188244, + 24.835432 + ], + [ + 60.188233, + 24.835436 + ], + [ + 60.188241, + 24.835539 + ], + [ + 60.187976, + 24.835623 + ], + [ + 60.187974, + 24.835599 + ], + [ + 60.187966, + 24.835486 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otakaari 20", + "aliases": [ + "OK20" + ], + "id": "OK20", + "latlon": [ + 60.186778, + 24.833729 + ], + "name": "Otakaari 20", + "osm_elements": [ + [ + "way", + 24334160 + ] + ], + "outline": [ + [ + 60.186553, + 24.833536 + ], + [ + 60.186528, + 24.833719 + ], + [ + 60.18656, + 24.833734 + ], + [ + 60.186556, + 24.833772 + ], + [ + 60.186782, + 24.833889 + ], + [ + 60.186788, + 24.833851 + ], + [ + 60.18696, + 24.83394 + ], + [ + 60.186969, + 24.833868 + ], + [ + 60.186998, + 24.833883 + ], + [ + 60.187004, + 24.833837 + ], + [ + 60.187043, + 24.833858 + ], + [ + 60.187064, + 24.833697 + ], + [ + 60.186844, + 24.833583 + ], + [ + 60.186838, + 24.83363 + ], + [ + 60.186593, + 24.833507 + ], + [ + 60.186586, + 24.833554 + ], + [ + 60.186553, + 24.833536 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otaranta 8 A", + "aliases": [ + "OR8 A" + ], + "id": "OR8a", + "latlon": [ + 60.186582, + 24.835698 + ], + "name": "Otaranta 8 A", + "osm_elements": [ + [ + "way", + 24342700 + ] + ], + "outline": [ + [ + 60.186683, + 24.835454 + ], + [ + 60.186587, + 24.835459 + ], + [ + 60.186589, + 24.835646 + ], + [ + 60.18638, + 24.835656 + ], + [ + 60.186384, + 24.83595 + ], + [ + 60.18645, + 24.835947 + ], + [ + 60.186449, + 24.835814 + ], + [ + 60.18663, + 24.835805 + ], + [ + 60.18663, + 24.835836 + ], + [ + 60.18671, + 24.835833 + ], + [ + 60.186707, + 24.835609 + ], + [ + 60.186685, + 24.83561 + ], + [ + 60.186683, + 24.835454 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otaranta 8 B", + "aliases": [ + "OR8 B" + ], + "id": "OR8b", + "latlon": [ + 60.186582, + 24.836236 + ], + "name": "Otaranta 8 B", + "osm_elements": [ + [ + "way", + 24342691 + ] + ], + "outline": [ + [ + 60.186708, + 24.836011 + ], + [ + 60.186572, + 24.836022 + ], + [ + 60.186575, + 24.836206 + ], + [ + 60.186393, + 24.836221 + ], + [ + 60.186399, + 24.836474 + ], + [ + 60.186471, + 24.836468 + ], + [ + 60.18647, + 24.836398 + ], + [ + 60.1867, + 24.836379 + ], + [ + 60.186696, + 24.836203 + ], + [ + 60.186712, + 24.836202 + ], + [ + 60.186708, + 24.836011 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otaranta 8 C", + "aliases": [ + "OR8 C" + ], + "id": "OR8c", + "latlon": [ + 60.186185, + 24.836088 + ], + "name": "Otaranta 8 C", + "osm_elements": [ + [ + "way", + 24342761 + ] + ], + "outline": [ + [ + 60.186295, + 24.835851 + ], + [ + 60.186174, + 24.835854 + ], + [ + 60.186176, + 24.836039 + ], + [ + 60.18598, + 24.836044 + ], + [ + 60.185982, + 24.836329 + ], + [ + 60.186056, + 24.836327 + ], + [ + 60.186055, + 24.836203 + ], + [ + 60.186235, + 24.836198 + ], + [ + 60.186235, + 24.836226 + ], + [ + 60.186316, + 24.836223 + ], + [ + 60.186314, + 24.835999 + ], + [ + 60.186296, + 24.836 + ], + [ + 60.186295, + 24.835851 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otaranta 8 D", + "aliases": [ + "OR8 D" + ], + "id": "OR8d", + "latlon": [ + 60.186189, + 24.836624 + ], + "name": "Otaranta 8 D", + "osm_elements": [ + [ + "way", + 24342769 + ] + ], + "outline": [ + [ + 60.186315, + 24.836407 + ], + [ + 60.186176, + 24.836415 + ], + [ + 60.186178, + 24.836583 + ], + [ + 60.185999, + 24.836592 + ], + [ + 60.186003, + 24.83686 + ], + [ + 60.186078, + 24.836856 + ], + [ + 60.186077, + 24.836783 + ], + [ + 60.18631, + 24.836771 + ], + [ + 60.186308, + 24.836596 + ], + [ + 60.186318, + 24.836596 + ], + [ + 60.186315, + 24.836407 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otaranta 8 E", + "aliases": [ + "OR8 E" + ], + "id": "OR8e", + "latlon": [ + 60.186376, + 24.836951 + ], + "name": "Otaranta 8 E", + "osm_elements": [ + [ + "way", + 24342775 + ] + ], + "outline": [ + [ + 60.186518, + 24.836736 + ], + [ + 60.186383, + 24.836738 + ], + [ + 60.186384, + 24.836932 + ], + [ + 60.186156, + 24.836936 + ], + [ + 60.186157, + 24.837179 + ], + [ + 60.186242, + 24.837178 + ], + [ + 60.186241, + 24.837089 + ], + [ + 60.186509, + 24.837085 + ], + [ + 60.186509, + 24.836927 + ], + [ + 60.186518, + 24.836927 + ], + [ + 60.186518, + 24.836736 + ] + ], + "type": "studenthousing" + }, + { + "address": "Otakaari 27", + "aliases": [ + "Otaniemen ostoskeskus", + "Otaniemi shopping center" + ], + "children": [ + "r020-atm", + "shortcut", + "pukupesu", + "tapiolan-juhlapuku", + "tervystalo-ablanc", + "taproomd20" + ], + "id": "r020", + "latlon": [ + 60.184209, + 24.830789 + ], + "name": "A Blanc", + "osm_elements": [ + [ + "way", + 7589963 + ] + ], + "outline": [ + [ + 60.184435, + 24.830517 + ], + [ + 60.184416, + 24.830546 + ], + [ + 60.184402, + 24.830564 + ], + [ + 60.184416, + 24.830604 + ], + [ + 60.184248, + 24.830844 + ], + [ + 60.184234, + 24.830804 + ], + [ + 60.184181, + 24.83088 + ], + [ + 60.18383, + 24.831382 + ], + [ + 60.18375, + 24.831497 + ], + [ + 60.183689, + 24.831325 + ], + [ + 60.184099, + 24.830737 + ], + [ + 60.184374, + 24.830344 + ], + [ + 60.184422, + 24.830481 + ], + [ + 60.184435, + 24.830517 + ] + ], + "type": "auxbuilding" + }, + { + "id": "r011-ywing", + "latlon": [ + 60.183759, + 24.824138 + ], + "name": "A siipi Kemma", + "name_en": "A wing Kemma", + "name_sv": "A flygeln Kemma", + "osm_elements": [ + [ + "way", + 532048006 + ] + ], + "outline": [ + [ + 60.183707, + 24.82448 + ], + [ + 60.183771, + 24.824385 + ], + [ + 60.183801, + 24.824339 + ], + [ + 60.183836, + 24.824288 + ], + [ + 60.183804, + 24.824199 + ], + [ + 60.183824, + 24.824173 + ], + [ + 60.183846, + 24.824143 + ], + [ + 60.183829, + 24.824081 + ], + [ + 60.18383, + 24.824036 + ], + [ + 60.183834, + 24.823983 + ], + [ + 60.183856, + 24.823941 + ], + [ + 60.183754, + 24.823669 + ], + [ + 60.18369, + 24.823763 + ], + [ + 60.183656, + 24.823896 + ], + [ + 60.183653, + 24.824004 + ], + [ + 60.183627, + 24.824056 + ], + [ + 60.18372, + 24.824315 + ], + [ + 60.183673, + 24.824383 + ], + [ + 60.183707, + 24.82448 + ] + ], + "parents": [ + "r011" + ], + "type": "location" + }, + { + "address": "Otakaari 2", + "id": "aaltoshop", + "latlon": [ + 60.186425, + 24.826216 + ], + "name": "Aalto shop", + "opening_hours": "Mo-Fr 09:00-17:00", + "osm_elements": [ + [ + "node", + "12141712494" + ] + ], + "parents": [ + "marsio" + ], + "type": "shopping" + }, + { + "id": "ainocafe", + "latlon": [ + 60.185742, + 24.82701 + ], + "name": "Aino cafe", + "opening_hours": "Mo-Th 08:00-18:00; Fr 08:00-15:00; PH off", + "osm_elements": [ + [ + "node", + "5004956486" + ] + ], + "parents": [ + "main" + ], + "type": "cafe" + }, + { + "id": "r011-bwing", + "latlon": [ + 60.183849, + 24.825682 + ], + "name": "B siipi Kemma", + "name_en": "B wing Kemma", + "name_sv": "B flygeln Kemma", + "osm_elements": [ + [ + "way", + 532048005 + ] + ], + "outline": [ + [ + 60.183723, + 24.825382 + ], + [ + 60.183845, + 24.825205 + ], + [ + 60.183881, + 24.825303 + ], + [ + 60.184086, + 24.825875 + ], + [ + 60.183974, + 24.826037 + ], + [ + 60.183842, + 24.826229 + ], + [ + 60.183757, + 24.82599 + ], + [ + 60.183878, + 24.825812 + ], + [ + 60.183865, + 24.825776 + ], + [ + 60.183769, + 24.825511 + ], + [ + 60.183723, + 24.825382 + ] + ], + "parents": [ + "r011" + ], + "type": "location" + }, + { + "id": "r011-cwing", + "latlon": [ + 60.183687, + 24.825119 + ], + "name": "C siipi Kemma", + "name_en": "C wing Kemma", + "name_sv": "C flygeln Kemma", + "osm_elements": [ + [ + "way", + 532048004 + ] + ], + "outline": [ + [ + 60.183551, + 24.825632 + ], + [ + 60.183595, + 24.825568 + ], + [ + 60.183723, + 24.825382 + ], + [ + 60.183845, + 24.825205 + ], + [ + 60.183856, + 24.825189 + ], + [ + 60.183869, + 24.825171 + ], + [ + 60.183926, + 24.825088 + ], + [ + 60.183862, + 24.82491 + ], + [ + 60.183832, + 24.824828 + ], + [ + 60.183803, + 24.824745 + ], + [ + 60.18372, + 24.824517 + ], + [ + 60.183707, + 24.82448 + ], + [ + 60.183673, + 24.824383 + ], + [ + 60.183537, + 24.82458 + ], + [ + 60.183717, + 24.825081 + ], + [ + 60.183685, + 24.825128 + ], + [ + 60.183494, + 24.825405 + ], + [ + 60.183461, + 24.825453 + ], + [ + 60.183504, + 24.825573 + ], + [ + 60.183521, + 24.825548 + ], + [ + 60.183551, + 24.825632 + ] + ], + "parents": [ + "r011" + ], + "type": "location" + }, + { + "id": "r011-dwing", + "latlon": [ + 60.183447, + 24.824374 + ], + "name": "D siipi Kemma", + "name_en": "D wing Kemma", + "name_sv": "D flygeln Kemma", + "osm_elements": [ + [ + "way", + 532048003 + ] + ], + "outline": [ + [ + 60.183483, + 24.823654 + ], + [ + 60.183367, + 24.823823 + ], + [ + 60.183521, + 24.824251 + ], + [ + 60.183513, + 24.824262 + ], + [ + 60.183507, + 24.824271 + ], + [ + 60.183225, + 24.824679 + ], + [ + 60.183198, + 24.824721 + ], + [ + 60.183253, + 24.824874 + ], + [ + 60.183276, + 24.82484 + ], + [ + 60.183305, + 24.824918 + ], + [ + 60.183458, + 24.824695 + ], + [ + 60.183537, + 24.82458 + ], + [ + 60.183673, + 24.824383 + ], + [ + 60.18372, + 24.824315 + ], + [ + 60.183627, + 24.824056 + ], + [ + 60.183483, + 24.823654 + ] + ], + "parents": [ + "r011" + ], + "type": "location" + }, + { + "id": "r011-ewing", + "latlon": [ + 60.183279, + 24.823739 + ], + "name": "E siipi Kemma", + "name_en": "E wing Kemma", + "name_sv": "E flygeln Kemma", + "osm_elements": [ + [ + "way", + 532048002 + ] + ], + "outline": [ + [ + 60.183213, + 24.823617 + ], + [ + 60.183266, + 24.823541 + ], + [ + 60.183286, + 24.823596 + ], + [ + 60.183337, + 24.823521 + ], + [ + 60.183464, + 24.823336 + ], + [ + 60.183546, + 24.823563 + ], + [ + 60.183483, + 24.823654 + ], + [ + 60.183367, + 24.823823 + ], + [ + 60.18334, + 24.823861 + ], + [ + 60.183126, + 24.824173 + ], + [ + 60.183042, + 24.824296 + ], + [ + 60.18294, + 24.824014 + ], + [ + 60.183213, + 24.823617 + ] + ], + "parents": [ + "r011" + ], + "type": "location" + }, + { + "id": "elissacafe", + "latlon": [ + 60.186874, + 24.828737 + ], + "name": "Elissa cafe", + "name_en": "Cafe Elissa", + "opening_hours": "Mo-Th 09:00-16:00; Fr 09:00-14:00; PH off", + "osm_elements": [ + [ + "node", + "5004956487" + ] + ], + "parents": [ + "main" + ], + "type": "cafe" + }, + { + "id": "r011-fwing", + "latlon": [ + 60.18318, + 24.823441 + ], + "name": "F siipi Kemma", + "name_en": "F wing Kemma", + "name_sv": "F flygeln Kemma", + "osm_elements": [ + [ + "way", + 532048001 + ] + ], + "outline": [ + [ + 60.183213, + 24.823617 + ], + [ + 60.1832, + 24.823581 + ], + [ + 60.183183, + 24.823534 + ], + [ + 60.183207, + 24.823499 + ], + [ + 60.183194, + 24.823462 + ], + [ + 60.183135, + 24.823548 + ], + [ + 60.183111, + 24.823485 + ], + [ + 60.182987, + 24.823159 + ], + [ + 60.183059, + 24.823056 + ], + [ + 60.183132, + 24.822952 + ], + [ + 60.183337, + 24.823521 + ], + [ + 60.183286, + 24.823596 + ], + [ + 60.183266, + 24.823541 + ], + [ + 60.183213, + 24.823617 + ] + ], + "parents": [ + "r011" + ], + "type": "location" + }, + { + "address": "Otakaari 3", + "id": "kvarkki", + "latlon": [ + 60.188254, + 24.830011 + ], + "name": "Kvarkki", + "opening_hours": "Mo-Fr 08:00-15:00; Mo-Fr 10:30-14:00 \"lunch\"; PH off", + "osm_elements": [ + [ + "node", + "577022359" + ] + ], + "parents": [ + "F" + ], + "type": "restaurant" + }, + { + "id": "silinteri", + "latlon": [ + 60.185309, + 24.82685 + ], + "name": "Silinteri", + "note": "This is a \"staff restaurant\". No student discount and slightly more expensive, and extremely limited seating, but theoretically anyone can eat here.", + "opening_hours": "Mo-Fr 10:45-13:00; PH off", + "osm_elements": [ + [ + "node", + "5034218017" + ] + ], + "parents": [ + "main" + ], + "type": "restaurant" + }, + { + "id": "sodexo-cs", + "latlon": [ + 60.186972, + 24.821651 + ], + "name": "Sodexo", + "opening_hours": "Mo-Fr 08:00-15:00; Mo-Fr 08:00-10:00 \"breakfast\"; Mo-Fr 11:00-15:00 \"lunch\"; PH off", + "osm_elements": [ + [ + "node", + "580704688" + ] + ], + "parents": [ + "T" + ], + "type": "restaurant" + }, + { + "address": "Otakaari 22", + "id": "tff", + "latlon": [ + 60.186082, + 24.833138 + ], + "lore": "The only restaurant still student-owned.", + "name": "T\u00e4ff\u00e4", + "opening_hours": "Mo-Fr 10:30-15:00", + "osm_elements": [ + [ + "node", + "580707759" + ] + ], + "parents": [ + "r040" + ], + "type": "restaurant" + }, + { + "address": "Metallimiehenkuja 2", + "children": [ + "valimo" + ], + "id": "r059", + "latlon": [ + 60.18359, + 24.828573 + ], + "name": "Valimo", + "osm_elements": [ + [ + "way", + 7588897 + ] + ], + "outline": [ + [ + 60.183736, + 24.828752 + ], + [ + 60.183701, + 24.828816 + ], + [ + 60.183692, + 24.828834 + ], + [ + 60.183703, + 24.828859 + ], + [ + 60.183652, + 24.828954 + ], + [ + 60.18334, + 24.82827 + ], + [ + 60.183391, + 24.828177 + ], + [ + 60.18341, + 24.828143 + ], + [ + 60.183436, + 24.828094 + ], + [ + 60.183689, + 24.828649 + ], + [ + 60.183736, + 24.828752 + ] + ], + "type": "auxbuilding" + }, + { + "id": "valimo", + "latlon": [ + 60.183652, + 24.828772 + ], + "name": "Valimo", + "opening_hours": "Mo-Fr 10:00-14:30; Mo-Fr 10:30-14:30 \"lunch\"; PH off", + "osm_elements": [ + [ + "node", + "4840360721" + ] + ], + "parents": [ + "r059" + ], + "type": "restaurant" + }, + { + "address": "Otaniementie 12", + "floor": 2, + "id": "abloc-wickedrabbit", + "latlon": [ + 60.18506, + 24.82518 + ], + "name": "Wicked Rabbit", + "note": "within the Fazer restaurant in A bloc.", + "parents": [ + "abloc" + ], + "type": "restaurant" + }, + { + "address": "Alvarinaukio 1", + "aliases": [ + "Etno" + ], + "id": "xburger", + "latlon": [ + 60.18396, + 24.830553 + ], + "name": "X-burger", + "opening_hours": "Mo-Fr 10:30-14:00, 18:00-24:00; Sa-Su 00:00-03:00, 18:00-24:00", + "osm_elements": [ + [ + "way", + 322041317 + ] + ], + "outline": [ + [ + 60.183939, + 24.830561 + ], + [ + 60.183981, + 24.830506 + ], + [ + 60.183992, + 24.83054 + ], + [ + 60.183951, + 24.830596 + ], + [ + 60.183939, + 24.830561 + ] + ], + "type": "restaurant" + }, + { + "address": "Otakaari 12", + "aliases": [ + "R042", + "YHTS", + "SHVS", + "FSHS" + ], + "id": "r042", + "latlon": [ + 60.190995, + 24.831966 + ], + "name": "Ylioppilaiden terveydenhoitos\u00e4\u00e4ti\u00f6", + "name_en": "Finnish Student Health Service", + "name_sv": "Studenternas h\u00e4lsov\u00e5rdsstiftelse", + "osm_elements": [ + [ + "way", + 4266890 + ] + ], + "outline": [ + [ + 60.190828, + 24.831731 + ], + [ + 60.190824, + 24.831616 + ], + [ + 60.191106, + 24.831577 + ], + [ + 60.191106, + 24.831593 + ], + [ + 60.191139, + 24.831589 + ], + [ + 60.191145, + 24.831752 + ], + [ + 60.191075, + 24.831761 + ], + [ + 60.191098, + 24.832407 + ], + [ + 60.191026, + 24.832417 + ], + [ + 60.191024, + 24.832357 + ], + [ + 60.190972, + 24.832365 + ], + [ + 60.190973, + 24.832395 + ], + [ + 60.190912, + 24.832403 + ], + [ + 60.190896, + 24.831957 + ], + [ + 60.190963, + 24.831948 + ], + [ + 60.190964, + 24.831988 + ], + [ + 60.191017, + 24.83198 + ], + [ + 60.19101, + 24.831789 + ], + [ + 60.190828, + 24.831731 + ] + ], + "type": "auxbuilding" + }, + { + "id": "agrid-A", + "latlon": [ + 60.188982, + 24.830144 + ], + "name": "A", + "name_en": "A wing (A Grid)", + "osm_elements": [ + [ + "way", + 97545820 + ] + ], + "outline": [ + [ + 60.189054, + 24.830336 + ], + [ + 60.189035, + 24.830295 + ], + [ + 60.189014, + 24.83027 + ], + [ + 60.188991, + 24.830263 + ], + [ + 60.188965, + 24.830271 + ], + [ + 60.18894, + 24.830289 + ], + [ + 60.188917, + 24.830323 + ], + [ + 60.188866, + 24.830213 + ], + [ + 60.18884, + 24.830165 + ], + [ + 60.188803, + 24.83009 + ], + [ + 60.188855, + 24.83001 + ], + [ + 60.188908, + 24.829961 + ], + [ + 60.188955, + 24.829939 + ], + [ + 60.189004, + 24.82993 + ], + [ + 60.189048, + 24.829947 + ], + [ + 60.189092, + 24.829977 + ], + [ + 60.189136, + 24.83003 + ], + [ + 60.189174, + 24.830098 + ], + [ + 60.189054, + 24.830336 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-B", + "latlon": [ + 60.188991, + 24.830409 + ], + "name": "B", + "name_en": "B wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799732 + ] + ], + "outline": [ + [ + 60.189054, + 24.830336 + ], + [ + 60.189053, + 24.830406 + ], + [ + 60.189049, + 24.830639 + ], + [ + 60.188981, + 24.830639 + ], + [ + 60.188914, + 24.83064 + ], + [ + 60.188913, + 24.830606 + ], + [ + 60.188917, + 24.830323 + ], + [ + 60.18894, + 24.830289 + ], + [ + 60.188965, + 24.830271 + ], + [ + 60.188991, + 24.830263 + ], + [ + 60.189014, + 24.83027 + ], + [ + 60.189035, + 24.830295 + ], + [ + 60.189054, + 24.830336 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "children": [ + "agrid-tapaus", + "agrid-agridimpact", + "agrid-until" + ], + "id": "agrid-CN", + "latlon": [ + 60.189114, + 24.830786 + ], + "name": "CN", + "name_en": "CN wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799726 + ] + ], + "outline": [ + [ + 60.189032, + 24.830913 + ], + [ + 60.189032, + 24.830775 + ], + [ + 60.188979, + 24.830773 + ], + [ + 60.188981, + 24.830639 + ], + [ + 60.189049, + 24.830639 + ], + [ + 60.189329, + 24.830645 + ], + [ + 60.189329, + 24.830742 + ], + [ + 60.189329, + 24.830912 + ], + [ + 60.189049, + 24.830913 + ], + [ + 60.189032, + 24.830913 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "children": [ + "agrid-startupcenter", + "agrid-esa" + ], + "id": "agrid-CS", + "latlon": [ + 60.188855, + 24.83077 + ], + "name": "CS", + "name_en": "CS wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799727 + ] + ], + "outline": [ + [ + 60.189032, + 24.830913 + ], + [ + 60.188958, + 24.830912 + ], + [ + 60.18868, + 24.830905 + ], + [ + 60.188636, + 24.830905 + ], + [ + 60.188636, + 24.830724 + ], + [ + 60.188636, + 24.830639 + ], + [ + 60.188749, + 24.830639 + ], + [ + 60.188847, + 24.830639 + ], + [ + 60.188914, + 24.83064 + ], + [ + 60.188981, + 24.830639 + ], + [ + 60.188979, + 24.830773 + ], + [ + 60.189032, + 24.830775 + ], + [ + 60.189032, + 24.830913 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-D", + "latlon": [ + 60.189021, + 24.831075 + ], + "name": "D", + "name_en": "D wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799725 + ] + ], + "outline": [ + [ + 60.189049, + 24.830913 + ], + [ + 60.189032, + 24.830913 + ], + [ + 60.188958, + 24.830912 + ], + [ + 60.188957, + 24.831246 + ], + [ + 60.189031, + 24.831247 + ], + [ + 60.189048, + 24.831247 + ], + [ + 60.189048, + 24.831208 + ], + [ + 60.189049, + 24.830913 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-EN", + "latlon": [ + 60.189165, + 24.831367 + ], + "name": "EN", + "name_en": "EN wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799722 + ] + ], + "outline": [ + [ + 60.18933, + 24.831242 + ], + [ + 60.189048, + 24.831247 + ], + [ + 60.189031, + 24.831247 + ], + [ + 60.189031, + 24.831386 + ], + [ + 60.189069, + 24.831385 + ], + [ + 60.18907, + 24.83151 + ], + [ + 60.189088, + 24.831511 + ], + [ + 60.189327, + 24.831514 + ], + [ + 60.189327, + 24.831382 + ], + [ + 60.18933, + 24.831242 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-ES", + "latlon": [ + 60.188917, + 24.831375 + ], + "name": "ES", + "name_en": "ES wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799724 + ] + ], + "outline": [ + [ + 60.1888, + 24.831231 + ], + [ + 60.188799, + 24.831313 + ], + [ + 60.188798, + 24.831436 + ], + [ + 60.188798, + 24.831506 + ], + [ + 60.188851, + 24.831507 + ], + [ + 60.188994, + 24.831508 + ], + [ + 60.18907, + 24.83151 + ], + [ + 60.189069, + 24.831385 + ], + [ + 60.189031, + 24.831386 + ], + [ + 60.189031, + 24.831247 + ], + [ + 60.188957, + 24.831246 + ], + [ + 60.1888, + 24.831231 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "children": [ + "ELEC" + ], + "id": "agrid-K", + "latlon": [ + 60.188719, + 24.831375 + ], + "name": "K", + "name_en": "K wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799723 + ] + ], + "outline": [ + [ + 60.188798, + 24.831436 + ], + [ + 60.188767, + 24.831436 + ], + [ + 60.188767, + 24.831585 + ], + [ + 60.188758, + 24.831604 + ], + [ + 60.188659, + 24.831603 + ], + [ + 60.18865, + 24.831584 + ], + [ + 60.188651, + 24.831377 + ], + [ + 60.188659, + 24.831378 + ], + [ + 60.188659, + 24.831331 + ], + [ + 60.188632, + 24.831331 + ], + [ + 60.188632, + 24.831187 + ], + [ + 60.188644, + 24.831167 + ], + [ + 60.188759, + 24.831168 + ], + [ + 60.188767, + 24.831188 + ], + [ + 60.188767, + 24.831312 + ], + [ + 60.18878, + 24.831313 + ], + [ + 60.188799, + 24.831313 + ], + [ + 60.188798, + 24.831436 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-F", + "latlon": [ + 60.189063, + 24.831708 + ], + "name": "F", + "name_en": "F wing (A Grid)", + "osm_elements": [ + [ + "way", + 24342449 + ] + ], + "outline": [ + [ + 60.189088, + 24.831786 + ], + [ + 60.189087, + 24.831838 + ], + [ + 60.189067, + 24.831838 + ], + [ + 60.188993, + 24.831837 + ], + [ + 60.188994, + 24.831508 + ], + [ + 60.18907, + 24.83151 + ], + [ + 60.189088, + 24.831511 + ], + [ + 60.189088, + 24.831755 + ], + [ + 60.189088, + 24.831786 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-GN", + "latlon": [ + 60.189148, + 24.831985 + ], + "name": "GN", + "name_en": "GN wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799720 + ] + ], + "outline": [ + [ + 60.189124, + 24.832105 + ], + [ + 60.189329, + 24.832107 + ], + [ + 60.18933, + 24.831842 + ], + [ + 60.189087, + 24.831838 + ], + [ + 60.189067, + 24.831838 + ], + [ + 60.189066, + 24.831963 + ], + [ + 60.189105, + 24.831965 + ], + [ + 60.189104, + 24.832105 + ], + [ + 60.189124, + 24.832105 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-GS", + "latlon": [ + 60.188875, + 24.831926 + ], + "name": "GS", + "name_en": "GS wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799719 + ] + ], + "outline": [ + [ + 60.188993, + 24.831837 + ], + [ + 60.189067, + 24.831838 + ], + [ + 60.189066, + 24.831963 + ], + [ + 60.189105, + 24.831965 + ], + [ + 60.189104, + 24.832105 + ], + [ + 60.189034, + 24.832105 + ], + [ + 60.18877, + 24.832102 + ], + [ + 60.188587, + 24.832101 + ], + [ + 60.188588, + 24.831801 + ], + [ + 60.188654, + 24.831802 + ], + [ + 60.188654, + 24.831835 + ], + [ + 60.188778, + 24.831836 + ], + [ + 60.188858, + 24.831836 + ], + [ + 60.188993, + 24.831837 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-H", + "latlon": [ + 60.189092, + 24.832309 + ], + "name": "H", + "name_en": "H wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799718 + ] + ], + "outline": [ + [ + 60.189034, + 24.832105 + ], + [ + 60.189033, + 24.832438 + ], + [ + 60.189104, + 24.832442 + ], + [ + 60.189123, + 24.832444 + ], + [ + 60.189124, + 24.832409 + ], + [ + 60.189124, + 24.832386 + ], + [ + 60.189124, + 24.832351 + ], + [ + 60.189124, + 24.832105 + ], + [ + 60.189034, + 24.832105 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "agrid-IS", + "latlon": [ + 60.188906, + 24.832545 + ], + "name": "IS", + "name_en": "IS wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799717 + ] + ], + "outline": [ + [ + 60.189104, + 24.832442 + ], + [ + 60.189104, + 24.832601 + ], + [ + 60.189137, + 24.832698 + ], + [ + 60.188865, + 24.832694 + ], + [ + 60.188767, + 24.832693 + ], + [ + 60.188604, + 24.832691 + ], + [ + 60.188605, + 24.832432 + ], + [ + 60.188773, + 24.832433 + ], + [ + 60.188866, + 24.832436 + ], + [ + 60.189033, + 24.832438 + ], + [ + 60.189104, + 24.832442 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "aliases": [ + "Magneettitalo", + "Magnet House" + ], + "children": [ + "ami-center", + "ami-center", + "ami-center" + ], + "id": "agrid-I", + "latlon": [ + 60.189476, + 24.832578 + ], + "name": "I", + "name_en": "I wing (A Grid)", + "osm_elements": [ + [ + "way", + 558799716 + ] + ], + "outline": [ + [ + 60.189123, + 24.832444 + ], + [ + 60.189104, + 24.832442 + ], + [ + 60.189104, + 24.832601 + ], + [ + 60.189137, + 24.832698 + ], + [ + 60.189458, + 24.832703 + ], + [ + 60.189594, + 24.832705 + ], + [ + 60.189594, + 24.832754 + ], + [ + 60.189775, + 24.832756 + ], + [ + 60.189806, + 24.832757 + ], + [ + 60.189807, + 24.832509 + ], + [ + 60.189643, + 24.832506 + ], + [ + 60.189644, + 24.832451 + ], + [ + 60.18963, + 24.832451 + ], + [ + 60.189605, + 24.832451 + ], + [ + 60.189123, + 24.832444 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "address": "Otakaari 5", + "id": "agrid-L", + "latlon": [ + 60.189684, + 24.831642 + ], + "name": "Aalto-yliopisto Suurj\u00e4nnitelaboratorio", + "name_en": "L wing (A Grid)", + "osm_elements": [ + [ + "way", + 24342453 + ] + ], + "outline": [ + [ + 60.189796, + 24.831023 + ], + [ + 60.189796, + 24.83118 + ], + [ + 60.18985, + 24.83118 + ], + [ + 60.18985, + 24.831347 + ], + [ + 60.189881, + 24.831348 + ], + [ + 60.18988, + 24.831937 + ], + [ + 60.189827, + 24.831937 + ], + [ + 60.189826, + 24.83218 + ], + [ + 60.189694, + 24.832179 + ], + [ + 60.189663, + 24.832178 + ], + [ + 60.189643, + 24.832178 + ], + [ + 60.189643, + 24.832098 + ], + [ + 60.18963, + 24.832097 + ], + [ + 60.189615, + 24.832097 + ], + [ + 60.189604, + 24.832097 + ], + [ + 60.189509, + 24.832096 + ], + [ + 60.189509, + 24.831845 + ], + [ + 60.18952, + 24.831845 + ], + [ + 60.18952, + 24.831719 + ], + [ + 60.189521, + 24.831378 + ], + [ + 60.189521, + 24.831021 + ], + [ + 60.189648, + 24.831022 + ], + [ + 60.189665, + 24.831022 + ], + [ + 60.189693, + 24.831022 + ], + [ + 60.189796, + 24.831023 + ] + ], + "parents": [ + "agrid" + ], + "type": "wing" + }, + { + "id": "tuas-159xwing", + "latlon": [ + 60.18719, + 24.820062 + ], + "name": "159x siipi TUAS", + "name_en": "159x wing TUAS", + "name_sv": "159x flygeln TUAS", + "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.", + "osm_elements": [ + [ + "way", + 532048010 + ] + ], + "outline": [ + [ + 60.187086, + 24.819875 + ], + [ + 60.187294, + 24.81997 + ], + [ + 60.187394, + 24.820016 + ], + [ + 60.18738, + 24.82014 + ], + [ + 60.187368, + 24.820244 + ], + [ + 60.187351, + 24.820236 + ], + [ + 60.18713, + 24.820134 + ], + [ + 60.187124, + 24.820187 + ], + [ + 60.187011, + 24.820135 + ], + [ + 60.187016, + 24.820078 + ], + [ + 60.187042, + 24.819855 + ], + [ + 60.187086, + 24.819875 + ] + ], + "parents": [ + "tuas" + ], + "type": "wing" + }, + { + "id": "r030-awing", + "latlon": [ + 60.186773, + 24.821407 + ], + "name": "A siipi CS", + "name_en": "A wing CS", + "name_sv": "A flygeln CS", + "osm_elements": [ + [ + "way", + 532048009 + ] + ], + "outline": [ + [ + 60.186961, + 24.82047 + ], + [ + 60.186832, + 24.821898 + ], + [ + 60.186776, + 24.821881 + ], + [ + 60.186752, + 24.822084 + ], + [ + 60.186716, + 24.822336 + ], + [ + 60.186707, + 24.822331 + ], + [ + 60.186677, + 24.822313 + ], + [ + 60.186662, + 24.822304 + ], + [ + 60.186655, + 24.822346 + ], + [ + 60.186583, + 24.822278 + ], + [ + 60.186584, + 24.822272 + ], + [ + 60.186695, + 24.821785 + ], + [ + 60.186708, + 24.821724 + ], + [ + 60.18676, + 24.821139 + ], + [ + 60.186766, + 24.821078 + ], + [ + 60.186818, + 24.820496 + ], + [ + 60.186824, + 24.820433 + ], + [ + 60.186836, + 24.820301 + ], + [ + 60.186881, + 24.820318 + ], + [ + 60.18688, + 24.820335 + ], + [ + 60.18697, + 24.820371 + ], + [ + 60.186961, + 24.82047 + ] + ], + "parents": [ + "T" + ], + "type": "wing" + }, + { + "children": [ + "dept:architecture", + "ARTS" + ], + "id": "A", + "latlon": [ + 60.186169, + 24.829791 + ], + "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.", + "name": "A siipi Main", + "name_en": "A wing Main", + "name_sv": "A flygeln Main", + "osm_elements": [ + [ + "way", + 514232744 + ] + ], + "outline": [ + [ + 60.186066, + 24.829423 + ], + [ + 60.186145, + 24.829473 + ], + [ + 60.18633, + 24.829592 + ], + [ + 60.18634, + 24.829599 + ], + [ + 60.186343, + 24.82958 + ], + [ + 60.186485, + 24.829607 + ], + [ + 60.186472, + 24.829718 + ], + [ + 60.186464, + 24.829718 + ], + [ + 60.186453, + 24.829832 + ], + [ + 60.186445, + 24.82983 + ], + [ + 60.186435, + 24.829957 + ], + [ + 60.186421, + 24.829959 + ], + [ + 60.186363, + 24.830322 + ], + [ + 60.186342, + 24.830449 + ], + [ + 60.186205, + 24.830366 + ], + [ + 60.185962, + 24.83021 + ], + [ + 60.185979, + 24.830102 + ], + [ + 60.185992, + 24.830011 + ], + [ + 60.185996, + 24.829984 + ], + [ + 60.186172, + 24.830094 + ], + [ + 60.186175, + 24.83008 + ], + [ + 60.186178, + 24.830057 + ], + [ + 60.186182, + 24.830036 + ], + [ + 60.186224, + 24.829784 + ], + [ + 60.186181, + 24.829757 + ], + [ + 60.186183, + 24.82973 + ], + [ + 60.186155, + 24.829713 + ], + [ + 60.186148, + 24.82973 + ], + [ + 60.186105, + 24.829704 + ], + [ + 60.186106, + 24.829684 + ], + [ + 60.186078, + 24.829667 + ], + [ + 60.186073, + 24.829684 + ], + [ + 60.186032, + 24.829658 + ], + [ + 60.186033, + 24.829635 + ], + [ + 60.185984, + 24.829607 + ], + [ + 60.18598, + 24.829625 + ], + [ + 60.185951, + 24.829609 + ], + [ + 60.185952, + 24.829585 + ], + [ + 60.185858, + 24.829526 + ], + [ + 60.18589, + 24.829313 + ], + [ + 60.186066, + 24.829423 + ] + ], + "parents": [ + "main" + ], + "type": "wing" + }, + { + "id": "abloc-A", + "latlon": [ + 60.184668, + 24.826063 + ], + "name": "A wing Abloc", + "osm_elements": [ + [ + "way", + 815467163 + ] + ], + "outline": [ + [ + 60.184755, + 24.82591 + ], + [ + 60.184688, + 24.826318 + ], + [ + 60.184576, + 24.826244 + ], + [ + 60.18459, + 24.826157 + ], + [ + 60.184643, + 24.825836 + ], + [ + 60.184755, + 24.82591 + ] + ], + "parents": [ + "abloc" + ], + "type": "wing" + }, + { + "id": "r030-bwing", + "latlon": [ + 60.187151, + 24.821119 + ], + "name": "B siipi CS", + "name_en": "B wing CS", + "name_sv": "B flygeln CS", + "osm_elements": [ + [ + "way", + 532048008 + ] + ], + "outline": [ + [ + 60.186996, + 24.820483 + ], + [ + 60.186977, + 24.820706 + ], + [ + 60.187181, + 24.820788 + ], + [ + 60.187001, + 24.821896 + ], + [ + 60.187078, + 24.821919 + ], + [ + 60.187087, + 24.821863 + ], + [ + 60.187093, + 24.82183 + ], + [ + 60.187124, + 24.821635 + ], + [ + 60.187179, + 24.821289 + ], + [ + 60.187188, + 24.821232 + ], + [ + 60.187233, + 24.820955 + ], + [ + 60.187299, + 24.820997 + ], + [ + 60.187357, + 24.820626 + ], + [ + 60.18734, + 24.820616 + ], + [ + 60.187291, + 24.820588 + ], + [ + 60.186996, + 24.820483 + ] + ], + "parents": [ + "T" + ], + "type": "wing" + }, + { + "id": "r030-cwing", + "latlon": [ + 60.186939, + 24.82173 + ], + "name": "C siipi CS", + "name_en": "C wing CS", + "name_sv": "C flygeln CS", + "note": "The C wing is \"just\" the atrium and some rooms directly connected to it.", + "osm_elements": [ + [ + "way", + 532048007 + ] + ], + "outline": [ + [ + 60.187001, + 24.821896 + ], + [ + 60.187078, + 24.821919 + ], + [ + 60.187066, + 24.821995 + ], + [ + 60.187057, + 24.822052 + ], + [ + 60.18699, + 24.822471 + ], + [ + 60.186979, + 24.822541 + ], + [ + 60.186896, + 24.822486 + ], + [ + 60.1869, + 24.822463 + ], + [ + 60.186903, + 24.822442 + ], + [ + 60.186779, + 24.822398 + ], + [ + 60.1868, + 24.822133 + ], + [ + 60.186776, + 24.822108 + ], + [ + 60.186752, + 24.822084 + ], + [ + 60.186776, + 24.821881 + ], + [ + 60.186832, + 24.821898 + ], + [ + 60.186961, + 24.82047 + ], + [ + 60.18697, + 24.820473 + ], + [ + 60.18698, + 24.820476 + ], + [ + 60.186996, + 24.820483 + ], + [ + 60.186977, + 24.820706 + ], + [ + 60.187181, + 24.820788 + ], + [ + 60.187001, + 24.821896 + ] + ], + "parents": [ + "T" + ], + "type": "wing" + }, + { + "id": "abloc-D", + "latlon": [ + 60.18473, + 24.825041 + ], + "name": "D wing Abloc", + "osm_elements": [ + [ + "way", + 815467164 + ] + ], + "outline": [ + [ + 60.184792, + 24.824945 + ], + [ + 60.184742, + 24.825254 + ], + [ + 60.184637, + 24.825184 + ], + [ + 60.184687, + 24.824876 + ], + [ + 60.184792, + 24.824945 + ] + ], + "parents": [ + "abloc" + ], + "type": "wing" + }, + { + "id": "vare-E", + "latlon": [ + 60.185651, + 24.825783 + ], + "name": "E wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467140 + ] + ], + "outline": [ + [ + 60.18565, + 24.82604 + ], + [ + 60.185543, + 24.825971 + ], + [ + 60.185618, + 24.825504 + ], + [ + 60.185719, + 24.825569 + ], + [ + 60.185724, + 24.825573 + ], + [ + 60.18565, + 24.82604 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "vare-F", + "latlon": [ + 60.185469, + 24.825507 + ], + "name": "F wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467141 + ] + ], + "outline": [ + [ + 60.185509, + 24.825314 + ], + [ + 60.185583, + 24.825475 + ], + [ + 60.185409, + 24.825797 + ], + [ + 60.185335, + 24.825636 + ], + [ + 60.185509, + 24.825314 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "vare-G", + "latlon": [ + 60.185234, + 24.825193 + ], + "name": "G wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467148 + ] + ], + "outline": [ + [ + 60.1853, + 24.82504 + ], + [ + 60.185229, + 24.825484 + ], + [ + 60.185134, + 24.825422 + ], + [ + 60.185205, + 24.824979 + ], + [ + 60.1853, + 24.82504 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "H", + "latlon": [ + 60.185412, + 24.826906 + ], + "lore": "\"H\" stands for \"hallinto\", the original administration wing. Note how you symbolically ascend the stairs to get to it.", + "name": "H siipi Main", + "name_en": "H wing Main", + "name_sv": "H flygeln Main", + "note": "This is practically above Alvari. Go up to the second or third floors from the lobby, then over to it.", + "osm_elements": [ + [ + "way", + 514232720 + ] + ], + "outline": [ + [ + 60.185595, + 24.826875 + ], + [ + 60.185408, + 24.82676 + ], + [ + 60.185322, + 24.826706 + ], + [ + 60.185306, + 24.8268 + ], + [ + 60.185289, + 24.82679 + ], + [ + 60.185257, + 24.827003 + ], + [ + 60.185393, + 24.827088 + ], + [ + 60.185403, + 24.827036 + ], + [ + 60.185555, + 24.827129 + ], + [ + 60.185595, + 24.826875 + ] + ], + "parents": [ + "main" + ], + "type": "wing" + }, + { + "id": "abloc-I", + "latlon": [ + 60.184896, + 24.824576 + ], + "name": "I wing Abloc", + "osm_elements": [ + [ + "way", + 815467161 + ] + ], + "outline": [ + [ + 60.185, + 24.824545 + ], + [ + 60.184811, + 24.824907 + ], + [ + 60.184726, + 24.824726 + ], + [ + 60.184858, + 24.824473 + ], + [ + 60.184914, + 24.824365 + ], + [ + 60.184966, + 24.824474 + ], + [ + 60.185, + 24.824545 + ] + ], + "parents": [ + "abloc" + ], + "type": "wing" + }, + { + "id": "vare-J", + "latlon": [ + 60.18579, + 24.825313 + ], + "name": "J wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467143 + ] + ], + "outline": [ + [ + 60.185907, + 24.825193 + ], + [ + 60.185826, + 24.825028 + ], + [ + 60.185648, + 24.82538 + ], + [ + 60.185726, + 24.825538 + ], + [ + 60.185729, + 24.825545 + ], + [ + 60.185907, + 24.825193 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "main-kwing", + "latlon": [ + 60.185193, + 24.826828 + ], + "lore": "Perhaps \"K\" stands for \"Kirjaamo\", or the Aalto Registry.", + "name": "K siipi Main", + "name_en": "K wing Main", + "name_sv": "K flygeln Main", + "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!", + "osm_elements": [ + [ + "way", + 540151861 + ] + ], + "outline": [ + [ + 60.185277, + 24.826783 + ], + [ + 60.185247, + 24.826969 + ], + [ + 60.185244, + 24.826994 + ], + [ + 60.18522, + 24.826978 + ], + [ + 60.185202, + 24.826966 + ], + [ + 60.185101, + 24.826899 + ], + [ + 60.185103, + 24.826882 + ], + [ + 60.185052, + 24.826794 + ], + [ + 60.185108, + 24.826672 + ], + [ + 60.185143, + 24.826597 + ], + [ + 60.185273, + 24.826677 + ], + [ + 60.185259, + 24.826773 + ], + [ + 60.185277, + 24.826783 + ] + ], + "parents": [ + "main" + ], + "type": "wing" + }, + { + "id": "vare-K", + "latlon": [ + 60.185621, + 24.825136 + ], + "name": "K wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467142 + ] + ], + "outline": [ + [ + 60.185638, + 24.825348 + ], + [ + 60.185525, + 24.825278 + ], + [ + 60.185595, + 24.824819 + ], + [ + 60.185708, + 24.824889 + ], + [ + 60.185638, + 24.825348 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "vare-L", + "latlon": [ + 60.185413, + 24.824898 + ], + "name": "L wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467139 + ] + ], + "outline": [ + [ + 60.185313, + 24.824969 + ], + [ + 60.185384, + 24.825124 + ], + [ + 60.185563, + 24.824792 + ], + [ + 60.185492, + 24.824637 + ], + [ + 60.185313, + 24.824969 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "M", + "latlon": [ + 60.186078, + 24.828924 + ], + "lore": "Originally from \"maanmittaus\" (surveying).", + "name": "M siipi Main", + "name_en": "M wing Main", + "name_sv": "M flygeln Main", + "osm_elements": [ + [ + "way", + 514232739 + ] + ], + "outline": [ + [ + 60.186145, + 24.829473 + ], + [ + 60.186189, + 24.829186 + ], + [ + 60.18646, + 24.829352 + ], + [ + 60.186478, + 24.82923 + ], + [ + 60.186501, + 24.829085 + ], + [ + 60.186233, + 24.828915 + ], + [ + 60.186278, + 24.828621 + ], + [ + 60.186198, + 24.828571 + ], + [ + 60.186153, + 24.828865 + ], + [ + 60.185891, + 24.828692 + ], + [ + 60.185934, + 24.828407 + ], + [ + 60.185831, + 24.828346 + ], + [ + 60.185818, + 24.828434 + ], + [ + 60.185842, + 24.828449 + ], + [ + 60.185781, + 24.828842 + ], + [ + 60.185767, + 24.828933 + ], + [ + 60.1859, + 24.829015 + ], + [ + 60.185905, + 24.828983 + ], + [ + 60.186113, + 24.829111 + ], + [ + 60.186066, + 24.829423 + ], + [ + 60.186145, + 24.829473 + ] + ], + "parents": [ + "main" + ], + "type": "wing" + }, + { + "id": "vare-M", + "latlon": [ + 60.185322, + 24.824634 + ], + "name": "M wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467149 + ] + ], + "outline": [ + [ + 60.185388, + 24.824474 + ], + [ + 60.185315, + 24.824932 + ], + [ + 60.185223, + 24.824873 + ], + [ + 60.185297, + 24.824415 + ], + [ + 60.185388, + 24.824474 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "abloc-N", + "latlon": [ + 60.18514, + 24.824404 + ], + "name": "N wing Abloc", + "osm_elements": [ + [ + "way", + 815467160 + ] + ], + "outline": [ + [ + 60.18518, + 24.824199 + ], + [ + 60.185259, + 24.824365 + ], + [ + 60.185079, + 24.824711 + ], + [ + 60.185, + 24.824545 + ], + [ + 60.18518, + 24.824199 + ] + ], + "parents": [ + "abloc" + ], + "type": "wing" + }, + { + "id": "vare-O", + "latlon": [ + 60.18594, + 24.824795 + ], + "name": "O wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467144 + ] + ], + "outline": [ + [ + 60.185954, + 24.825062 + ], + [ + 60.185848, + 24.824996 + ], + [ + 60.185923, + 24.824524 + ], + [ + 60.185935, + 24.824532 + ], + [ + 60.186029, + 24.824593 + ], + [ + 60.185954, + 24.825062 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "vare-P", + "latlon": [ + 60.185798, + 24.824545 + ], + "name": "P wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467145 + ] + ], + "outline": [ + [ + 60.1859, + 24.824509 + ], + [ + 60.185716, + 24.824866 + ], + [ + 60.18563, + 24.824688 + ], + [ + 60.185814, + 24.82433 + ], + [ + 60.185831, + 24.824365 + ], + [ + 60.1859, + 24.824509 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "vare-Q", + "latlon": [ + 60.185611, + 24.82435 + ], + "name": "Q wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467151 + ] + ], + "outline": [ + [ + 60.185675, + 24.824186 + ], + [ + 60.18561, + 24.824651 + ], + [ + 60.185513, + 24.824595 + ], + [ + 60.185582, + 24.824133 + ], + [ + 60.185675, + 24.824186 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "vare-R", + "latlon": [ + 60.185477, + 24.824168 + ], + "name": "R wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467150 + ] + ], + "outline": [ + [ + 60.18559, + 24.824105 + ], + [ + 60.18541, + 24.824434 + ], + [ + 60.185339, + 24.824277 + ], + [ + 60.185412, + 24.824142 + ], + [ + 60.185519, + 24.823948 + ], + [ + 60.18559, + 24.824105 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "vare-S", + "latlon": [ + 60.186027, + 24.824185 + ], + "name": "S wing V\u00e4re", + "osm_elements": [ + [ + "way", + 815467155 + ] + ], + "outline": [ + [ + 60.186104, + 24.824099 + ], + [ + 60.186029, + 24.824593 + ], + [ + 60.185935, + 24.824532 + ], + [ + 60.185923, + 24.824524 + ], + [ + 60.186009, + 24.824031 + ], + [ + 60.186033, + 24.823982 + ], + [ + 60.186037, + 24.823995 + ], + [ + 60.186044, + 24.824001 + ], + [ + 60.186048, + 24.823994 + ], + [ + 60.186104, + 24.824099 + ] + ], + "parents": [ + "vare" + ], + "type": "wing" + }, + { + "id": "biz-T", + "latlon": [ + 60.185886, + 24.824032 + ], + "name": "T wing BIZ", + "osm_elements": [ + [ + "way", + 815467156 + ] + ], + "outline": [ + [ + 60.185996, + 24.823961 + ], + [ + 60.185904, + 24.823774 + ], + [ + 60.185722, + 24.824135 + ], + [ + 60.185814, + 24.82433 + ], + [ + 60.185996, + 24.823961 + ] + ], + "parents": [ + "R068" + ], + "type": "wing" + }, + { + "children": [ + "itservices" + ], + "id": "U", + "latlon": [ + 60.187136, + 24.828977 + ], + "lore": "The \"U\" comes from \"uusi\" (new) - the new part of the building.", + "name": "U siipi Main", + "name_en": "U wing Main", + "name_sv": "U flygeln Main", + "osm_elements": [ + [ + "way", + 514232732 + ] + ], + "outline": [ + [ + 60.186676, + 24.828882 + ], + [ + 60.186684, + 24.828887 + ], + [ + 60.186853, + 24.828994 + ], + [ + 60.186894, + 24.82902 + ], + [ + 60.18692, + 24.829037 + ], + [ + 60.186987, + 24.829079 + ], + [ + 60.186947, + 24.829248 + ], + [ + 60.186932, + 24.829309 + ], + [ + 60.18693, + 24.82939 + ], + [ + 60.186933, + 24.829411 + ], + [ + 60.186996, + 24.829475 + ], + [ + 60.18701, + 24.829473 + ], + [ + 60.187034, + 24.82942 + ], + [ + 60.187047, + 24.829377 + ], + [ + 60.187066, + 24.829376 + ], + [ + 60.187086, + 24.829376 + ], + [ + 60.187092, + 24.829405 + ], + [ + 60.187103, + 24.829417 + ], + [ + 60.187165, + 24.829419 + ], + [ + 60.187174, + 24.829411 + ], + [ + 60.187193, + 24.82922 + ], + [ + 60.187182, + 24.829212 + ], + [ + 60.187184, + 24.829201 + ], + [ + 60.187192, + 24.829149 + ], + [ + 60.187195, + 24.829133 + ], + [ + 60.187201, + 24.829093 + ], + [ + 60.18721, + 24.829099 + ], + [ + 60.187221, + 24.829105 + ], + [ + 60.187231, + 24.829111 + ], + [ + 60.187239, + 24.829062 + ], + [ + 60.187439, + 24.829177 + ], + [ + 60.187446, + 24.829149 + ], + [ + 60.187485, + 24.829171 + ], + [ + 60.187543, + 24.82881 + ], + [ + 60.187515, + 24.828793 + ], + [ + 60.187522, + 24.828758 + ], + [ + 60.187463, + 24.82872 + ], + [ + 60.187485, + 24.828576 + ], + [ + 60.18746, + 24.828558 + ], + [ + 60.187435, + 24.828541 + ], + [ + 60.187445, + 24.828466 + ], + [ + 60.187205, + 24.828314 + ], + [ + 60.187182, + 24.828299 + ], + [ + 60.187186, + 24.828273 + ], + [ + 60.18717, + 24.828263 + ], + [ + 60.186835, + 24.828053 + ], + [ + 60.186819, + 24.828141 + ], + [ + 60.186797, + 24.828129 + ], + [ + 60.186676, + 24.828882 + ] + ], + "parents": [ + "main" + ], + "type": "wing" + }, + { + "id": "biz-U", + "latlon": [ + 60.185709, + 24.823806 + ], + "name": "U wing BIZ", + "osm_elements": [ + [ + "way", + 815467152 + ] + ], + "outline": [ + [ + 60.185775, + 24.823684 + ], + [ + 60.185705, + 24.82413 + ], + [ + 60.185616, + 24.824074 + ], + [ + 60.185685, + 24.823627 + ], + [ + 60.185696, + 24.823634 + ], + [ + 60.185775, + 24.823684 + ] + ], + "parents": [ + "R068" + ], + "type": "wing" + }, + { + "id": "biz-V", + "latlon": [ + 60.186014, + 24.82364 + ], + "name": "V wing BIZ", + "osm_elements": [ + [ + "way", + 815467158 + ] + ], + "outline": [ + [ + 60.186032, + 24.82385 + ], + [ + 60.185917, + 24.823779 + ], + [ + 60.185986, + 24.823324 + ], + [ + 60.186101, + 24.823395 + ], + [ + 60.186032, + 24.82385 + ] + ], + "parents": [ + "R068" + ], + "type": "wing" + }, + { + "id": "biz-X", + "latlon": [ + 60.185825, + 24.823438 + ], + "name": "X wing BIZ", + "osm_elements": [ + [ + "way", + 815467157 + ] + ], + "outline": [ + [ + 60.185716, + 24.82352 + ], + [ + 60.18573, + 24.823551 + ], + [ + 60.18578, + 24.823653 + ], + [ + 60.185964, + 24.823325 + ], + [ + 60.185966, + 24.823321 + ], + [ + 60.185901, + 24.823177 + ], + [ + 60.185716, + 24.82352 + ] + ], + "parents": [ + "R068" + ], + "type": "wing" + }, + { + "id": "Y", + "latlon": [ + 60.185952, + 24.827885 + ], + "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.", + "name": "Y siipi Main", + "name_en": "Y wing Main", + "name_sv": "Y flygeln Main", + "osm_elements": [ + [ + "way", + 514232725 + ] + ], + "outline": [ + [ + 60.185818, + 24.828434 + ], + [ + 60.185831, + 24.828346 + ], + [ + 60.185934, + 24.828407 + ], + [ + 60.186198, + 24.828571 + ], + [ + 60.186278, + 24.828621 + ], + [ + 60.186359, + 24.828669 + ], + [ + 60.186655, + 24.828842 + ], + [ + 60.186665, + 24.828848 + ], + [ + 60.186664, + 24.828862 + ], + [ + 60.186663, + 24.828874 + ], + [ + 60.186676, + 24.828882 + ], + [ + 60.186797, + 24.828129 + ], + [ + 60.186799, + 24.828105 + ], + [ + 60.186599, + 24.827978 + ], + [ + 60.186379, + 24.827839 + ], + [ + 60.186411, + 24.827611 + ], + [ + 60.186145, + 24.827441 + ], + [ + 60.186026, + 24.827368 + ], + [ + 60.18603, + 24.827342 + ], + [ + 60.186009, + 24.827327 + ], + [ + 60.186025, + 24.827227 + ], + [ + 60.186004, + 24.827209 + ], + [ + 60.18602, + 24.827111 + ], + [ + 60.185993, + 24.827095 + ], + [ + 60.185953, + 24.827071 + ], + [ + 60.185598, + 24.826851 + ], + [ + 60.185595, + 24.826875 + ], + [ + 60.185555, + 24.827129 + ], + [ + 60.185658, + 24.827192 + ], + [ + 60.185706, + 24.82722 + ], + [ + 60.185682, + 24.827373 + ], + [ + 60.18567, + 24.827381 + ], + [ + 60.185638, + 24.827527 + ], + [ + 60.185645, + 24.827552 + ], + [ + 60.185643, + 24.82759 + ], + [ + 60.185638, + 24.827618 + ], + [ + 60.185634, + 24.827635 + ], + [ + 60.185677, + 24.827717 + ], + [ + 60.185684, + 24.827695 + ], + [ + 60.185695, + 24.827711 + ], + [ + 60.185736, + 24.827782 + ], + [ + 60.185778, + 24.827853 + ], + [ + 60.185762, + 24.827964 + ], + [ + 60.185744, + 24.827952 + ], + [ + 60.185741, + 24.827977 + ], + [ + 60.185737, + 24.828 + ], + [ + 60.185733, + 24.828025 + ], + [ + 60.18573, + 24.82805 + ], + [ + 60.185726, + 24.828076 + ], + [ + 60.185718, + 24.828126 + ], + [ + 60.185708, + 24.828191 + ], + [ + 60.185701, + 24.828237 + ], + [ + 60.18569, + 24.828311 + ], + [ + 60.185684, + 24.828349 + ], + [ + 60.185785, + 24.828414 + ], + [ + 60.185804, + 24.828427 + ], + [ + 60.185818, + 24.828434 + ] + ], + "parents": [ + "main" + ], + "type": "wing" + }, + { + "id": "biz-Y", + "latlon": [ + 60.186008, + 24.822866 + ], + "name": "Y wing BIZ", + "osm_elements": [ + [ + "way", + 815467159 + ] + ], + "outline": [ + [ + 60.186076, + 24.822691 + ], + [ + 60.186002, + 24.823166 + ], + [ + 60.185923, + 24.823117 + ], + [ + 60.185929, + 24.823078 + ], + [ + 60.185997, + 24.822641 + ], + [ + 60.186056, + 24.822678 + ], + [ + 60.186076, + 24.822691 + ] + ], + "parents": [ + "R068" + ], + "type": "wing" + }, + { + "id": "tuas-x1xxwing", + "latlon": [ + 60.187071, + 24.818138 + ], + "name": "x1xx siipi TUAS", + "name_en": "x1xx wing TUAS", + "name_sv": "x1xx flygeln TUAS", + "osm_elements": [ + [ + "way", + 532048011 + ] + ], + "outline": [ + [ + 60.187128, + 24.818401 + ], + [ + 60.187137, + 24.818296 + ], + [ + 60.18714, + 24.818271 + ], + [ + 60.187202, + 24.818294 + ], + [ + 60.187222, + 24.818301 + ], + [ + 60.187246, + 24.818044 + ], + [ + 60.187169, + 24.818015 + ], + [ + 60.187185, + 24.817846 + ], + [ + 60.187262, + 24.817874 + ], + [ + 60.187284, + 24.817622 + ], + [ + 60.18721, + 24.817593 + ], + [ + 60.187198, + 24.817589 + ], + [ + 60.187218, + 24.817388 + ], + [ + 60.187082, + 24.817334 + ], + [ + 60.187072, + 24.817439 + ], + [ + 60.18701, + 24.817416 + ], + [ + 60.186989, + 24.817647 + ], + [ + 60.187053, + 24.81767 + ], + [ + 60.187035, + 24.817872 + ], + [ + 60.186971, + 24.817849 + ], + [ + 60.186952, + 24.818069 + ], + [ + 60.187017, + 24.818093 + ], + [ + 60.186998, + 24.818294 + ], + [ + 60.186933, + 24.81827 + ], + [ + 60.186912, + 24.818501 + ], + [ + 60.186973, + 24.818524 + ], + [ + 60.186956, + 24.818708 + ], + [ + 60.186896, + 24.818686 + ], + [ + 60.186873, + 24.818925 + ], + [ + 60.186932, + 24.818948 + ], + [ + 60.186912, + 24.819164 + ], + [ + 60.187053, + 24.819219 + ], + [ + 60.187128, + 24.818401 + ] + ], + "parents": [ + "tuas" + ], + "type": "wing" + }, + { + "id": "tuas-x5xxwing", + "latlon": [ + 60.1873, + 24.819375 + ], + "name": "x5xx siipi TUAS", + "name_en": "x5xx wing TUAS", + "name_sv": "x5xx flygeln TUAS", + "osm_elements": [ + [ + "way", + 532048012 + ] + ], + "outline": [ + [ + 60.187245, + 24.818503 + ], + [ + 60.187086, + 24.819875 + ], + [ + 60.187042, + 24.819855 + ], + [ + 60.187016, + 24.820078 + ], + [ + 60.187011, + 24.820135 + ], + [ + 60.187124, + 24.820187 + ], + [ + 60.18713, + 24.820134 + ], + [ + 60.187351, + 24.820236 + ], + [ + 60.187368, + 24.820244 + ], + [ + 60.18738, + 24.82014 + ], + [ + 60.187394, + 24.820016 + ], + [ + 60.187294, + 24.81997 + ], + [ + 60.187317, + 24.819781 + ], + [ + 60.18742, + 24.819824 + ], + [ + 60.187436, + 24.819701 + ], + [ + 60.187487, + 24.819291 + ], + [ + 60.1875, + 24.819177 + ], + [ + 60.187393, + 24.819127 + ], + [ + 60.187419, + 24.818904 + ], + [ + 60.187442, + 24.818711 + ], + [ + 60.187359, + 24.818672 + ], + [ + 60.187382, + 24.81848 + ], + [ + 60.187335, + 24.818457 + ], + [ + 60.187328, + 24.818454 + ], + [ + 60.187339, + 24.818356 + ], + [ + 60.187266, + 24.818321 + ], + [ + 60.187245, + 24.818503 + ] + ], + "parents": [ + "tuas" + ], + "type": "wing" + }, + { + "aliases": [ + "0.061" + ], + "floor": -1, + "id": "dipoli-0.061", + "latlon": [ + 60.184717, + 24.832626 + ], + "name": "0.061: Klondyke", + "osm_elements": [ + [ + "node", + "6881329023" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "0.061", + "type": "room" + }, + { + "aliases": [ + "1.010" + ], + "floor": 1, + "id": "dipoli-1.010", + "latlon": [ + 60.184947, + 24.831747 + ], + "name": "1.010: Lumituuli", + "osm_elements": [ + [ + "node", + "5131418797" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.010", + "type": "room" + }, + { + "aliases": [ + "1.072" + ], + "floor": 1, + "id": "dipoli-1.072", + "latlon": [ + 60.184988, + 24.833083 + ], + "name": "1.072: Palaver", + "osm_elements": [ + [ + "node", + "5131418790" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.072", + "type": "room" + }, + { + "aliases": [ + "1.073" + ], + "floor": 1, + "id": "dipoli-1.073", + "latlon": [ + 60.185102, + 24.833165 + ], + "name": "1.073: Poli", + "osm_elements": [ + [ + "node", + "5131418791" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.073", + "type": "room" + }, + { + "aliases": [ + "1.078" + ], + "floor": 1, + "id": "dipoli-1.078", + "latlon": [ + 60.185182, + 24.833172 + ], + "name": "1.078: Takka", + "osm_elements": [ + [ + "node", + "5131418792" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.078", + "type": "room" + }, + { + "aliases": [ + "1.093" + ], + "floor": 1, + "id": "dipoli-1.093", + "latlon": [ + 60.185265, + 24.832962 + ], + "name": "1.093: Alma Mater", + "osm_elements": [ + [ + "node", + "5131418793" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.093", + "type": "room" + }, + { + "aliases": [ + "1.154" + ], + "floor": 1, + "id": "dipoli-1.154", + "latlon": [ + 60.185071, + 24.831909 + ], + "name": "1.154: Valsla", + "osm_elements": [ + [ + "node", + "5131418796" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.154", + "type": "room" + }, + { + "aliases": [ + "1.178" + ], + "floor": 1, + "id": "dipoli-1.178", + "latlon": [ + 60.185213, + 24.832441 + ], + "name": "1.178: Mairea", + "osm_elements": [ + [ + "node", + "5131418795" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.178", + "type": "room" + }, + { + "aliases": [ + "1.180" + ], + "floor": 1, + "id": "dipoli-1.180", + "latlon": [ + 60.185225, + 24.832582 + ], + "name": "1.180: Biennale", + "osm_elements": [ + [ + "node", + "5131418794" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.180", + "type": "room" + }, + { + "aliases": [ + "1.183" + ], + "floor": 1, + "id": "dipoli-1.183", + "latlon": [ + 60.185296, + 24.832682 + ], + "name": "1.183: Honko", + "osm_elements": [ + [ + "node", + "5526925883" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "1.183", + "type": "room" + }, + { + "aliases": [ + "101" + ], + "floor": 1, + "id": "K1-101", + "latlon": [ + 60.187278, + 24.826296 + ], + "name": "101", + "osm_elements": [ + [ + "node", + "5232638591" + ] + ], + "parents": [ + "K1" + ], + "ref": "101", + "type": "room" + }, + { + "aliases": [ + "1018" + ], + "floor": 1, + "id": "tuas-1018", + "latlon": [ + 60.186935, + 24.819984 + ], + "name": "1018: AS1", + "osm_elements": [ + [ + "node", + "5105524141" + ] + ], + "parents": [ + "tuas" + ], + "ref": "1018", + "type": "room" + }, + { + "aliases": [ + "1021" + ], + "floor": 1, + "id": "tuas-1021", + "latlon": [ + 60.186967, + 24.819767 + ], + "name": "1021: AS3", + "osm_elements": [ + [ + "node", + "5105524135" + ] + ], + "parents": [ + "tuas" + ], + "ref": "1021", + "type": "room" + }, + { + "aliases": [ + "1022" + ], + "floor": 1, + "id": "tuas-1022", + "latlon": [ + 60.186962, + 24.819772 + ], + "name": "1022", + "osm_elements": [ + [ + "node", + "5105524137" + ] + ], + "parents": [ + "tuas" + ], + "ref": "1022", + "type": "room" + }, + { + "aliases": [ + "1023" + ], + "floor": 1, + "id": "tuas-1023", + "latlon": [ + 60.186905, + 24.81974 + ], + "name": "1023: AS4", + "osm_elements": [ + [ + "node", + "5105524136" + ] + ], + "parents": [ + "tuas" + ], + "ref": "1023", + "type": "room" + }, + { + "aliases": [ + "1024" + ], + "floor": 1, + "id": "tuas-1024", + "latlon": [ + 60.186892, + 24.819741 + ], + "name": "1024", + "osm_elements": [ + [ + "node", + "5105524134" + ] + ], + "parents": [ + "tuas" + ], + "ref": "1024", + "type": "room" + }, + { + "aliases": [ + "106" + ], + "floor": 1, + "id": "kirjasto-106", + "latlon": [ + 60.185004, + 24.827597 + ], + "name": "106: Ilmari", + "osm_elements": [ + [ + "node", + "5120785983" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "106", + "type": "room" + }, + { + "aliases": [ + "107" + ], + "floor": 1, + "id": "kirjasto-107", + "latlon": [ + 60.184983, + 24.827645 + ], + "name": "107: Arttu", + "osm_elements": [ + [ + "node", + "5120785984" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "107", + "type": "room" + }, + { + "aliases": [ + "108" + ], + "floor": 1, + "id": "kirjasto-108", + "latlon": [ + 60.184963, + 24.827678 + ], + "name": "108: Jaakko", + "osm_elements": [ + [ + "node", + "5120785985" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "108", + "type": "room" + }, + { + "aliases": [ + "109" + ], + "floor": 1, + "id": "kirjasto-109", + "latlon": [ + 60.184946, + 24.827706 + ], + "name": "109: Dora", + "osm_elements": [ + [ + "node", + "5120785986" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "109", + "type": "room" + }, + { + "aliases": [ + "113" + ], + "floor": 1, + "id": "kirjasto-113", + "latlon": [ + 60.184832, + 24.82794 + ], + "name": "113: Johanna", + "osm_elements": [ + [ + "node", + "5120785987" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "113", + "type": "room" + }, + { + "aliases": [ + "1171" + ], + "floor": 1, + "id": "tuas-1171", + "latlon": [ + 60.187044, + 24.818957 + ], + "name": "1171: TU3", + "osm_elements": [ + [ + "node", + "6817211767" + ] + ], + "parents": [ + "tuas", + "tuas-x1xxwing" + ], + "ref": "1171", + "type": "room" + }, + { + "aliases": [ + "1174" + ], + "floor": 1, + "id": "tuas-1174", + "latlon": [ + 60.187063, + 24.818751 + ], + "name": "1174: TU4", + "osm_elements": [ + [ + "node", + "6817211768" + ] + ], + "parents": [ + "tuas", + "tuas-x1xxwing" + ], + "ref": "1174", + "type": "room" + }, + { + "aliases": [ + "1194" + ], + "floor": 1, + "id": "tuas-1194", + "latlon": [ + 60.187137, + 24.817912 + ], + "name": "1194: TU5", + "osm_elements": [ + [ + "node", + "5105524128" + ] + ], + "parents": [ + "tuas", + "tuas-x1xxwing" + ], + "ref": "1194", + "type": "room" + }, + { + "aliases": [ + "1199" + ], + "floor": 1, + "id": "tuas-1199", + "latlon": [ + 60.187227, + 24.817734 + ], + "name": "1199: TU6", + "osm_elements": [ + [ + "node", + "5105524132" + ] + ], + "parents": [ + "tuas", + "tuas-x1xxwing" + ], + "ref": "1199", + "type": "room" + }, + { + "aliases": [ + "1200" + ], + "floor": 1, + "id": "tuas-1200", + "latlon": [ + 60.187174, + 24.817498 + ], + "name": "1200: TU7", + "osm_elements": [ + [ + "node", + "5105524130" + ] + ], + "parents": [ + "tuas", + "tuas-x1xxwing" + ], + "ref": "1200", + "type": "room" + }, + { + "aliases": [ + "1230" + ], + "floor": 1, + "id": "marsio-1230", + "latlon": [ + 60.186562, + 24.826508 + ], + "name": "1230: Cinema", + "osm_elements": [ + [ + "node", + "12141712492" + ] + ], + "parents": [ + "marsio" + ], + "ref": "1230", + "type": "room" + }, + { + "aliases": [ + "126" + ], + "floor": 1, + "id": "kirjasto-126", + "latlon": [ + 60.184757, + 24.82811 + ], + "name": "126: Juho", + "osm_elements": [ + [ + "node", + "5120785980" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "126", + "type": "room" + }, + { + "aliases": [ + "145" + ], + "floor": 1, + "id": "r012-145", + "latlon": [ + 60.18292, + 24.825392 + ], + "name": "145: V2", + "osm_elements": [ + [ + "node", + "5130434747" + ] + ], + "parents": [ + "r012" + ], + "ref": "145", + "type": "room" + }, + { + "aliases": [ + "148" + ], + "floor": 1, + "id": "K1-148", + "latlon": [ + 60.187086, + 24.827097 + ], + "name": "148", + "osm_elements": [ + [ + "node", + "5232638596" + ] + ], + "parents": [ + "K1" + ], + "ref": "148", + "type": "room" + }, + { + "aliases": [ + "150" + ], + "floor": 1, + "id": "K1-150", + "latlon": [ + 60.187151, + 24.827185 + ], + "name": "150", + "osm_elements": [ + [ + "node", + "5232638595" + ] + ], + "parents": [ + "K1" + ], + "ref": "150", + "type": "room" + }, + { + "aliases": [ + "1501" + ], + "floor": 1, + "id": "kide-1501", + "latlon": [ + 60.186814, + 24.823157 + ], + "name": "1501: Sklodowska-Curie", + "osm_elements": [ + [ + "node", + "11912139483" + ] + ], + "parents": [ + "kide" + ], + "ref": "1501", + "type": "room" + }, + { + "aliases": [ + "1522" + ], + "floor": 1, + "id": "tuas-1522", + "latlon": [ + 60.187213, + 24.819089 + ], + "name": "1522: AS6", + "osm_elements": [ + [ + "node", + "6817211765" + ] + ], + "parents": [ + "tuas", + "tuas-x5xxwing" + ], + "ref": "1522", + "type": "room" + }, + { + "aliases": [ + "1571" + ], + "floor": 1, + "id": "kide-1571", + "latlon": [ + 60.186603, + 24.823121 + ], + "name": "1571: Meitner", + "osm_elements": [ + [ + "node", + "11912139482" + ] + ], + "parents": [ + "kide" + ], + "ref": "1571", + "type": "room" + }, + { + "aliases": [ + "1572" + ], + "floor": 1, + "id": "kide-1572", + "latlon": [ + 60.186562, + 24.823341 + ], + "name": "1572: Noether", + "osm_elements": [ + [ + "node", + "11912139481" + ] + ], + "parents": [ + "kide" + ], + "ref": "1572", + "type": "room" + }, + { + "aliases": [ + "1621" + ], + "floor": 1, + "id": "tuas-1621", + "latlon": [ + 60.18719, + 24.819297 + ], + "name": "1621: AS5", + "osm_elements": [ + [ + "node", + "7575257710" + ] + ], + "parents": [ + "tuas", + "tuas-x5xxwing" + ], + "ref": "1621", + "type": "room" + }, + { + "aliases": [ + "2.020" + ], + "floor": 2, + "id": "dipoli-2.020", + "latlon": [ + 60.185201, + 24.832086 + ], + "name": "2.020: Aino & Elisa", + "osm_elements": [ + [ + "node", + "6881329020" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "2.020", + "type": "room" + }, + { + "aliases": [ + "2.031" + ], + "floor": 2, + "id": "dipoli-2.031", + "latlon": [ + 60.185008, + 24.832572 + ], + "name": "2.031: Sief", + "osm_elements": [ + [ + "node", + "5131418788" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "2.031", + "type": "room" + }, + { + "aliases": [ + "2.032" + ], + "floor": 2, + "id": "dipoli-2.032", + "latlon": [ + 60.184956, + 24.832845 + ], + "name": "2.032: Kaleva", + "osm_elements": [ + [ + "node", + "5131418787" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "2.032", + "type": "room" + }, + { + "aliases": [ + "2.034" + ], + "floor": 2, + "id": "dipoli-2.034", + "latlon": [ + 60.184788, + 24.832513 + ], + "name": "2.034: Capitolium", + "osm_elements": [ + [ + "node", + "5131418789" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "2.034", + "type": "room" + }, + { + "aliases": [ + "2.060" + ], + "floor": 2, + "id": "dipoli-2.060", + "latlon": [ + 60.185166, + 24.832264 + ], + "name": "2.060: Hauke", + "osm_elements": [ + [ + "node", + "5131418786" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "2.060", + "type": "room" + }, + { + "aliases": [ + "2.061" + ], + "floor": 2, + "id": "dipoli-2.061", + "latlon": [ + 60.185189, + 24.832283 + ], + "name": "2.061: Brander", + "osm_elements": [ + [ + "node", + "5131418785" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "2.061", + "type": "room" + }, + { + "aliases": [ + "2.062" + ], + "floor": 1, + "id": "dipoli-2.062", + "latlon": [ + 60.185215, + 24.832296 + ], + "name": "2.062: Jalanne", + "osm_elements": [ + [ + "node", + "5131418784" + ] + ], + "parents": [ + "dipoli" + ], + "ref": "2.062", + "type": "room" + }, + { + "aliases": [ + "201" + ], + "floor": 2, + "id": "K1-201", + "latlon": [ + 60.187232, + 24.826312 + ], + "name": "201", + "osm_elements": [ + [ + "node", + "5232646816" + ] + ], + "parents": [ + "K1" + ], + "ref": "201", + "type": "room" + }, + { + "aliases": [ + "202" + ], + "floor": 2, + "id": "K1-202", + "latlon": [ + 60.187312, + 24.826296 + ], + "name": "202", + "osm_elements": [ + [ + "node", + "5232638589" + ] + ], + "parents": [ + "K1" + ], + "ref": "202", + "type": "room" + }, + { + "aliases": [ + "213a" + ], + "floor": 2, + "id": "K1-213a", + "latlon": [ + 60.187107, + 24.826591 + ], + "name": "213a", + "osm_elements": [ + [ + "node", + "5232638592" + ] + ], + "parents": [ + "K1" + ], + "ref": "213a", + "type": "room" + }, + { + "aliases": [ + "214" + ], + "floor": 2, + "id": "kirjasto-214", + "latlon": [ + 60.184691, + 24.828202 + ], + "name": "214: Aslak", + "osm_elements": [ + [ + "node", + "5120785978" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "214", + "type": "room" + }, + { + "aliases": [ + "215" + ], + "floor": 2, + "id": "K1-215", + "latlon": [ + 60.187312, + 24.826672 + ], + "name": "215", + "osm_elements": [ + [ + "node", + "5232638593" + ] + ], + "parents": [ + "K1" + ], + "ref": "215", + "type": "room" + }, + { + "aliases": [ + "215" + ], + "floor": 2, + "id": "kirjasto-215", + "latlon": [ + 60.184673, + 24.828238 + ], + "name": "215: Lento", + "osm_elements": [ + [ + "node", + "5120785981" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "215", + "type": "room" + }, + { + "aliases": [ + "216" + ], + "floor": 2, + "id": "K1-216", + "latlon": [ + 60.187234, + 24.826896 + ], + "name": "216", + "osm_elements": [ + [ + "node", + "5232638594" + ] + ], + "parents": [ + "K1" + ], + "ref": "216", + "type": "room" + }, + { + "aliases": [ + "233a" + ], + "floor": 2, + "id": "kirjasto-233a", + "latlon": [ + 60.18462, + 24.828097 + ], + "name": "233a: Vilho", + "osm_elements": [ + [ + "node", + "5120785977" + ] + ], + "parents": [ + "kirjasto" + ], + "ref": "233a", + "type": "room" + }, + { + "aliases": [ + "286" + ], + "floor": 2, + "id": "r034-286", + "latlon": [ + 60.185673, + 24.819468 + ], + "name": "286: 286", + "osm_elements": [ + [ + "node", + "5365395789" + ] + ], + "parents": [ + "r034" + ], + "ref": "286", + "type": "room" + }, + { + "aliases": [ + "301c" + ], + "floor": 3, + "id": "K1-301c", + "latlon": [ + 60.187296, + 24.826235 + ], + "name": "301c", + "osm_elements": [ + [ + "node", + "5232638588" + ] + ], + "parents": [ + "K1" + ], + "ref": "301c", + "type": "room" + }, + { + "aliases": [ + "301d" + ], + "floor": 3, + "id": "K1-301d", + "latlon": [ + 60.187254, + 24.826175 + ], + "name": "301d", + "osm_elements": [ + [ + "node", + "5232638586" + ] + ], + "parents": [ + "K1" + ], + "ref": "301d", + "type": "room" + }, + { + "aliases": [ + "302b" + ], + "floor": 3, + "id": "K1-302b", + "latlon": [ + 60.187344, + 24.826299 + ], + "name": "302b", + "osm_elements": [ + [ + "node", + "5232638587" + ] + ], + "parents": [ + "K1" + ], + "ref": "302b", + "type": "room" + }, + { + "aliases": [ + "A108b/A111a" + ], + "floor": 1, + "id": "agrid-A108b/A111a", + "latlon": [ + 60.189039, + 24.830057 + ], + "name": "A108b/A111a: Mordor", + "osm_elements": [ + [ + "node", + "5389688276" + ] + ], + "parents": [ + "agrid", + "agrid-A" + ], + "ref": "A108b/A111a", + "type": "room" + }, + { + "aliases": [ + "A123" + ], + "floor": 1, + "id": "main-A123", + "latlon": [ + 60.186408, + 24.829873 + ], + "name": "A123: A1", + "osm_elements": [ + [ + "node", + "5131418800" + ] + ], + "parents": [ + "main", + "A" + ], + "ref": "A123", + "type": "room" + }, + { + "aliases": [ + "A133" + ], + "floor": 1, + "id": "T5", + "latlon": [ + 60.186884, + 24.82107 + ], + "name": "A133: T5", + "osm_elements": [ + [ + "node", + "5104046533" + ] + ], + "parents": [ + "T", + "r030-awing" + ], + "ref": "A133", + "type": "room" + }, + { + "aliases": [ + "A136" + ], + "floor": 1, + "id": "T6", + "latlon": [ + 60.186897, + 24.820926 + ], + "name": "A136: T6", + "osm_elements": [ + [ + "node", + "5104046532" + ] + ], + "parents": [ + "T", + "r030-awing" + ], + "ref": "A136", + "type": "room" + }, + { + "aliases": [ + "A140" + ], + "floor": 1, + "id": "T-A140", + "latlon": [ + 60.186912, + 24.820765 + ], + "name": "A140: T4", + "osm_elements": [ + [ + "node", + "5105524123" + ] + ], + "parents": [ + "T", + "r030-awing" + ], + "ref": "A140", + "type": "room" + }, + { + "aliases": [ + "A205a" + ], + "floor": 2, + "id": "agrid-A205a", + "latlon": [ + 60.188905, + 24.8301 + ], + "name": "A205a: Desoit", + "osm_elements": [ + [ + "node", + "5389688278" + ] + ], + "parents": [ + "agrid", + "agrid-A" + ], + "ref": "A205a", + "type": "room" + }, + { + "aliases": [ + "A208d" + ], + "floor": 2, + "id": "agrid-A208d", + "latlon": [ + 60.189067, + 24.830064 + ], + "name": "A208d: Jeti", + "osm_elements": [ + [ + "node", + "5389688277" + ] + ], + "parents": [ + "agrid", + "agrid-A" + ], + "ref": "A208d", + "type": "room" + }, + { + "aliases": [ + "A302" + ], + "floor": 3, + "id": "r011-A302", + "latlon": [ + 60.183698, + 24.824433 + ], + "name": "A302: Ke3", + "osm_elements": [ + [ + "node", + "5130434751" + ] + ], + "parents": [ + "r011" + ], + "ref": "A302", + "type": "room" + }, + { + "aliases": [ + "A303" + ], + "floor": 3, + "id": "r011-A303", + "latlon": [ + 60.183747, + 24.824353 + ], + "name": "A303", + "osm_elements": [ + [ + "node", + "5130434750" + ] + ], + "parents": [ + "r011" + ], + "ref": "A303", + "type": "room" + }, + { + "aliases": [ + "A304" + ], + "floor": 3, + "id": "r011-A304", + "latlon": [ + 60.183729, + 24.824118 + ], + "name": "A304: Ke2", + "osm_elements": [ + [ + "node", + "5130434752" + ] + ], + "parents": [ + "r011" + ], + "ref": "A304", + "type": "room" + }, + { + "aliases": [ + "A305" + ], + "floor": 3, + "id": "r011-A305", + "latlon": [ + 60.183682, + 24.823976 + ], + "name": "A305: Ke1", + "osm_elements": [ + [ + "node", + "5130434753" + ] + ], + "parents": [ + "r011" + ], + "ref": "A305", + "type": "room" + }, + { + "aliases": [ + "AS2" + ], + "floor": 2, + "id": "tuas-AS2", + "latlon": [ + 60.186932, + 24.819831 + ], + "name": "AS2", + "osm_elements": [ + [ + "node", + "5105524140" + ] + ], + "parents": [ + "tuas" + ], + "ref": "AS2", + "type": "room" + }, + { + "aliases": [ + "B210b" + ], + "floor": 2, + "id": "agrid-B210b", + "latlon": [ + 60.189028, + 24.830557 + ], + "name": "B210b: Kekkonen", + "osm_elements": [ + [ + "node", + "5389688274" + ] + ], + "parents": [ + "agrid", + "agrid-B" + ], + "ref": "B210b", + "type": "room" + }, + { + "aliases": [ + "C100" + ], + "floor": 1, + "id": "r012-C100", + "latlon": [ + 60.182981, + 24.825249 + ], + "name": "C100: V1", + "osm_elements": [ + [ + "node", + "5130434748" + ] + ], + "parents": [ + "r012" + ], + "ref": "C100", + "type": "room" + }, + { + "aliases": [ + "C101" + ], + "floor": 1, + "id": "r012-C101", + "latlon": [ + 60.182946, + 24.825184 + ], + "name": "C101: V3", + "osm_elements": [ + [ + "node", + "5130434746" + ] + ], + "parents": [ + "r012" + ], + "ref": "C101", + "type": "room" + }, + { + "aliases": [ + "C105" + ], + "floor": 1, + "id": "T2", + "latlon": [ + 60.18675, + 24.821997 + ], + "name": "C105: T2", + "osm_elements": [ + [ + "node", + "5104046536" + ] + ], + "parents": [ + "T", + "r030-awing" + ], + "ref": "C105", + "type": "room" + }, + { + "aliases": [ + "C106.1" + ], + "floor": 1, + "id": "T7", + "latlon": [ + 60.18693, + 24.822185 + ], + "name": "C106.1: T7", + "osm_elements": [ + [ + "node", + "11912162009" + ] + ], + "parents": [ + "T", + "r030-cwing" + ], + "ref": "C106.1", + "type": "room" + }, + { + "aliases": [ + "C106.2" + ], + "floor": 1, + "id": "T-C106.2", + "latlon": [ + 60.186909, + 24.822368 + ], + "name": "C106.2: T8", + "osm_elements": [ + [ + "node", + "11912162008" + ] + ], + "parents": [ + "T", + "r030-cwing" + ], + "ref": "C106.2", + "type": "room" + }, + { + "aliases": [ + "C202" + ], + "floor": 2, + "id": "T1", + "latlon": [ + 60.186931, + 24.822155 + ], + "name": "C202: T1", + "osm_elements": [ + [ + "node", + "5104046537" + ] + ], + "parents": [ + "T", + "r030-cwing" + ], + "ref": "C202", + "type": "room" + }, + { + "aliases": [ + "C206" + ], + "floor": 2, + "id": "T3", + "latlon": [ + 60.186726, + 24.821978 + ], + "name": "C206: T3", + "osm_elements": [ + [ + "node", + "5104046535" + ] + ], + "parents": [ + "T", + "r030-awing" + ], + "ref": "C206", + "type": "room" + }, + { + "aliases": [ + "D109b" + ], + "floor": 1, + "id": "agrid-D109b", + "latlon": [ + 60.189012, + 24.83108 + ], + "name": "D109b: Chupa-Cabra", + "osm_elements": [ + [ + "node", + "5389688270" + ] + ], + "parents": [ + "agrid", + "agrid-D" + ], + "ref": "D109b", + "type": "room" + }, + { + "aliases": [ + "D209a" + ], + "floor": 2, + "id": "agrid-D209a", + "latlon": [ + 60.189006, + 24.830943 + ], + "name": "D209a: Mermaid", + "osm_elements": [ + [ + "node", + "5389688265" + ] + ], + "parents": [ + "agrid", + "agrid-D" + ], + "ref": "D209a", + "type": "room" + }, + { + "aliases": [ + "D209b" + ], + "floor": 2, + "id": "agrid-D209b", + "latlon": [ + 60.189005, + 24.831078 + ], + "name": "D209b: Morso", + "osm_elements": [ + [ + "node", + "5389688264" + ] + ], + "parents": [ + "agrid", + "agrid-D" + ], + "ref": "D209b", + "type": "room" + }, + { + "aliases": [ + "D209c" + ], + "floor": 2, + "id": "agrid-D209c", + "latlon": [ + 60.189003, + 24.831184 + ], + "name": "D209c: Centaur", + "osm_elements": [ + [ + "node", + "5389688263" + ] + ], + "parents": [ + "agrid", + "agrid-D" + ], + "ref": "D209c", + "type": "room" + }, + { + "aliases": [ + "D309a" + ], + "floor": 3, + "id": "agrid-D309a", + "latlon": [ + 60.189013, + 24.830994 + ], + "name": "D309a: Krampus", + "osm_elements": [ + [ + "node", + "5389749385" + ] + ], + "parents": [ + "agrid", + "agrid-D" + ], + "ref": "D309a", + "type": "room" + }, + { + "aliases": [ + "D309c" + ], + "floor": 3, + "id": "agrid-D309c", + "latlon": [ + 60.189012, + 24.831184 + ], + "name": "D309c: Zombi", + "osm_elements": [ + [ + "node", + "5389688269" + ] + ], + "parents": [ + "agrid", + "agrid-D" + ], + "ref": "D309c", + "type": "room" + }, + { + "floor": 1, + "id": "marsio-Digital Studio", + "latlon": [ + 60.186389, + 24.8253 + ], + "name": "Digital Studio", + "osm_elements": [ + [ + "node", + "12141949985" + ] + ], + "parents": [ + "marsio" + ], + "type": "room" + }, + { + "floor": 1, + "id": "marsio-Event Studio", + "latlon": [ + 60.186347, + 24.8257 + ], + "name": "Event Studio", + "osm_elements": [ + [ + "node", + "12141949986" + ] + ], + "parents": [ + "marsio" + ], + "type": "room" + }, + { + "aliases": [ + "F138" + ], + "floor": 1, + "id": "F-F138", + "latlon": [ + 60.188248, + 24.829519 + ], + "name": "F138", + "osm_elements": [ + [ + "node", + "5511418334" + ] + ], + "parents": [ + "F" + ], + "ref": "F138", + "type": "room" + }, + { + "aliases": [ + "F175a" + ], + "floor": 1, + "id": "F-F175a", + "latlon": [ + 60.188185, + 24.830118 + ], + "name": "F175a", + "osm_elements": [ + [ + "node", + "5113813890" + ] + ], + "parents": [ + "F" + ], + "ref": "F175a", + "type": "room" + }, + { + "aliases": [ + "F175b" + ], + "floor": 1, + "id": "F-F175b", + "latlon": [ + 60.188219, + 24.830071 + ], + "name": "F175b", + "osm_elements": [ + [ + "node", + "5113813891" + ] + ], + "parents": [ + "F" + ], + "ref": "F175b", + "type": "room" + }, + { + "aliases": [ + "F239a" + ], + "floor": 1, + "id": "F-F239a", + "latlon": [ + 60.188328, + 24.830084 + ], + "name": "F239a: Auditorio", + "osm_elements": [ + [ + "node", + "5113813893" + ] + ], + "parents": [ + "F" + ], + "ref": "F239a", + "type": "room" + }, + { + "aliases": [ + "F254" + ], + "floor": 2, + "id": "F-F254", + "latlon": [ + 60.188273, + 24.829662 + ], + "name": "F254", + "osm_elements": [ + [ + "node", + "5113813885" + ] + ], + "parents": [ + "F" + ], + "ref": "F254", + "type": "room" + }, + { + "aliases": [ + "F255" + ], + "floor": 2, + "id": "F-F255", + "latlon": [ + 60.188244, + 24.829544 + ], + "name": "F255", + "osm_elements": [ + [ + "node", + "5113813886" + ] + ], + "parents": [ + "F" + ], + "ref": "F255", + "type": "room" + }, + { + "aliases": [ + "F257" + ], + "floor": 2, + "id": "F-F257", + "latlon": [ + 60.188169, + 24.829622 + ], + "name": "F257", + "osm_elements": [ + [ + "node", + "5113813887" + ] + ], + "parents": [ + "F" + ], + "ref": "F257", + "type": "room" + }, + { + "aliases": [ + "F258" + ], + "floor": 2, + "id": "F-F258", + "latlon": [ + 60.18815, + 24.829646 + ], + "name": "F258", + "osm_elements": [ + [ + "node", + "5113813888" + ] + ], + "parents": [ + "F" + ], + "ref": "F258", + "type": "room" + }, + { + "aliases": [ + "F259" + ], + "floor": 2, + "id": "F-F259", + "latlon": [ + 60.188135, + 24.829666 + ], + "name": "F259", + "osm_elements": [ + [ + "node", + "5113813889" + ] + ], + "parents": [ + "F" + ], + "ref": "F259", + "type": "room" + }, + { + "aliases": [ + "K014" + ], + "floor": -1, + "id": "main-K014", + "latlon": [ + 60.185158, + 24.826781 + ], + "name": "K014: Kokoushuone", + "osm_elements": [ + [ + "node", + "5171375896" + ] + ], + "parents": [ + "main", + "main-kwing" + ], + "ref": "K014", + "type": "room" + }, + { + "aliases": [ + "K101" + ], + "floor": 1, + "id": "main-K101", + "latlon": [ + 60.185227, + 24.826849 + ], + "name": "K101: H1", + "osm_elements": [ + [ + "node", + "5171375898" + ] + ], + "parents": [ + "main", + "main-kwing" + ], + "ref": "K101", + "type": "room" + }, + { + "aliases": [ + "K102" + ], + "floor": 1, + "id": "main-K102", + "latlon": [ + 60.185156, + 24.826795 + ], + "name": "K102: H2", + "osm_elements": [ + [ + "node", + "5171375897" + ] + ], + "parents": [ + "main", + "main-kwing" + ], + "ref": "K102", + "type": "room" + }, + { + "aliases": [ + "M102" + ], + "floor": 1, + "id": "main-M102", + "latlon": [ + 60.185893, + 24.828513 + ], + "name": "M102: Maininki", + "osm_elements": [ + [ + "node", + "5131418803" + ] + ], + "parents": [ + "main", + "M" + ], + "ref": "M102", + "type": "room" + }, + { + "aliases": [ + "M134" + ], + "floor": 1, + "id": "main-M134", + "latlon": [ + 60.186295, + 24.829044 + ], + "name": "M134", + "osm_elements": [ + [ + "node", + "6881329021" + ] + ], + "parents": [ + "main", + "M" + ], + "ref": "M134", + "type": "room" + }, + { + "aliases": [ + "M140" + ], + "floor": 1, + "id": "main-M140", + "latlon": [ + 60.186203, + 24.829103 + ], + "name": "M140: Majakka", + "osm_elements": [ + [ + "node", + "5131418802" + ] + ], + "parents": [ + "main", + "M" + ], + "ref": "M140", + "type": "room" + }, + { + "aliases": [ + "M145b" + ], + "floor": 1, + "id": "main-M145b", + "latlon": [ + 60.186106, + 24.829411 + ], + "name": "M145b: Masto", + "osm_elements": [ + [ + "node", + "5131418801" + ] + ], + "parents": [ + "main", + "M" + ], + "ref": "M145b", + "type": "room" + }, + { + "aliases": [ + "M232" + ], + "floor": 2, + "id": "main-M232", + "latlon": [ + 60.185866, + 24.828923 + ], + "name": "M232: M1", + "osm_elements": [ + [ + "node", + "5113813857" + ] + ], + "parents": [ + "main", + "M" + ], + "ref": "M232", + "type": "room" + }, + { + "aliases": [ + "M233" + ], + "floor": 2, + "id": "main-M233", + "latlon": [ + 60.185983, + 24.828988 + ], + "name": "M233: M2", + "osm_elements": [ + [ + "node", + "5113813856" + ] + ], + "parents": [ + "main", + "M" + ], + "ref": "M233", + "type": "room" + }, + { + "aliases": [ + "M234" + ], + "floor": 2, + "id": "main-M234", + "latlon": [ + 60.186078, + 24.829037 + ], + "name": "M234: M3", + "osm_elements": [ + [ + "node", + "5113813855" + ] + ], + "parents": [ + "main", + "M" + ], + "ref": "M234", + "type": "room" + }, + { + "aliases": [ + "MA215" + ], + "floor": 2, + "id": "main-MA215", + "latlon": [ + 60.186406, + 24.829906 + ], + "name": "MA215: A2", + "osm_elements": [ + [ + "node", + "5131418799" + ] + ], + "parents": [ + "main", + "A" + ], + "ref": "MA215", + "type": "room" + }, + { + "floor": 2, + "id": "tuas-Odeion", + "latlon": [ + 60.187067, + 24.820065 + ], + "name": "Odeion", + "osm_elements": [ + [ + "node", + "5163656732" + ] + ], + "parents": [ + "tuas", + "tuas-159xwing", + "tuas-x5xxwing" + ], + "type": "room" + }, + { + "address": "CS T106", + "id": "paniikki", + "latlon": [ + 60.186867, + 24.822295 + ], + "name": "Paniikki", + "name_en": "Panique Computer Lab", + "osm_elements": [ + [ + "way", + 91227653 + ] + ], + "outline": [ + [ + 60.186779, + 24.822398 + ], + [ + 60.1868, + 24.822133 + ], + [ + 60.186809, + 24.822062 + ], + [ + 60.186974, + 24.822122 + ], + [ + 60.186954, + 24.822349 + ], + [ + 60.186935, + 24.822454 + ], + [ + 60.186903, + 24.822442 + ], + [ + 60.186779, + 24.822398 + ] + ], + "parents": [ + "T" + ], + "type": "room" + }, + { + "aliases": [ + "R160a" + ], + "floor": 1, + "id": "r002-R160a", + "latlon": [ + 60.186724, + 24.831047 + ], + "name": "R160a: R1", + "osm_elements": [ + [ + "node", + "5232638614" + ] + ], + "parents": [ + "r002" + ], + "ref": "R160a", + "type": "room" + }, + { + "aliases": [ + "R161a" + ], + "floor": 1, + "id": "r002-R161a", + "latlon": [ + 60.186796, + 24.830882 + ], + "name": "R161a: K1", + "osm_elements": [ + [ + "node", + "5232638605" + ] + ], + "parents": [ + "r002" + ], + "ref": "R161a", + "type": "room" + }, + { + "aliases": [ + "R253" + ], + "floor": 2, + "id": "r002-R253", + "latlon": [ + 60.187056, + 24.831201 + ], + "name": "R253: R2", + "osm_elements": [ + [ + "node", + "5232638617" + ] + ], + "parents": [ + "r002" + ], + "ref": "R253", + "type": "room" + }, + { + "aliases": [ + "R255" + ], + "floor": 2, + "id": "r002-R255", + "latlon": [ + 60.186944, + 24.831341 + ], + "name": "R255: R3", + "osm_elements": [ + [ + "node", + "5232638616" + ] + ], + "parents": [ + "r002" + ], + "ref": "R255", + "type": "room" + }, + { + "aliases": [ + "R264a" + ], + "floor": 2, + "id": "r002-R264a", + "latlon": [ + 60.186822, + 24.830894 + ], + "name": "R264a: R4", + "osm_elements": [ + [ + "node", + "5232638613" + ] + ], + "parents": [ + "r002" + ], + "ref": "R264a", + "type": "room" + }, + { + "aliases": [ + "R265" + ], + "floor": 2, + "id": "r002-R265", + "latlon": [ + 60.186898, + 24.830812 + ], + "name": "R265: R5", + "osm_elements": [ + [ + "node", + "5232638612" + ] + ], + "parents": [ + "r002" + ], + "ref": "R265", + "type": "room" + }, + { + "aliases": [ + "R309" + ], + "floor": 3, + "id": "r002-R309", + "latlon": [ + 60.187444, + 24.831063 + ], + "name": "R309: R9", + "osm_elements": [ + [ + "node", + "5232638608" + ] + ], + "parents": [ + "r002" + ], + "ref": "R309", + "type": "room" + }, + { + "aliases": [ + "R351a" + ], + "floor": 3, + "id": "r002-R351a", + "latlon": [ + 60.186957, + 24.83074 + ], + "name": "R351a: R6", + "osm_elements": [ + [ + "node", + "5232638611" + ] + ], + "parents": [ + "r002" + ], + "ref": "R351a", + "type": "room" + }, + { + "aliases": [ + "R351b" + ], + "floor": 3, + "id": "r002-R351b", + "latlon": [ + 60.186988, + 24.830704 + ], + "name": "R351b: R7", + "osm_elements": [ + [ + "node", + "5232638610" + ] + ], + "parents": [ + "r002" + ], + "ref": "R351b", + "type": "room" + }, + { + "aliases": [ + "R352" + ], + "floor": 3, + "id": "r002-R352", + "latlon": [ + 60.187024, + 24.83067 + ], + "name": "R352: R8", + "osm_elements": [ + [ + "node", + "5232638609" + ] + ], + "parents": [ + "r002" + ], + "ref": "R352", + "type": "room" + }, + { + "floor": 1, + "id": "marsio-Stage", + "latlon": [ + 60.18632, + 24.82606 + ], + "name": "Stage", + "osm_elements": [ + [ + "node", + "12141949987" + ] + ], + "parents": [ + "marsio" + ], + "type": "room" + }, + { + "aliases": [ + "T003" + ], + "floor": 1, + "id": "R068-T003", + "latlon": [ + 60.185884, + 24.823897 + ], + "name": "T003", + "osm_elements": [ + [ + "node", + "12146148965" + ] + ], + "parents": [ + "R068", + "biz-T" + ], + "ref": "T003", + "type": "room" + }, + { + "aliases": [ + "T004" + ], + "floor": 1, + "id": "R068-T004", + "latlon": [ + 60.18579, + 24.824078 + ], + "name": "T004", + "osm_elements": [ + [ + "node", + "12146148964" + ] + ], + "parents": [ + "R068", + "biz-T" + ], + "ref": "T004", + "type": "room" + }, + { + "aliases": [ + "TU1" + ], + "floor": 1, + "id": "tuas-TU1", + "latlon": [ + 60.186877, + 24.819345 + ], + "name": "TU1", + "osm_elements": [ + [ + "node", + "5105524139" + ] + ], + "parents": [ + "tuas" + ], + "ref": "TU1", + "type": "room" + }, + { + "aliases": [ + "TU2" + ], + "floor": 2, + "id": "tuas-TU2", + "latlon": [ + 60.186947, + 24.819371 + ], + "name": "TU2", + "osm_elements": [ + [ + "node", + "5105524138" + ] + ], + "parents": [ + "tuas" + ], + "ref": "TU2", + "type": "room" + }, + { + "aliases": [ + "U006" + ], + "floor": 1, + "id": "R068-U006", + "latlon": [ + 60.185737, + 24.823794 + ], + "name": "U006", + "osm_elements": [ + [ + "node", + "12146148963" + ] + ], + "parents": [ + "R068", + "biz-U" + ], + "ref": "U006", + "type": "room" + }, + { + "aliases": [ + "U115a" + ], + "floor": 1, + "id": "main-U115a", + "latlon": [ + 60.18679, + 24.828367 + ], + "name": "U115a", + "osm_elements": [ + [ + "node", + "5113813868" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U115a", + "type": "room" + }, + { + "aliases": [ + "U115b" + ], + "floor": 1, + "id": "main-U115b", + "latlon": [ + 60.186763, + 24.828556 + ], + "name": "U115b", + "osm_elements": [ + [ + "node", + "5511418331" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U115b", + "type": "room" + }, + { + "aliases": [ + "U119" + ], + "floor": 1, + "id": "main-U119", + "latlon": [ + 60.186848, + 24.828503 + ], + "name": "U119: Deloitte", + "osm_elements": [ + [ + "node", + "5113813870" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U119", + "type": "room" + }, + { + "aliases": [ + "U121a" + ], + "floor": 1, + "id": "main-U121a", + "latlon": [ + 60.186936, + 24.828499 + ], + "name": "U121a: S-Ryhm\u00e4", + "osm_elements": [ + [ + "node", + "5113813869" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U121a", + "type": "room" + }, + { + "aliases": [ + "U121b" + ], + "floor": 1, + "id": "main-U121b", + "latlon": [ + 60.18692, + 24.828607 + ], + "name": "U121b: EY", + "osm_elements": [ + [ + "node", + "5113813871" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U121b", + "type": "room" + }, + { + "aliases": [ + "U134a" + ], + "floor": 1, + "id": "main-U134a", + "latlon": [ + 60.18701, + 24.828487 + ], + "name": "U134a", + "osm_elements": [ + [ + "node", + "5511418332" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U134a", + "type": "room" + }, + { + "aliases": [ + "U135a" + ], + "floor": 1, + "id": "main-U135a", + "latlon": [ + 60.186978, + 24.828681 + ], + "name": "U135a: U7 PWC", + "osm_elements": [ + [ + "node", + "5113813872" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U135a", + "type": "room" + }, + { + "aliases": [ + "U141" + ], + "floor": 1, + "id": "main-U141", + "latlon": [ + 60.187126, + 24.829164 + ], + "name": "U141: U3", + "osm_elements": [ + [ + "node", + "5113813874" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U141", + "type": "room" + }, + { + "aliases": [ + "U142" + ], + "floor": 1, + "id": "main-U142", + "latlon": [ + 60.187052, + 24.829127 + ], + "name": "U142: U4", + "osm_elements": [ + [ + "node", + "5113813873" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U142", + "type": "room" + }, + { + "aliases": [ + "U147" + ], + "floor": 1, + "id": "main-U147", + "latlon": [ + 60.187103, + 24.828772 + ], + "name": "U147: U5", + "osm_elements": [ + [ + "node", + "5113813867" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U147", + "type": "room" + }, + { + "aliases": [ + "U149" + ], + "floor": 1, + "id": "main-U149", + "latlon": [ + 60.187132, + 24.828583 + ], + "name": "U149: U6 Konecranes", + "osm_elements": [ + [ + "node", + "5113813866" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U149", + "type": "room" + }, + { + "aliases": [ + "U154" + ], + "floor": 1, + "id": "main-U154", + "latlon": [ + 60.187261, + 24.828408 + ], + "name": "U154: U1", + "osm_elements": [ + [ + "node", + "5113813875" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U154", + "type": "room" + }, + { + "aliases": [ + "U157" + ], + "floor": 1, + "id": "main-U157", + "latlon": [ + 60.18724, + 24.828748 + ], + "name": "U157: U2 Mellin", + "osm_elements": [ + [ + "node", + "1433646880" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U157", + "type": "room" + }, + { + "aliases": [ + "U257" + ], + "floor": 2, + "id": "main-U257", + "latlon": [ + 60.186846, + 24.828884 + ], + "name": "U257: Elisa", + "osm_elements": [ + [ + "node", + "5113813862" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U257", + "type": "room" + }, + { + "aliases": [ + "U259" + ], + "floor": 2, + "id": "main-U259", + "latlon": [ + 60.186978, + 24.828986 + ], + "name": "U259: Posti", + "osm_elements": [ + [ + "node", + "5113813863" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U259", + "type": "room" + }, + { + "aliases": [ + "U270" + ], + "floor": 2, + "id": "main-U270", + "latlon": [ + 60.187066, + 24.829131 + ], + "name": "U270: U8", + "osm_elements": [ + [ + "node", + "5113813865" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U270", + "type": "room" + }, + { + "aliases": [ + "U271" + ], + "floor": 2, + "id": "main-U271", + "latlon": [ + 60.187114, + 24.829158 + ], + "name": "U271: U9", + "osm_elements": [ + [ + "node", + "5113813864" + ] + ], + "parents": [ + "main", + "U" + ], + "ref": "U271", + "type": "room" + }, + { + "aliases": [ + "V001" + ], + "floor": -1, + "id": "R068-V001", + "latlon": [ + 60.185996, + 24.823435 + ], + "name": "V001: Jenny ja Antti Wihurin Rahasto", + "osm_elements": [ + [ + "node", + "12146148967" + ] + ], + "parents": [ + "R068", + "biz-V" + ], + "ref": "V001", + "type": "room" + }, + { + "aliases": [ + "V002" + ], + "floor": -1, + "id": "R068-V002", + "latlon": [ + 60.18596, + 24.823686 + ], + "name": "V002: Saastomoisen S\u00e4\u00e4ti\u00f6", + "osm_elements": [ + [ + "node", + "12146148966" + ] + ], + "parents": [ + "R068", + "biz-V" + ], + "ref": "V002", + "type": "room" + }, + { + "aliases": [ + "Y115" + ], + "floor": 1, + "id": "main-Y115", + "latlon": [ + 60.185786, + 24.828194 + ], + "name": "Y115", + "osm_elements": [ + [ + "node", + "6881329022" + ] + ], + "parents": [ + "main", + "Y" + ], + "ref": "Y115", + "type": "room" + }, + { + "aliases": [ + "Y122" + ], + "floor": 1, + "id": "main-Y122", + "latlon": [ + 60.186132, + 24.827547 + ], + "name": "Y122: D", + "osm_elements": [ + [ + "node", + "1433646782" + ] + ], + "parents": [ + "main", + "Y" + ], + "ref": "Y122", + "type": "room" + }, + { + "aliases": [ + "Y124" + ], + "floor": 1, + "id": "main-Y124", + "latlon": [ + 60.186299, + 24.827651 + ], + "name": "Y124: E", + "osm_elements": [ + [ + "node", + "1433646788" + ] + ], + "parents": [ + "main", + "Y" + ], + "ref": "Y124", + "type": "room" + }, + { + "aliases": [ + "Y202" + ], + "floor": 2, + "id": "main-Y202", + "latlon": [ + 60.185826, + 24.827437 + ], + "name": "Y202: A", + "osm_elements": [ + [ + "node", + "5113813860" + ] + ], + "parents": [ + "main", + "Y" + ], + "ref": "Y202", + "type": "room" + }, + { + "aliases": [ + "Y203" + ], + "floor": 2, + "id": "main-Y203", + "latlon": [ + 60.185832, + 24.827795 + ], + "name": "Y203: B", + "osm_elements": [ + [ + "node", + "5113813859" + ] + ], + "parents": [ + "main", + "Y" + ], + "ref": "Y203", + "type": "room" + }, + { + "aliases": [ + "Y205" + ], + "floor": 2, + "id": "main-Y205", + "latlon": [ + 60.185762, + 24.828257 + ], + "name": "Y205: C", + "osm_elements": [ + [ + "node", + "5113813858" + ] + ], + "parents": [ + "main", + "Y" + ], + "ref": "Y205", + "type": "room" + }, + { + "id": "main-ent-11222444126", + "latlon": [ + 60.186178, + 24.830057 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "11222444126" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "main-ent-1433646779", + "latlon": [ + 60.186093, + 24.827721 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1433646779" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "r002-ent-303099817", + "latlon": [ + 60.187273, + 24.830512 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "303099817" + ] + ], + "parents": [ + "r002" + ], + "type": "entrance" + }, + { + "id": "agrid-ent-5012868025", + "latlon": [ + 60.18878, + 24.831313 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5012868025" + ] + ], + "parents": [ + "agrid" + ], + "type": "entrance" + }, + { + "id": "agrid-ent-264070011", + "latlon": [ + 60.189054, + 24.830368 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "264070011" + ] + ], + "parents": [ + "agrid" + ], + "type": "entrance" + }, + { + "id": "agrid-ent-1656239835", + "latlon": [ + 60.189088, + 24.831786 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1656239835" + ] + ], + "parents": [ + "agrid" + ], + "type": "entrance" + }, + { + "id": "agrid-ent-11146649709", + "latlon": [ + 60.188767, + 24.832693 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "11146649709" + ] + ], + "parents": [ + "agrid" + ], + "type": "entrance" + }, + { + "id": "agrid-ent-11146649710", + "latlon": [ + 60.188773, + 24.832433 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "11146649710" + ] + ], + "parents": [ + "agrid" + ], + "type": "entrance" + }, + { + "id": "agrid-ent-11146649711", + "latlon": [ + 60.188778, + 24.831836 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "11146649711" + ] + ], + "parents": [ + "agrid" + ], + "type": "entrance" + }, + { + "address": "S\u00e4hk\u00f6miehentie 4", + "id": "K4-ent-338532521", + "latlon": [ + 60.188618, + 24.826586 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "338532521" + ] + ], + "parents": [ + "K4" + ], + "type": "entrance" + }, + { + "id": "K1-ent-338534555", + "latlon": [ + 60.187271, + 24.827012 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "338534555" + ] + ], + "parents": [ + "K1" + ], + "type": "entrance" + }, + { + "id": "nanotalo-ent-338531576", + "latlon": [ + 60.186669, + 24.826038 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "338531576" + ] + ], + "parents": [ + "nanotalo" + ], + "type": "entrance" + }, + { + "id": "nanotalo-ent-338531789", + "latlon": [ + 60.18666, + 24.824924 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "338531789" + ] + ], + "parents": [ + "nanotalo" + ], + "type": "entrance" + }, + { + "id": "r011-ent-338537204", + "latlon": [ + 60.183856, + 24.825189 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "338537204" + ] + ], + "parents": [ + "r011" + ], + "type": "entrance" + }, + { + "id": "kirjasto-ent-301875084", + "latlon": [ + 60.184802, + 24.828057 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301875084" + ] + ], + "parents": [ + "kirjasto" + ], + "type": "entrance" + }, + { + "id": "kirjasto-ent-5020265621", + "latlon": [ + 60.184606, + 24.827486 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5020265621" + ] + ], + "parents": [ + "kirjasto" + ], + "type": "entrance" + }, + { + "id": "kirjasto-ent-5901449040", + "latlon": [ + 60.185033, + 24.827305 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5901449040" + ] + ], + "parents": [ + "kirjasto" + ], + "type": "entrance" + }, + { + "id": "r016-ent-5898662649", + "latlon": [ + 60.185675, + 24.821194 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5898662649" + ] + ], + "parents": [ + "r016" + ], + "type": "entrance" + }, + { + "id": "dipoli-ent-2476428715", + "latlon": [ + 60.184925, + 24.832981 + ], + "name": "Entrance", + "name_en": "Events Entrance", + "name_sv": "Festing\u00e5ngen", + "nosearch": true, + "opening_hours": "Mo-Fr 07:45-18:00; PH off", + "osm_elements": [ + [ + "node", + "2476428715" + ] + ], + "parents": [ + "dipoli" + ], + "type": "entrance" + }, + { + "id": "dipoli-ent-263967699", + "latlon": [ + 60.185288, + 24.832807 + ], + "name": "Entrance", + "name_en": "North entrance", + "name_sv": "Norra ing\u00e5ngen", + "nosearch": true, + "opening_hours": "Mo-Fr 07:45-18:00; PH off", + "osm_elements": [ + [ + "node", + "263967699" + ] + ], + "parents": [ + "dipoli" + ], + "type": "entrance" + }, + { + "id": "r027-ent-9525308864", + "latlon": [ + 60.183251, + 24.828676 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "9525308864" + ] + ], + "parents": [ + "r027" + ], + "type": "entrance" + }, + { + "id": "r027-ent-9525308859", + "latlon": [ + 60.183652, + 24.829379 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "9525308859" + ] + ], + "parents": [ + "r027" + ], + "type": "entrance" + }, + { + "id": "T-ent-289113781", + "latlon": [ + 60.18697, + 24.820473 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "289113781" + ] + ], + "parents": [ + "T" + ], + "type": "entrance" + }, + { + "address": "Tekniikantie 17", + "id": "micronova-ent-5081929212", + "latlon": [ + 60.184552, + 24.815946 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5081929212" + ] + ], + "parents": [ + "micronova" + ], + "type": "entrance" + }, + { + "id": "tuas-ent-289113873", + "latlon": [ + 60.187006, + 24.820074 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "289113873" + ] + ], + "parents": [ + "tuas" + ], + "type": "entrance" + }, + { + "id": "tuas-ent-977658743", + "latlon": [ + 60.186997, + 24.820071 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "977658743" + ] + ], + "parents": [ + "tuas" + ], + "type": "entrance" + }, + { + "id": "r038-ent-1610326469", + "latlon": [ + 60.184601, + 24.830169 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1610326469" + ] + ], + "parents": [ + "r038" + ], + "type": "entrance" + }, + { + "id": "r038-ent-1610326471", + "latlon": [ + 60.184804, + 24.830501 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1610326471" + ] + ], + "parents": [ + "r038" + ], + "type": "entrance" + }, + { + "id": "r038-ent-1610326467", + "latlon": [ + 60.184599, + 24.830491 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1610326467" + ] + ], + "parents": [ + "r038" + ], + "type": "entrance" + }, + { + "id": "r039-ent-5270776201", + "latlon": [ + 60.183031, + 24.83054 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5270776201" + ] + ], + "parents": [ + "r039" + ], + "type": "entrance" + }, + { + "id": "r040-ent-5111296238", + "latlon": [ + 60.186164, + 24.833241 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5111296238" + ] + ], + "parents": [ + "r040" + ], + "type": "entrance" + }, + { + "id": "r040-ent-5111323516", + "latlon": [ + 60.186033, + 24.83313 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5111323516" + ] + ], + "parents": [ + "r040" + ], + "type": "entrance" + }, + { + "id": "vare-ent-5880866309", + "latlon": [ + 60.185831, + 24.824365 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5880866309" + ] + ], + "parents": [ + "vare" + ], + "type": "entrance" + }, + { + "id": "vare-ent-4050038148", + "latlon": [ + 60.185724, + 24.825546 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "4050038148" + ] + ], + "parents": [ + "vare" + ], + "type": "entrance" + }, + { + "id": "vare-ent-8719348753", + "latlon": [ + 60.185935, + 24.824532 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "8719348753" + ] + ], + "parents": [ + "vare" + ], + "type": "entrance" + }, + { + "id": "metroA-ent-5026528602", + "latlon": [ + 60.184614, + 24.825804 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5026528602" + ] + ], + "parents": [ + "metroA" + ], + "type": "entrance" + }, + { + "address": "Maarintie 13", + "id": "R068-ent-6187837675", + "latlon": [ + 60.186099, + 24.823148 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "6187837675" + ] + ], + "parents": [ + "R068" + ], + "type": "entrance" + }, + { + "address": "Biologinkuja 6", + "id": "abloc-ent-4050038158", + "latlon": [ + 60.184702, + 24.824799 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "4050038158" + ] + ], + "parents": [ + "abloc" + ], + "type": "entrance" + }, + { + "id": "abloc-ent-5026528602", + "latlon": [ + 60.184614, + 24.825804 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5026528602" + ] + ], + "parents": [ + "abloc" + ], + "type": "entrance" + }, + { + "id": "abloc-ent-5871819458", + "latlon": [ + 60.185003, + 24.825333 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5871819458" + ] + ], + "parents": [ + "abloc" + ], + "type": "entrance" + }, + { + "id": "kide-ent-10238806258", + "latlon": [ + 60.18661, + 24.822962 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "10238806258" + ] + ], + "parents": [ + "kide" + ], + "type": "entrance" + }, + { + "id": "r101-ent-298644469", + "latlon": [ + 60.171761, + 24.923332 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "298644469" + ] + ], + "parents": [ + "r101" + ], + "type": "entrance" + }, + { + "id": "domusgadium-ent-11762183814", + "latlon": [ + 60.169373, + 24.922304 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "11762183814" + ] + ], + "parents": [ + "domusgadium" + ], + "type": "entrance" + }, + { + "id": "domusgadium-ent-317741521", + "latlon": [ + 60.169444, + 24.921382 + ], + "name": "Entrance", + "nosearch": true, + "osm_elements": [ + [ + "node", + "317741521" + ] + ], + "parents": [ + "domusgadium" + ], + "type": "entrance" + }, + { + "id": "K4-ent-5012868034", + "latlon": [ + 60.189146, + 24.825643 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5012868034" + ] + ], + "parents": [ + "K4" + ], + "type": "entrance" + }, + { + "id": "r010-ent-502886583", + "latlon": [ + 60.187256, + 24.822421 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "502886583" + ] + ], + "parents": [ + "r010" + ], + "type": "entrance" + }, + { + "id": "r011-ent-338537520", + "latlon": [ + 60.183771, + 24.824385 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "338537520" + ] + ], + "parents": [ + "r011" + ], + "type": "entrance" + }, + { + "id": "maari-ent-348028311", + "latlon": [ + 60.18921, + 24.826134 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "348028311" + ] + ], + "parents": [ + "maari" + ], + "type": "entrance" + }, + { + "id": "r018-ent-560097715", + "latlon": [ + 60.18753, + 24.823476 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "560097715" + ] + ], + "parents": [ + "r018" + ], + "type": "entrance" + }, + { + "id": "dipoli-ent-1433646676", + "latlon": [ + 60.184923, + 24.832206 + ], + "name": "Entrance (main)", + "name_en": "Pinecone Entrance", + "name_sv": "Tallkottsing\u00e5ngen", + "nosearch": true, + "opening_hours": "Mo-Fr 07:45-22:00; Sa 09:30-22:00; PH off", + "osm_elements": [ + [ + "node", + "1433646676" + ] + ], + "parents": [ + "dipoli" + ], + "type": "entrance" + }, + { + "id": "oih-ent-2375427439", + "latlon": [ + 60.187201, + 24.816356 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "2375427439" + ] + ], + "parents": [ + "oih" + ], + "type": "entrance" + }, + { + "id": "r034-ent-25530504", + "latlon": [ + 60.18551, + 24.820519 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "25530504" + ] + ], + "parents": [ + "r034" + ], + "type": "entrance" + }, + { + "id": "r040-ent-25468805", + "latlon": [ + 60.185924, + 24.832462 + ], + "name": "Entrance (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "25468805" + ] + ], + "parents": [ + "r040" + ], + "type": "entrance" + }, + { + "address": "Otakaari 1 F", + "id": "main-ent-57240233", + "latlon": [ + 60.185953, + 24.827071 + ], + "name": "Entrance (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "57240233" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "K2-ent-5171375888", + "latlon": [ + 60.187586, + 24.825221 + ], + "name": "Entrance (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5171375888" + ] + ], + "parents": [ + "K2" + ], + "type": "entrance" + }, + { + "id": "K1-ent-1691532053", + "latlon": [ + 60.187083, + 24.826799 + ], + "name": "Entrance (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1691532053" + ] + ], + "parents": [ + "K1" + ], + "type": "entrance" + }, + { + "id": "kirjasto-ent-301814925", + "latlon": [ + 60.184603, + 24.827889 + ], + "name": "Entrance (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301814925" + ] + ], + "parents": [ + "kirjasto" + ], + "type": "entrance" + }, + { + "id": "micronova-ent-5081929217", + "latlon": [ + 60.184791, + 24.818355 + ], + "name": "Entrance (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5081929217" + ] + ], + "parents": [ + "micronova" + ], + "type": "entrance" + }, + { + "id": "tuas-ent-330026233", + "latlon": [ + 60.186878, + 24.819554 + ], + "name": "Entrance (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "330026233" + ] + ], + "parents": [ + "tuas" + ], + "type": "entrance" + }, + { + "address": "Tietotie 4 B", + "id": "metroB-ent-4104851062", + "latlon": [ + 60.185208, + 24.820743 + ], + "name": "Entrance (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "4104851062" + ] + ], + "parents": [ + "metroB" + ], + "type": "entrance" + }, + { + "id": "vare-ent-14", + "latlon": [ + 60.185316, + 24.825587 + ], + "name": "Entrance 14 (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5870791854" + ] + ], + "parents": [ + "vare" + ], + "type": "entrance" + }, + { + "id": "r012-ent-2N", + "latlon": [ + 60.182564, + 24.823957 + ], + "name": "Entrance 2N", + "nosearch": true, + "osm_elements": [ + [ + "node", + "8369110175" + ] + ], + "parents": [ + "r012" + ], + "type": "entrance" + }, + { + "id": "r012-ent-A", + "latlon": [ + 60.18287, + 24.825781 + ], + "name": "Entrance A", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301546950" + ] + ], + "parents": [ + "r012" + ], + "type": "entrance" + }, + { + "id": "r002-ent-A", + "latlon": [ + 60.18688, + 24.830755 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "303099821" + ] + ], + "parents": [ + "r002" + ], + "type": "entrance" + }, + { + "id": "F-ent-A", + "latlon": [ + 60.18839, + 24.829943 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5012868052" + ] + ], + "parents": [ + "F" + ], + "type": "entrance" + }, + { + "id": "agrid-ent-A", + "latlon": [ + 60.188905, + 24.830154 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1129380462" + ] + ], + "parents": [ + "agrid" + ], + "type": "entrance" + }, + { + "id": "K3-ent-A", + "latlon": [ + 60.187838, + 24.824478 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "10766856283" + ] + ], + "parents": [ + "K3" + ], + "type": "entrance" + }, + { + "id": "nanotalo-ent-A", + "latlon": [ + 60.187034, + 24.825393 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5012868056" + ] + ], + "parents": [ + "nanotalo" + ], + "type": "entrance" + }, + { + "id": "r016-ent-A", + "latlon": [ + 60.185997, + 24.81955 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1524961800" + ] + ], + "parents": [ + "r016" + ], + "type": "entrance" + }, + { + "id": "r023-ent-A", + "latlon": [ + 60.181907, + 24.830619 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301559910" + ] + ], + "parents": [ + "r023" + ], + "type": "entrance" + }, + { + "id": "T-ent-A", + "latlon": [ + 60.186776, + 24.822108 + ], + "name": "Entrance A (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "319079336" + ] + ], + "parents": [ + "T" + ], + "type": "entrance" + }, + { + "id": "abloc-ent-A", + "latlon": [ + 60.184774, + 24.825804 + ], + "name": "Entrance A (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "4050038154" + ] + ], + "parents": [ + "abloc" + ], + "type": "entrance" + }, + { + "id": "marsio-ent-A", + "latlon": [ + 60.186338, + 24.826321 + ], + "name": "Entrance A (main) \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "11945794460" + ] + ], + "parents": [ + "marsio" + ], + "type": "entrance" + }, + { + "id": "F-ent-C", + "latlon": [ + 60.187815, + 24.829978 + ], + "name": "Entrance C", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1891529132" + ] + ], + "parents": [ + "F" + ], + "type": "entrance" + }, + { + "id": "r029-ent-C", + "latlon": [ + 60.189028, + 24.833487 + ], + "name": "Entrance C (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1281703391" + ] + ], + "parents": [ + "r029" + ], + "type": "entrance" + }, + { + "id": "F-ent-D", + "latlon": [ + 60.18774, + 24.830063 + ], + "name": "Entrance D", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1891529130" + ] + ], + "parents": [ + "F" + ], + "type": "entrance" + }, + { + "id": "r011-ent-D", + "latlon": [ + 60.183513, + 24.824262 + ], + "name": "Entrance D", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301551228" + ] + ], + "parents": [ + "r011" + ], + "type": "entrance" + }, + { + "id": "r012-ent-D", + "latlon": [ + 60.182797, + 24.82532 + ], + "name": "Entrance D", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301669290" + ] + ], + "parents": [ + "r012" + ], + "type": "entrance" + }, + { + "id": "r039-ent-D", + "latlon": [ + 60.182931, + 24.829457 + ], + "name": "Entrance D", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5270776194" + ] + ], + "parents": [ + "r039" + ], + "type": "entrance" + }, + { + "address": "Otakaari 1 D", + "id": "main-ent-D", + "latlon": [ + 60.185408, + 24.82676 + ], + "name": "Entrance D \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5171375899" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "address": "S\u00e4hk\u00f6miehentie 4 F", + "id": "K4-ent-F", + "latlon": [ + 60.188515, + 24.826029 + ], + "name": "Entrance F", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5490538119" + ] + ], + "parents": [ + "K4" + ], + "type": "entrance" + }, + { + "id": "T-ent-F", + "latlon": [ + 60.186881, + 24.820318 + ], + "name": "Entrance F", + "nosearch": true, + "osm_elements": [ + [ + "node", + "25049724" + ] + ], + "parents": [ + "T" + ], + "type": "entrance" + }, + { + "id": "r011-ent-F3", + "latlon": [ + 60.183059, + 24.823056 + ], + "name": "Entrance F3", + "nosearch": true, + "osm_elements": [ + [ + "node", + "8369110174" + ] + ], + "parents": [ + "r011" + ], + "type": "entrance" + }, + { + "address": "S\u00e4hk\u00f6miehentie 4 G", + "id": "K4-ent-G", + "latlon": [ + 60.1885, + 24.826076 + ], + "name": "Entrance G", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5490538118" + ] + ], + "parents": [ + "K4" + ], + "type": "entrance" + }, + { + "id": "T-ent-I", + "latlon": [ + 60.187247, + 24.820964 + ], + "name": "Entrance I (service) \u26d4", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5101956782" + ] + ], + "parents": [ + "T" + ], + "type": "entrance" + }, + { + "address": "Otakaari 1 K", + "id": "main-ent-K", + "latlon": [ + 60.186808, + 24.828135 + ], + "name": "Entrance K", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1674426522" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "r012-ent-K", + "latlon": [ + 60.182768, + 24.82477 + ], + "name": "Entrance K (main)", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301670848" + ] + ], + "parents": [ + "r012" + ], + "type": "entrance" + }, + { + "id": "main-ent-L", + "latlon": [ + 60.18717, + 24.828263 + ], + "name": "Entrance L", + "nosearch": true, + "osm_elements": [ + [ + "node", + "1433646855" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "T-ent-L", + "latlon": [ + 60.187066, + 24.821995 + ], + "name": "Entrance L", + "nosearch": true, + "osm_elements": [ + [ + "node", + "569957326" + ] + ], + "parents": [ + "T" + ], + "type": "entrance" + }, + { + "id": "main-ent-M", + "latlon": [ + 60.187205, + 24.828314 + ], + "name": "Entrance M", + "nosearch": true, + "osm_elements": [ + [ + "node", + "299447493" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "main-ent-N", + "latlon": [ + 60.18746, + 24.828558 + ], + "name": "Entrance N \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5027035164" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "main-ent-P", + "latlon": [ + 60.18721, + 24.829099 + ], + "name": "Entrance P", + "nosearch": true, + "osm_elements": [ + [ + "node", + "299447502" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "r012-ent-R", + "latlon": [ + 60.183146, + 24.824994 + ], + "name": "Entrance R", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5020264807" + ] + ], + "parents": [ + "r012" + ], + "type": "entrance" + }, + { + "id": "main-ent-T", + "latlon": [ + 60.186655, + 24.828842 + ], + "name": "Entrance T \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "299447504" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "main-ent-U", + "latlon": [ + 60.186478, + 24.82923 + ], + "name": "Entrance U \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "569956704" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "main-ent-U1", + "latlon": [ + 60.18633, + 24.829592 + ], + "name": "Entrance U1 \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "5027035173" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "address": "Otakaari 1 X", + "id": "main-ent-X", + "latlon": [ + 60.186205, + 24.830366 + ], + "name": "Entrance X", + "nosearch": true, + "osm_elements": [ + [ + "node", + "301814758" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "address": "Otakaari 1 Y", + "id": "main-ent-Y", + "latlon": [ + 60.185781, + 24.828842 + ], + "name": "Entrance Y", + "nosearch": true, + "osm_elements": [ + [ + "node", + "2564163071" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "address": "Otakaari 1 Z", + "id": "main-ent-Z", + "latlon": [ + 60.185785, + 24.828414 + ], + "name": "Entrance Z \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "299449721" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "main-ent-\u00c4", + "latlon": [ + 60.185658, + 24.827192 + ], + "name": "Entrance \u00c4", + "nosearch": true, + "osm_elements": [ + [ + "node", + "569956681" + ] + ], + "parents": [ + "main" + ], + "type": "entrance" + }, + { + "id": "marsio-ent-12141949984", + "latlon": [ + 60.186505, + 24.826527 + ], + "name": "Entrance \u267f", + "nosearch": true, + "osm_elements": [ + [ + "node", + "12141949984" + ] + ], + "parents": [ + "marsio" + ], + "type": "entrance" + } + ], + "redirects": { + "cs-C105": "T2" + }, + "search": [] +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..6a4475c --- /dev/null +++ b/index.html @@ -0,0 +1,307 @@ + + + + Useful Aalto Map + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ Unofficial | About (Github) +
+ + diff --git a/main/main.css b/main/main.css new file mode 100644 index 0000000..9cbbcf5 --- /dev/null +++ b/main/main.css @@ -0,0 +1,3 @@ +.aliases { + color: #999999; +} \ No newline at end of file diff --git a/main/main.html b/main/main.html new file mode 100644 index 0000000..0eef332 --- /dev/null +++ b/main/main.html @@ -0,0 +1,23 @@ +
+ + + {{get_lang(item, 'name') || item.id}} ({{ item['type'].toLowerCase() }}) + + {{alias}}{{$last ? '' : ', '}} + + + + + +
\ No newline at end of file diff --git a/main/main.js b/main/main.js new file mode 100644 index 0000000..a389692 --- /dev/null +++ b/main/main.js @@ -0,0 +1,127 @@ +angular.module('usefulAaltoMap') +.controller('main', function($http, $scope, $state, leafletData, $mdSidenav, mapService, utils) { + +$scope.zoomOnObject = mapService.zoomOnObject; +$scope.openSideNav = mapService.openSideNav; +$scope.searchQuerySelected = mapService.searchQuerySelected; + + +/* Utility methods */ + +$scope.get_lang = utils.get_lang; + +function set_lang(lang) { + // Set language. This doesnt' work right now. + LANG = lang; +} +$scope.set_lang = set_lang; + +/* Core visualization methods */ + + /*if (navigator.geolocation) { + navigator.geolocation.getCurrentPosition(function(args) { + $scope.map.center.lat = args.coords.latitude; + $scope.map.center.lng = args.coords.longitude; + }) + }*/ + + $scope.map = mapService.map; + + // When an object is selected. + + $scope.goToState = function(stateName, params) { + $state.go(stateName, params); + } + + $scope.zoomOnObjectById = function(id) { + //if (! ('outline' in mapService.data[id] || 'latlon' in mapService.data[id])) + // openSidenav(mapService.data[id]); + $scope.zoomOnObject(mapService.data[id]); + openSidenav(id); + } + + $scope.getItemText = function(selectedItem) { + return $scope.get_lang(selectedItem, 'name') || selectedItem.id; + } + + $scope.getItems = function(searchQuery) { + searchQuery = searchQuery.toLowerCase(); // What user enters + + // Helper function for filtering search results + function match(str, minmatch) { + if (!str) return false; + if (minmatch && searchQuery.length < minmatch) return false; + // Searching for just a digit + if (searchQuery.match('/^[0-9]{1,2}$/')) { + return str.endsWith(searchQuery) + } + // Searching for a single letter - building letters + else if (searchQuery.length == 1) { + return str.toLowerCase() == searchQuery + } + // Searching for only two letters - match at start of each word only + else if (searchQuery.length == 2) { + return RegExp("\\b"+searchQuery, 'i').test(str) + } + // Generic search + else { + return str.toLowerCase().indexOf(searchQuery) > -1 + } + } + + // Check if the query matches an alias + function matchAliases(d) { + var matched = false; + angular.forEach(d.aliases, function(a) { + if (match(a)) { matched = true }; + }) + return matched; + } + + return _.filter(mapService.data, function(d) { + return !d.nosearch && (match(d.name) || match(d.name_fi) || match(d.name_en) || match(d.name_sv) || match(d.id) || matchAliases(d) || match(d.address, 7)); + }) + } + + function openSidenav(objId) { + $state.go('app.selectedObject', {objectId: objId}) + /*.then(function() { + return; + })*/ + } + + $scope.$on('leafletDirectivePath.click', function(event, args) { + event.preventDefault(); + openSidenav(args.modelName) + }) + + $scope.$on('leafletDirectivePath.mouseover', function(event, args) { + var data = mapService.data[args.modelName] + mapService.highlightObject(mapService.data[args.modelName]); + var pxBounds = args.leafletObject._pxBounds; + var popup = L.popup({autoPan: false, offset: {x: 0, y: -(pxBounds.max.y - pxBounds.min.y) / 2}}) + .setLatLng(data.latlon) + .setContent(args.leafletObject.options.mouseoverMessage) + .openOn(mapService.leafletMap) + }) + + $scope.$on('leafletDirectivePath.mouseout', function(event, args) { + var path = $scope.map.paths[args.modelName]; + mapService.resetColors(path) + }) + + $scope.$on('leafletDirectiveMarker.mouseover', function(event, args) { + var data = mapService.data[args.modelName.replace(/_h_/g,'-').replace(/_p_/g,'.')]; + var popup = L.popup({autoPan: false, offset: {x: 0, y: -35}}) + .setLatLng(data.latlon) + .setContent(args.leafletObject.options.mouseoverMessage) + .openOn(mapService.leafletMap) + }) + + $scope.$on('leafletDirectiveMarker.click', function(event, args) { + event.preventDefault(); + openSidenav(args.modelName.replace(/_h_/g,'-').replace(/_p_/g,'.')) + }) + + +}) diff --git a/otaniemi.yml b/otaniemi.yml new file mode 100644 index 0000000..7bcee90 --- /dev/null +++ b/otaniemi.yml @@ -0,0 +1,1493 @@ +# 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: Student services + id: studentservices + type: service + - 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 + address: Room U133a + - id: studenthub + osm: 514232691 + type: location + - id: startingpoint + latlon: [60.18655, 24.82870] + name: Starting Point + ref: Y199a + opening_hours: Mo-Fr 11:00-13:00; PH off + type: service + - 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 + - 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€. + #- name: IT Service Desk Dipoli + # id: servicedesk_dipoli + # type: service + # latlon: [60.18525, 24.83262] + # 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: + # - name: IT Service Desk MT3 + # id: servicedesk_mt3 + # type: service + # 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 + #- name: IT Service Desk Maari + # id: servicedesk_tuas + # latlon: [60.18698, 24.81854] + # type: service + # address: TUAS 1163 + # note: >- + # Open at least during the stated times, but people may be available at + # other times as well. + - 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 +# name: Töölön Tornit +# name_en: Töölö Towers +# address: Pohjoinen Hesperiankatu 23 +# osm: 234804200 + + + +## Arabia +# - id: arabia +# name: Aalto Arabia Building +# name_fi: Aalto Arabiakeskus +# osm: 86969021 +# address: Hämeentie 135 C + +# Metsähovi + - id: metsahovi + name: Metsähovi main building + osm: 223131392 + + +other: + - id: xburger + name: X-burger + type: restaurant + osm: 322041317 + - id: valimo + name: Valimo + osm: node=4840360721 + type: restaurant + parents: [r059] + - id: itservicedesks + name: IT Service Desks + name_fi: IT Käyttäjäpalvelut + parents: [servicedesk_kandi, servicedesk_vare] + url: https://www.aalto.fi/en/services/it-service-desk-contact-information-and-service-hours + type: unit + - id: terveystalo + name: Terveystalo Otaniemi + osm: node=9044279912 + type: service + parents: [abloc] + #- id: terveystalo2 + # name: Terveystalo Metallimiehenkuja + # osm: node=5020264817 + # type: service + # parents: [r059] + - id: convroom + osm: 515942280 + type: service + - id: vare-postbox # OSM node is now missing + name: Postilaatikko + name_en: Post box + aliases: [Mail box] + osm: node=11430420741 + note: Collection times Mo-Fr 16:00 + type: service + - id: taxi-metro + name: Taxi + aliases: [Taksi] + osm: node=5020264820 + type: service + note: >- + Usually you will call for one instead. Lähitaksi phone=0100 7300 + - id: maukas + osm: node=2381695985 + type: restaurant + - id: otaparkki + osm: 1202350275 + type: auxbuilding + - id: lightrail + osm: node=9574731673 + name: Light Rail + name_fi: Pikaraitio + name_sv: Snabbspårvägs + aliases: [Tram, Tram 13, Line 13] + type: service + + +# SCHOOLS + - id: ARTS + name_en: School of Arts, Design and Architecture + name_fi: Taiteiden ja suunnittelun korkeakoulu + name_sv: Högskolan för konst,design och arkitektur + aliases: [ARTS] + type: school + parents: [vare, marsio, A] #main, r067 + url_en: http://arts.aalto.fi/en/ + url_fi: http://arts.aalto.fi/fi/ + url_sv: http://arts.aalto.fi/sv/ + - id: BIZ + name_en: School of Business + name_fi: Kauppakorkeakoulu + name_sv: Handelshögskolan + aliases: [BIZ] + type: school + parents: [R068] + url_en: http://biz.aalto.fi/en/ + url_fi: http://biz.aalto.fi/fi/ + - id: CHEM + name_en: School of Chemical Engineering + name_fi: Kemian tekniikan korkeakoulu + name_sv: Högskolan för kemiteknik + aliases: [CHEM] + type: school + parents: [r011, r013, micronova] + url_en: http://chem.aalto.fi/en/ + url_fi: http://chem.aalto.fi/fi/ + url_sv: http://chem.aalto.fi/sv/ + - id: ELEC + name_en: School of Electrical Engineering + name_fi: Sähkötekniikan korkeakoulu + name_sv: Högskolan för elektroteknik + aliases: [ELEC] + type: school + parents: [agrid-K, tuas, micronova, kide] + url_en: http://elec.aalto.fi/en/ + url_fi: http://elec.aalto.fi/fi/ + url_sv: http://elec.aalto.fi/sv/ + - id: ENG + name_en: School of Engineering + name_fi: Insinööritieteiden korkeakoulu + name_sv: Högskolan för ingenjörsvetenskaper + aliases: [ENG] + type: school + parents: [K1, r034, # Built Env + r002, # Civil + K1, K3, K2, K4, r016, # Mechanical + ] + url_en: http://eng.aalto.fi/en/ + url_fi: http://eng.aalto.fi/fi/ + url_sv: http://eng.aalto.fi/sv/ + - id: SCI + name_en: School of Science + name_fi: Perustieteiden korkeakoulu + name_sv: Högskolan för teknikvetenskaper + aliases: [SCI] + type: school + parents: [main, F, K1, nanotalo, T, micronova, kide] + url_en: http://sci.aalto.fi/en/ + url_fi: http://sci.aalto.fi/fi/ + url_sv: http://sci.aalto.fi/sv/ + +# DEPARTMENTS + # ARTS + - id: dept:architecture + name_en: Department of Architecture + name_fi: Arkkitehtuurin laitos + name_sv: Institutionen för arkitektur + type: department + parents: [vare, A, ARTS] + url: http://architecture.aalto.fi/ + url_en: http://architecture.aalto.fi/en/ + - id: dept:artmedia + name_en: Department of Art and Media + name_fi: Taiteen ja median laitos + name_sv: Institutionen för konst och media + type: department + parents: [vare, ARTS] + url_en: https://www.aalto.fi/en/department-of-art-and-media + url_fi: https://www.aalto.fi/fi/taiteen-ja-median-laitos + children: + - id: medialab + name: Aalto Media Lab + type: unit + parents: [vare] + - id: dept:design + name_en: Department of Design + name_fi: Muotoilun laitos + name_sv: Institutionen för design + type: department + parents: [vare, ARTS] + url: http://design.aalto.fi/ + url_en: http://design.aalto.fi/en/ + - id: dept:film + name_en: Department of Film, Television and Scenography + name_fi: Elokuvataiteen ja lavastustaiteen laitos + name_sv: Institutionen för filmkonst och scenografi + type: department + parents: [vare, ARTS] + aliases: [ELO] + url: http://elo.aalto.fi/ + url_en: http://elo.aalto.fi/en/ + - id: dept:pupa + name_en: Pori Urban Platform (PUPA) + name_fi: Porin yliopistokeskus (PUPA) + name_sv: + type: department + parents: [] + url_en: http://taide.aalto.fi/en/pori/ + url_fi: http://taide.aalto.fi/fi/pori/ + # BIZ + - id: dept:accounting + name_en: Department of Accounting + name_fi: Laskentatoimen laitos + type: department + parents: [R068, BIZ] + url_en: http://accounting.aalto.fi/en/ + url_fi: accounting.aalto.fi/fi/ + - id: dept:economics + name_en: Department of Economics + name_fi: Taloustieteen laitos + note: Department located on Arabia campus, Helsinki. + type: department + parents: [R068, BIZ] + url_en: http://economics.aalto.fi/en/ + url_fi: http://economics.aalto.fi/fi/ + - id: dept:finance + name_en: Department of Finance + name_fi: Rahoituksen laitos + type: department + parents: [R068, BIZ] + url_en: http://finance.aalto.fi/en/ + url_fi: http://finance.aalto.fi/fi/ + - id: dept:infosrv + name_en: Department of Information and Service Economy + name_fi: Tieto- ja palvelutalouden laitos + type: department + parents: [R068, BIZ] + url_en: http://information.aalto.fi/en/ + url_fi: http://information.aalto.fi/fi/ + - id: dept:management + name_en: Department of Management + name_fi: Johtamisen laitos + type: department + parents: [R068, BIZ] + url_en: http://management.aalto.fi/en/ + url_fi: http://management.aalto.fi/fi + - id: dept:marketing + name_en: Department of Marketing + name_fi: Markkinoinnin laitos + type: department + parents: [R068, BIZ] + url_en: + url_fi: + - id: unit:aaltoee + name_en: Aalto University Executive Education + type: unit + aliases: [Aalto EE] + parents: [domusgadium, BIZ] + url: http://www.aaltoee.com/ + - id: unit:cikr + name_en: Center for Knowledge and Innovation Research + name_fi: Tiedon ja innovaatioiden tutkimuskeskus + aliases: [CKIR] + type: unit + parents: [R068, BIZ] + url_en: http://ckir.aalto.fi/en/ + url_fi: http://ckir.aalto.fi/fi/ + - id: unit:mikkeli + name_en: Mikkeli Campus + name_fi: Mikkelin yksikkö + type: unit + parents: [BIZ] + url_en: http://biz.aalto.fi/en/studies/mikkeli/ + url_fi: http://biz.aalto.fi/fi/studies/mikkeli/ + # CHEM + - id: dept:cmet + name_en: Department of Chemical and Metallurgical Engineering + name_fi: Kemian tekniikan ja metallurgian laitos + name_sv: + type: department + parents: [r011, CHEM] + url_en: http://cmet.aalto.fi/en/ + url_fi: http://cmet.aalto.fi/fi/ + - id: dept:cmat + name_en: Department of Chemistry and Materials Science + name_fi: Kemian ja materiaalitieteen laitos + name_sv: Institutionen för materialteknik + type: department + parents: [r011, micronova, CHEM] + aliases: [CMAT] + url_en: http://cmat.aalto.fi/en/ + url_fi: http://cmat.aalto.fi/fi/ + - id: dept:bio + name_en: Department of Bioproducts and Biosystems + name_fi: Biotuotteiden ja biotekniikan laitos + name_sv: Institutionen för bio- och kemiteknik + type: department + aliases: [Bio2] + parents: [r013, CHEM] # TODO + # ELEC + - id: dept:eea + name_en: Department of Electrical Engineering and Automation + name_fi: Sähkötekniikan ja automaation laitos + name_sv: Instititutionen för elektroteknik och automation + type: department + parents: [tuas, F, agrid, micronova, ELEC] + url_en: http://eea.aalto.fi/en/ + url_fi: http://eea.aalto.fi/fi/ + - id: dept:ele + name_en: Department of Electronics and Nanoengineering + name_fi: Elektroniikan ja nanotekniikan laitos + name_sv: Institutionen för elektronik och nanoteknik + type: department + parents: [micronova, tuas, ELEC] + url_en: http://ele.aalto.fi/en/ + url_fi: http://ele.aalto.fi/fi/ + - id: dept:dice + name_en: Information and Communications Engineering + name_fi: Informaatio- ja tietoliikennetekniikan laitos + #name_sv: + type: department + parents: [agrid, kide, ELEC] + url_en: https://dice.aalto.fi/en/ + url_fi: https://dice.aalto.fi/fi/ + - id: unit:nanofab + name: Aalto Nanofab + type: unit + aliases: [Micronova] + parents: [micronova, ELEC] + url: http://www.micronova.fi/ + - id: unit:metsahovi + name_en: Metsähovi Radio Observatory + name_fi: Metsähovin radiotutkimusasema + name_sv: Skoggård radioforskningsinstitut + type: unit + parents: [metsahovi, ELEC] + url_en: http://metsahovi.aalto.fi/en/ + url_fi: http://metsahovi.aalto.fi/fi/ + # ENG + - id: dept:mecheng + name_en: Department of Mechanical Engineering + name_fi: Konetekniikan laitos + type: department + parents: [K1, K2, K3, K4, r016, ENG] + url_en: http://mecheng.aalto.fi/en/ + url_fi: http://mecheng.aalto.fi/fi/ + - id: dept:civileng + name_en: Department of Civil Engineering + name_fi: Rakennustekniikan laitos + type: department + parents: [r002, ENG] + url_en: http://civileng.aalto.fi/en/ + url_fi: http://civileng.aalto.fi/fi/ + - id: dept:builtenv + name_en: Department of Built Environment + name_fi: Rakennetun ympäristön laitos + type: department + parents: [K1, r016, ENG] + url_en: http://builtenv.aalto.fi/en/ + url_fi: http://builtenv.aalto.fi/fi/ + # SCI + - id: dept:physics + name_en: Department of Applied Physics + name_fi: Teknillisen fysiikan laitos + name_sv: Institutionen för teknisk fysik + type: department + parents: [main, micronova, nanotalo, kide, SCI] + url_en: http://physics.aalto.fi/en/ + url_fi: http://physics.aalto.fi/ + - id: dept:cs + name_en: Department of Computer Science + name_fi: Tietotekniikan laitos + name_sv: Institutionen för datateknik + type: department + aliases: [CS] + parents: [T, SCI] + url_en: http://cs.aalto.fi/en/ + url_fi: http://cs.aalto.fi/fi/ + - id: dept:tuta + name_en: Department of Industrial Engineering and Management + name_fi: Tuotantotalouden laitos + name_sv: Institutionen för produktionsekonomi + type: department + parents: [tuas, SCI] + url_en: http://tuta.aalto.fi/en/ + url_fi: http://tuta.aalto.fi/fi/ + - id: dept:math + name_en: Department of Mathematics and Systems Analysis + name_fi: Matematiikan ja systeemianalyysin laitos + name_sv: Institutionen för matematik och systemanlys + type: department + parents: [main, SCI] + note: M wing (Y entrance closest), 2nd-3rd floors + url_en: http://math.aalto.fi/en/ + url_fi: http://math.aalto.fi/fi/ + - id: dept:nbe + name_en: Department of Neuroscience and Biomedical Engineering + name_fi: Neurotieteen ja lääketieteellisen tekniikan laitos + name_sv: Institutionen för neurovetenskap och biomedicinsk teknik + type: department + parents: [F, SCI] + note: "Rakentajanaukio 2 C entrance only, 2nd-3rd floors" + url_en: http://nbe.aalto.fi/en/ + url_fi: http://nbe.aalto.fi/fi/ + - id: unit:hiit + name_en: Helsinki Institute for Information Technology + name_fi: Tietotekniikan tutkimuslaitos + name_sv: Forskningsinstitutet för informationsteknologi + aliases: [HIIT] + type: unit + parents: [T, "dept:cs"] + url_en: http://www.hiit.fi/ + #- id: unit:eit + # name: EIT Digital + # type: unit + # aliases: [EIT Digial] + # parents: [oih] + # url: "http://sci.aalto.fi/en/departments/#eit" + - id: otanano + name: OtaNano + url: https://otanano.fi + parents: [nanotalo, micronova] + type: unit + + +studentvillage: + - id: SMT10 # SMT 10 + osm: 4266885 + - id: SMT12n # SMT 12 (north) + osm: 4266886 + - id: SMT12s # SMT 12 (south) + osm: 4266887 + - id: SK3b # SK 3B + osm: 24342605 + - id: SK3a # SK 3A + osm: 4259186 + - id: SK5a # SK 5A + osm: 4266888 + - id: SK5b # SK 5B + osm: 11074082 + - id: SMT6 # SMT 6 + osm: 4259184 + - id: SMT8 # SMT 8 + osm: 4266889 + - id: SK1 # SK 1 + osm: 4259185 + - id: SK6 # SK 6 + osm: 4259181 + - id: SK2n # SK 2 (north) + osm: 4259182 + - id: SK2s # SK 2 (south) + osm: 4259183 + - id: SMT3 # SMT 3 + osm: 4259187 + - id: SMT1 # SMT 1 + osm: 4259263 + - id: JMT10n # JMT 10 (north) + osm: 24334281 + - id: JMT11n # JMT 11 (north) + osm: 26139101 + - id: JMT10s # JMT 10 (south) + osm: 24334282 + - id: JVM11sw # JMT 11 (south-west) + osm: 24334286 + # TODO: cafe peliluola + - id: JMT11se # JMT 11 (south-east) + osm: 24332800 + - id: JMT9 # JMT 9 + osm: 24332799 + - id: JVM7a # JMT 7A + osm: 24333771 + - id: JMT7c # JMT 7C + osm: 24333796 + - id: JMT7b # JMT 7B + osm: 24333770 + - id: JVM6 # JMT 6 + osm: 24334231 + # TODO: yogurt place? + - id: JMT5a # JMT 5A + osm: 24333899 + # TODO: tatamisali, Dernecon, Gorsu + - id: JMT5b # JMT 5B + osm: 24333934 + - id: JMT5c # JMT 5C + osm: 24333883 + - id: JMT3a # JMT 3A + osm: 24333970 + children: + - id: polyteekkarimuseo + osm: node=25038585 + type: museum + # TODO: hackerspace + - id: JMT3b # JMT 3B + osm: 24334035 + - id: JMT3c # JMT 3C + osm: 24333952 + - id: JMT1 # JMT 1 + osm: 24334123 + # TODO: Teekkarien autokerho TAK + - id: OK18 # OK 18 / Ossin Linna + osm: 4259264 + - id: OK20 # OK 20 + osm: 24334160 + - id: OR8a # OR 8A + osm: 24342700 + - id: OR8b # OR 8B + osm: 24342691 + - id: OR8c # OR 8C + osm: 24342761 + - id: OR8d # OR 8D + osm: 24342769 + - id: OR8e # OR 8E + osm: 24342775 + + +redirects: + cs-C105: T2 diff --git a/sidenav/sidenav.html b/sidenav/sidenav.html new file mode 100644 index 0000000..0425fa8 --- /dev/null +++ b/sidenav/sidenav.html @@ -0,0 +1,75 @@ + +
+ +

{{get_lang(object, 'name')}}

+
+ +
+ FI: {{name_fi}}
+ EN: {{name_en}}
+ SV: {{name_sv}}
+ Address: {{object.address}}
+ Open: {{object.opening_hours}}
+ Site: {{getURL(object)}}
+ Floor: {{ object.floor }}
+ Room: {{ object.ref }}
+ Access: {{ object.access }}
+
+
+ Aliases: {{a}}{{$last ? '' : ', '}} +
+
+ Note: {{get_lang(object, 'note')}} +
+
+ Contains: +
+ - {{get_lang(objects[c], 'name')}} ({{objects[c].type}}) +
+
+
+ Contains part of: +
+ - {{get_lang(objects[c], 'name')}} ({{objects[c].type}}) +
+
+
+ Contained in: +
+ - {{get_lang(objects[p], 'name')}} ({{objects[p].type}}) +
+
+
+ Part of: +
+ - {{get_lang(objects[p], 'name')}} ({{objects[p].type}}) +
+
+
+ Lore: {{get_lang(object, 'lore')}} +
+
Directions: + OpenStreetMap (Foot/bike/car), + Public Transit (HSL), + + Google +
+ +
+
+ +
+ OSM objects: {{c[1]}} +
+
Useful Aalto Map is an open source project to help make the Aalto campus more navigable. Please help us by collecting data (use the links above) or help with programming or design. See our Github project for more info.
+
Language: EN FI SV
+
+
+
+
diff --git a/sidenav/sidenav.js b/sidenav/sidenav.js new file mode 100644 index 0000000..01de52c --- /dev/null +++ b/sidenav/sidenav.js @@ -0,0 +1,83 @@ +angular.module('usefulAaltoMap') +.controller('sidenavController', function($scope, mapService, $state, $mdSidenav, $timeout, utils, object) { + + + $scope.objects = mapService.data; + + $scope.object = object; + + + $scope.get_lang = utils.get_lang; + + $scope.name = utils.get_lang(object, 'name'); + var name = $scope.name; + var name_en = utils.get_lang(object, 'name', 'en'); + var name_fi = utils.get_lang(object, 'name', 'fi'); + var name_sv = utils.get_lang(object, 'name', 'sv'); + if (name != name_en) $scope.name_en = name_en; + if (name != name_fi) $scope.name_fi = name_fi; + if (name != name_sv && name_sv != name_fi && name_sv != name_en) + $scope.name_sv = utils.get_lang(object, 'name', 'sv'); + + + $scope.selectChild = function(id) { + + } + + $timeout(function() { + mapService.zoomOnObject(object) + + $mdSidenav('left').open(); + + $mdSidenav('left').onClose(function () { + $timeout(function() { + $state.go('app.map') + }, 200) + }); + }) + + // This function tests for building or building-like objects. + function isBuilding(obj) { + //return $scope.objects[obj].type == 'building' || $scope.objects[obj].type == 'wing'; + //return ['building', 'wing', 'studenthousing'].index($scope.objects[obj].type); + return $scope.objects[obj].type in {'building':1, 'wing':1, 'studenthousing':1}; + } + // Remove all non-buildings from a list. + function filterNonBuildings(lst) { + return lst.filter(function(x) { return !isBuilding(x) }) + } + + $scope.selectContains = function(object) { + if (object.children == null) return []; + return object.children.filter( function (c) { + return c in $scope.objects && ($scope.objects[c].parents == null || filterNonBuildings($scope.objects[c].parents).length <= 1) + } ) + } + + $scope.selectContainsPartOf = function(object) { + if (object.children == null) return []; + return object.children.filter( function (c) { + return c in $scope.objects && ($scope.objects[c].parents != null && filterNonBuildings($scope.objects[c].parents).length > 1) + } ) + } + + $scope.selectContainedIn = function(object) { + if (object.parents == null) return []; + return object.parents.filter( function (p) { + return p in $scope.objects && isBuilding(p) + } ) + } + + $scope.selectPartOf = function(object) { + if (object.parents == null) return []; + return object.parents.filter( function (p) { + return p in $scope.objects && ! isBuilding(p) + } ) + } + + $scope.getURL = function(object) { + return $scope.get_lang(object, 'url'); + } + + +})