From 391f41f9fc1ccb6f54f6f9324eeb5755ef6758f9 Mon Sep 17 00:00:00 2001 From: Rishab Garg Date: Thu, 7 Nov 2024 18:07:12 +0100 Subject: [PATCH 1/3] fix typos and links in various documentation files (#1649) * docs: fix typos and outdated/wrong links * add more context about the data generation shema --------- Co-authored-by: Frank Elsinga --- README.md | 8 ++++---- SECURITY.md | 4 ++-- data/README.md | 13 +++++++------ deployment/README.md | 12 ++++++------ map/README.md | 12 ++++++------ map/download.sh | 2 +- .../{Dependencys.md => Dependencies.md} | 13 +++++++------ server/Dockerfile | 2 +- server/README.md | 6 +++--- webclient/README.md | 18 ++++++------------ 10 files changed, 43 insertions(+), 47 deletions(-) rename resources/documentation/{Dependencys.md => Dependencies.md} (85%) diff --git a/README.md b/README.md index f2db08ffa..cb9ef54c6 100644 --- a/README.md +++ b/README.md @@ -64,13 +64,13 @@ cd Navigatum ### Data Processing In case you do not want to work on the data processing, you can instead -download the latest compiled files via running the server. +download the latest compiled files by running the server. -Else you can follow the steps in the [data documentation](data/README.md). +Otherwise, you can follow the steps in the [data documentation](data/README.md). ### Server -If you want to work on the webclient only (and not server or data), you don't need to set up the server. +If you want to work only on the webclient (and not server or data), you don't need to set up the server. You can instead either use the public API (see the [webclient documentation](webclient/README.md#Testing)) or use our ready-made docker images to run the server locally: @@ -90,7 +90,7 @@ docker compose -f docker-compose.local.yml up --build > these can be resolved via upstream language improvements such as > [polonius](https://blog.rust-lang.org/inside-rust/2023/10/06/polonius-update.html), [cranelift](https://github.com/rust-lang/rustc_codegen_cranelift), [paralell-frontend](https://blog.rust-lang.org/2023/11/09/parallel-rustc.html),.... -Else you can follow the steps in the [server documentation](server/README.md). +Otherwise, you can follow the steps in the [server documentation](server/README.md). ### Webclient diff --git a/SECURITY.md b/SECURITY.md index c8b56b51f..414a44ba5 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,7 +2,7 @@ ## Reporting a Vulnerability -Please report any and all security vulnerabilitys you found, or you think you found at navigatum (at) tum.de . +Please report any and all security vulnerabilities you found, or you think you found at navigatum (at) tum.de . We will diagnose the issue internally and propose a fix. The timeline of a fix depends on how severe the problem is and what impacts it has. -As a reward for reporting such vulnerabilitys you can get exclusive stickers at the MPI student council office or other small things. +As a reward for reporting such vulnerabilities you can get exclusive stickers at the MPI student council office or other small things. diff --git a/data/README.md b/data/README.md index b57606d4e..2e849467d 100644 --- a/data/README.md +++ b/data/README.md @@ -6,7 +6,7 @@ This folder contains: - Custom data inserted into the datasets - Custom patches applied on the source data -The code to retrieve external data, as well as externally retrieved data is located under `external`. +The code to retrieve external data as well as externally retrieved data is located under `external`. > [!WARNING] > A lot of this code is more a work-in-progress than finished. @@ -22,12 +22,12 @@ The code to retrieve external data, as well as externally retrieved data is loca ### Prerequisites For getting started, there are some system dependencies which you will need. -Please follow the [system dependencies docs](/resources/documentation/Dependencys.md) before trying to run this part of +Please follow the [system dependencies docs](/resources/documentation/Dependencies.md) before trying to run this part of our project. ### Dependencies -Since data needs some python dependency's, you will need to install them first. +Since data needs some python dependencies, you will need to install them first. We recommend doing this in a virtual environment. From the root of the project, run: @@ -123,10 +123,11 @@ data ## Compilation process -The data compilation is made of indiviual processing steps, where each step adds new or modifies the current data. The -basic structure of the data however stays the same from the beginning on and is specified in `data-format_*.yaml`. +The data compilation is made of individual processing steps, where each step adds new or modifies the current data. +The final structure of the data, is specified in `data-format_*.yaml`. +Some work is underway to ensure that this format is actually being followed via simplifying the data backend and migrating the database server from managing a json blob to "real" tables. This is not done yet. -- **Step 00**: The first step reads the base root node, areas, buildings etc. from the +- **Step 00**: The first step reads the base root node, areas, buildings, etc. from the `sources/00_areatree` file and creates an object collection (python dictionary) with the data format as mentioned above. - **Steps 01-29**: Within these steps, new rooms or POIs might be added, however no diff --git a/deployment/README.md b/deployment/README.md index 2963e135e..afbf4b213 100644 --- a/deployment/README.md +++ b/deployment/README.md @@ -1,6 +1,6 @@ # Deployment -This Project details how to deploy NavigaTUM +This Project details how to deploy NavigaTUM. The documentation for the specific sub-services can be found in the respective directories: - [Data](../data/README.md) @@ -30,7 +30,7 @@ The current physical infrastructure is as follows: On each of the servers we run a docker cluster configured via ansible. The deployment script is located at `TUM-Dev/d9s`. We intentionally are not running kubernetes, as we never need to scale above 0.1 CPUs in active deployment. -We are confindent that even if we were to add more universitys, more load would not exceed the capacity of one server. +We are confindent that even if we were to add more universities, more load would not exceed the capacity of one server. On every of these nodes we run the following supporting services: @@ -41,10 +41,10 @@ On every of these nodes we run the following supporting services: We run the following components at these paths: -- `/` [webclient](../webclient) written in [`Vue`]/[`nuxt-4`](https://nuxt.dev) -- `/api/` [server](../server) written in [`Rust`](https://nuxt.dev)/[`actix-web`](https://nuxt.dev) -- `/tiles/` [`marvin`] tiles from OSM -- `/map/` [`tileserver-gl`] rendering tiles from OSM +- `/` [webclient](../webclient) written in [`Vue`](https://vuejs.org/)/[`nuxt-4`](https://nuxt.dev) +- `/api/` [server](../server) written in [`Rust`](https://www.rust-lang.org/)/[`actix-web`](https://actix.rs/) +- `/tiles/` [`martin`](https://martin.maplibre.org/) tiles from OSM +- `/map/` [`tileserver-gl`](https://github.com/maptiler/tileserver-gl) rendering tiles from OSM slated to be removed in favor of `/tiles/` - `/cdn` nginx server serving the static files we need slated to be folded into the `server`-startup diff --git a/map/README.md b/map/README.md index 1f3d5691f..0e24e35d5 100644 --- a/map/README.md +++ b/map/README.md @@ -4,14 +4,14 @@ This folder contains the static maps tileserver and vector tiles server for Navi ## Getting started -As a basis of generating images it is important to have a tileset (`output.mbtiles`) and a stile. +As a basis of generating images it is important to have a tileset (`output.mbtiles`) and a style. The style is a JSON file that defines how the map should look like. The tileset is a sqlite database that contains the map data. A tileserver takes these two components and produces a variety of formats ([MVT](https://github.com/mapbox/vector-tile-spec), png, webp, json, etc.) for the frontend. ### Edit the style -You cannot currently not preview the style in our tileserver martin (see [martin#1120](https://github.com/maplibre/martin/issues/1120)). +You cannot currently preview the style in our tileserver martin (see [martin#1120](https://github.com/maplibre/martin/issues/1120)). Therefore, for editing the style we use [Maputnik](https://github.com/maputnik/editor). It is a web-based editor for Maplibre styles. You can use it to edit the style and see the changes live. @@ -25,7 +25,7 @@ To run maputnik, you can either Our style can be found here and can either be "Load[ed] from Url" or uploaded into maputnik manually: ``` -https://github.com/TUM-Dev/NavigaTUM/raw/refs/heads/main/map/styles/navigatum-basemap.json +https://raw.githubusercontent.com/TUM-Dev/NavigaTUM/refs/heads/main/map/styles/navigatum-basemap.json ``` | Step 1 | Step 2 | @@ -35,13 +35,13 @@ https://github.com/TUM-Dev/NavigaTUM/raw/refs/heads/main/map/styles/navigatum-ba ### generate your own tileset Sadly tilesets are really large (`germany` is ~10GB, `planet` ~90GB). -Because of limited badwith and storage space we can't provide a tileset for everyone. +Because of limited bandwith and storage space we can't provide a tileset for everyone. You can generate your own tileset from [OpenStreetMap Data](https://osmdata.openstreetmap.de/) via [planettiler](https://github.com/onthegomap/planetiler) or other equivalent tools. From our experience the best way to generate a tileset is to -use [planettiler](https://github.com/onthegomap/planetiler), as their perofrmance is by far (other competitors are not -even close by our tests) the best, and they can work in resourece constreained environments. +use [planettiler](https://github.com/onthegomap/planetiler), as their performance is by far (other competitors are not +even close by our tests) the best, and they can work in resource constrained environments. From a resource perspective, you need about 2x the size of the tileset as free space on your disk and above 10GB in free RAM. diff --git a/map/download.sh b/map/download.sh index 945789d4b..829cdbbb7 100755 --- a/map/download.sh +++ b/map/download.sh @@ -10,7 +10,7 @@ rm -rf ./gtfs_feeds/* mkdir --parents gtfs_feeds mkdir --parents data/transit_tiles -echo -- download dependencys -- +echo -- download dependencies -- if command -v apk > /dev/null 2>&1 then apk --update add --quiet wget diff --git a/resources/documentation/Dependencys.md b/resources/documentation/Dependencies.md similarity index 85% rename from resources/documentation/Dependencys.md rename to resources/documentation/Dependencies.md index 62b83181f..2f1d655c3 100644 --- a/resources/documentation/Dependencys.md +++ b/resources/documentation/Dependencies.md @@ -1,6 +1,6 @@ -# Dependencys +# Dependencies -Our project has a few system-level-dependencies, which are generally usefully and a few which are only used for some +Our project has a few system-level-dependencies, which are generally useful and a few which are only used for some parts of the project. If you get stuck or have any questions, feel free to contact us. We are happy to help. @@ -8,9 +8,9 @@ If you get stuck or have any questions, feel free to contact us. We are happy to ### OS -We recommend using a Linux based OS, as we have not tested the project on Windows or Mac. +We recommend using a Linux-based OS, as we have not tested the project on Windows or Mac. ("There be dragons", but we will try to improve this part if you show us where we fail) -If you are using Windows, use [WSL](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to run Linux on Windows. +If you are using Windows, use [WSL](https://learn.microsoft.com/en-us/windows/wsl/install) to run Linux on Windows. Please make sure that your OS is up-to-date, before we start. (Trust me, this has fucked over multiple people...) On Ubuntu this is as easy as running `sudo apt update && sudo apt upgrade`. @@ -66,6 +66,7 @@ To install Rust, you can use [rustup](https://rustup.rs/). The server uses OpenSSL to verify TLS certificates. +On Debian-based systems like Ubuntu, you can install it with: ```bash sudo apt-get install build-essential pkg-config openssl libssl-dev ``` @@ -75,9 +76,9 @@ sudo apt-get install build-essential pkg-config openssl libssl-dev #### NodeJS We use NodeJS for the webclient. -Setting NodeJS up is a bit more complicated than setting up python/rust, but it is still pretty easy. +Setting up NodeJS is a bit more complicated than setting up python/rust, but it is still pretty easy. -- On linux, you can get it through your favorite package manager. +- On Linux, you can get it through your favorite package manager. You normally should need to install `nodejs` and `pnpm`. - On WSL, use [this guide](https://learn.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-wsl) and [this guide](https://pnpm.io/installation) diff --git a/server/Dockerfile b/server/Dockerfile index 0d29aeafd..b29261e71 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -3,7 +3,7 @@ ARG BUILDKIT_SBOM_SCAN_CONTEXT=true FROM rust:1.82-alpine AS compiler -# to ache the build this line inludes all the dependencys all servers need +# to ache the build this line inludes all the dependencies all servers need # this is not an issue since we copy the generated binary to a more minimal envornment # Descriptions: # - musl-dev is needed for musl to compile the binary diff --git a/server/README.md b/server/README.md index 1d6ef1bde..cfe5d05e3 100644 --- a/server/README.md +++ b/server/README.md @@ -6,8 +6,8 @@ This folder contains the main backend server for NavigaTUM. ### Prerequisites -For getting started, there are some system dependencys which you will need. -Please follow the [system dependencys docs](/resources/documentation/Dependencys.md) before trying to run this part of +For getting started, there are some system dependencies which you will need. +Please follow the [system dependencies docs](/resources/documentation/Dependencies.md) before trying to run this part of our project. ### Additional dependency @@ -21,7 +21,7 @@ endpoint is a non-essential part of the project. #### How to Set up the Databases -At the beginning of the main api we set up both meilisearch and the database. +At the beginning of the main API we set up both meilisearch and the database. This will ensure that the sqlite database and meilisearch index is created. This requires meilisearch to be online. diff --git a/webclient/README.md b/webclient/README.md index df1c4c7cb..1a7429c96 100644 --- a/webclient/README.md +++ b/webclient/README.md @@ -1,13 +1,13 @@ # Webclient -This folder contains the JavaScript based webclient for NavigaTUM. +This folder contains the JavaScript-based webclient for NavigaTUM. ## Getting started ### Prerequisites For getting started, there are some system dependencies which you will need. -Please follow the [system dependencies docs](/resources/documentation/Dependencys.md) before trying to run this part of +Please follow the [system dependencies docs](/resources/documentation/Dependencies.md) before trying to run this part of our project. ### Recommended IDE Setup @@ -17,15 +17,9 @@ Most modern IDEs (like the PyCharm+RustRover+WebStorm combination) should work a ## Dependencies -### Prerequisites - -For getting started, there are some system dependencys which you will need. -Please follow the [system dependencys docs](/resources/documentation/Dependencys.md) before trying to run this part of -our project. +### Installing Dependencies -### Installing Dependency's - -```bash +```sh pnpm install ``` @@ -36,11 +30,11 @@ By default, the webclient will connect to the server on `https://nav.tum.de`. If you want to connect to a local version instead, change the environemnt variable `NUXT_PUBLIC_{API,CDN,FEEDBACK,MAPS}_URL` to the appropriate value. -To get a local server running, please: +To get a local server running, you can do so: - either via following the [guide to local development](../server/README.md), or - via [docker](https://docs.docker.com/) by commenting out the webclient from the docker-compose-file and running - ```bash + ```sh docker compose -f docker-compose.local.yml up --build ``` From 0ca4449fb888b9d802c634c21b518206876570fb Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 7 Nov 2024 18:22:23 +0100 Subject: [PATCH 2/3] cherry pick of the data update from #1658 --- data/external/results/orgs-de_tumonline.json | 571 +++++++++--------- data/external/results/orgs-en_tumonline.json | 587 ++++++++++--------- data/external/results/rooms_tumonline.json | 12 +- 3 files changed, 620 insertions(+), 550 deletions(-) diff --git a/data/external/results/orgs-de_tumonline.json b/data/external/results/orgs-de_tumonline.json index bd6f9e9f8..8969fd188 100644 --- a/data/external/results/orgs-de_tumonline.json +++ b/data/external/results/orgs-de_tumonline.json @@ -932,92 +932,92 @@ "15426": { "code": "TUINI01", "name": "Informatik 1 - Lehrstuhl f\u00fcr Distributed Systems and Operating Systems (Prof. Bhatotia)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 1 - Lehrstuhl f\u00fcr Distributed Systems and Operating Systems (Prof. Bhatotia)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Distributed Systems and Operating Systems (Prof. Bhatotia)" }, "15427": { "code": "TUINI02", "name": "Informatik 2 - Lehrstuhl f\u00fcr Sprachen und Beschreibungsstrukturen in der Informatik (Prof. Seidl)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 2 - Lehrstuhl f\u00fcr Sprachen und Beschreibungsstrukturen in der Informatik (Prof. Seidl)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Sprachen und Beschreibungsstrukturen in der Informatik (Prof. Seidl)" }, "15428": { "code": "TUINI03", "name": "Informatik 3 - Lehrstuhl f\u00fcr Datenbanksysteme (Prof. Kemper)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 3 - Lehrstuhl f\u00fcr Datenbanksysteme (Prof. Kemper)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Datenbanksysteme (Prof. Kemper)" }, "15430": { "code": "TUINI05", "name": "Informatik 5 - Lehrstuhl f\u00fcr Scientific Computing (Prof. Bungartz)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 5 - Lehrstuhl f\u00fcr Scientific Computing (Prof. Bungartz)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Scientific Computing (Prof. Bungartz)" }, "15431": { "code": "TUINI06", "name": "Informatik 6 - Lehrstuhl f\u00fcr Robotik, K\u00fcnstliche Intelligenz und Echtzeitsysteme (Prof. Knoll)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 6 - Lehrstuhl f\u00fcr Robotik, K\u00fcnstliche Intelligenz und Echtzeitsysteme (Prof. Knoll)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Robotik, K\u00fcnstliche Intelligenz und Echtzeitsysteme (Prof. Knoll)" }, "15432": { "code": "TUINI07", "name": "Informatik 7 - Lehrstuhl f\u00fcr Theoretische Informatik (Prof. Esparza)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 7 - Lehrstuhl f\u00fcr Theoretische Informatik (Prof. Esparza)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Theoretische Informatik (Prof. Esparza)" }, "15433": { "code": "TUINI08", "name": "Informatik 8 - Lehrstuhl f\u00fcr Netzarchitekturen und Netzdienste (Prof. Carle)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 8 - Lehrstuhl f\u00fcr Netzarchitekturen und Netzdienste (Prof. Carle)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Netzarchitekturen und Netzdienste (Prof. Carle)" }, "15434": { "code": "TUINI09", "name": "Informatik 9 - Lehrstuhl f\u00fcr Computer Vision and Artificial Intelligence (Prof. Cremers)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 9 - Lehrstuhl f\u00fcr Computer Vision and Artificial Intelligence (Prof. Cremers)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computer Vision and Artificial Intelligence (Prof. Cremers)" }, "15435": { "code": "TUINI10", "name": "Informatik 10 - Lehrstuhl f\u00fcr Rechnerarchitektur & Parallele Systeme (Prof. Schulz)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 10 - Lehrstuhl f\u00fcr Rechnerarchitektur & Parallele Systeme (Prof. Schulz)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Rechnerarchitektur & Parallele Systeme (Prof. Schulz)" }, "15436": { "code": "TUINI11", "name": "Informatik 11 - Lehrstuhl f\u00fcr Angewandte Informatik / Kooperative Systeme (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 11 - Lehrstuhl f\u00fcr Angewandte Informatik / Kooperative Systeme (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Angewandte Informatik / Kooperative Systeme (N.N.)" }, "15437": { "code": "TUINI12", "name": "Informatik 12 - Lehrstuhl f\u00fcr Bioinformatik (Prof. Rost)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 12 - Lehrstuhl f\u00fcr Bioinformatik (Prof. Rost)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Bioinformatik (Prof. Rost)" }, "15438": { "code": "TUINI13", "name": "Informatik 13 - Lehrstuhl f\u00fcr Decentralized Information Systems and Data Management (Prof. Leis)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 13 - Lehrstuhl f\u00fcr Decentralized Information Systems and Data Management (Prof. Leis)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Decentralized Information Systems and Data Management (Prof. Leis)" }, "15439": { "code": "TUINI14", "name": "Informatik 14 - Lehrstuhl f\u00fcr Effiziente Algorithmen (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 14 - Lehrstuhl f\u00fcr Effiziente Algorithmen (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Effiziente Algorithmen (N.N.)" }, "15440": { "code": "TUINI15", "name": "Informatik 15 - Lehrstuhl f\u00fcr Grafik und Visualisierung (Prof. Westermann)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 15 - Lehrstuhl f\u00fcr Grafik und Visualisierung (Prof. Westermann)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Grafik und Visualisierung (Prof. Westermann)" }, "15441": { "code": "TUINI16", "name": "Informatik 16 - Lehrstuhl f\u00fcr Informatikanwendungen in der Medizin (Prof. Navab)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 16 - Lehrstuhl f\u00fcr Informatikanwendungen in der Medizin (Prof. Navab)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatikanwendungen in der Medizin (Prof. Navab)" }, "15442": { "code": "TUINI17", "name": "Informatik 17 - Lehrstuhl f\u00fcr Wirtschaftsinformatik und Gesch\u00e4ftsprozessmanagement (Prof. Rinderle-Ma)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 17 - Lehrstuhl f\u00fcr Wirtschaftsinformatik und Gesch\u00e4ftsprozessmanagement (Prof. Rinderle-Ma)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Wirtschaftsinformatik und Gesch\u00e4ftsprozessmanagement (Prof. Rinderle-Ma)" }, "15443": { "code": "TUINI18", "name": "Informatik 18 - Lehrstuhl f\u00fcr Decision Sciences & Systems (Prof. Bichler)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 18 - Lehrstuhl f\u00fcr Decision Sciences & Systems (Prof. Bichler)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Decision Sciences & Systems (Prof. Bichler)" }, "15444": { "code": "TUINI19", "name": "Informatik 19 - Lehrstuhl f\u00fcr Software Engineering for Business Information Systems (Prof. Matthes)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 19 - Lehrstuhl f\u00fcr Software Engineering for Business Information Systems (Prof. Matthes)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering for Business Information Systems (Prof. Matthes)" }, "15453": { "code": "TUS4OTD", @@ -2317,22 +2317,22 @@ "24633": { "code": "TUINF01", "name": "Informatik 13 - Professur f\u00fcr Vernetzte Rechensysteme - (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 13 - Professur f\u00fcr Vernetzte Rechensysteme - (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Vernetzte Rechensysteme - (N.N.)" }, "24642": { "code": "TUINF02", "name": "Informatik 11 - Professur f\u00fcr Programmierung und Anwendung verteilter Systeme - (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 11 - Professur f\u00fcr Programmierung und Anwendung verteilter Systeme - (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Programmierung und Anwendung verteilter Systeme - (N.N.)" }, "24648": { "code": "TUINF03", "name": "Informatik 7 - Professur f\u00fcr Formale Methoden der Softwarezuverl\u00e4ssigkeit (Prof. Ayikudi Ramachandrakumar komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 7 - Professur f\u00fcr Formale Methoden der Softwarezuverl\u00e4ssigkeit (Prof. Ayikudi Ramachandrakumar komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Formale Methoden der Softwarezuverl\u00e4ssigkeit (Prof. Ayikudi Ramachandrakumar komm.)" }, "24654": { "code": "TUINF04", "name": "Informatik 10 - Professur f\u00fcr Architektur paralleler und verteilter Systeme - (Prof. Gerndt)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 10 - Professur f\u00fcr Architektur paralleler und verteilter Systeme - (Prof. Gerndt)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Architektur paralleler und verteilter Systeme - (Prof. Gerndt)" }, "24659": { "code": "TUEDS10", @@ -2342,22 +2342,22 @@ "24661": { "code": "TUINF12", "name": "Informatik 16 - Professur f\u00fcr Erweiterte Realit\u00e4t - (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 16 - Professur f\u00fcr Erweiterte Realit\u00e4t - (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Erweiterte Realit\u00e4t - (N.N.)" }, "24668": { "code": "TUINF05", "name": "Informatik 25 - Lehrstuhl f\u00fcr Data Science and Engineering (Prof. Neumann)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 25 - Lehrstuhl f\u00fcr Data Science and Engineering (Prof. Neumann)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Science and Engineering (Prof. Neumann)" }, "24669": { "code": "TUINF07", "name": "Informatik 29 - Lehrstuhl f\u00fcr Computational Molecular Medicine (Prof. Gagneur)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 29 - Lehrstuhl f\u00fcr Computational Molecular Medicine (Prof. Gagneur)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computational Molecular Medicine (Prof. Gagneur)" }, "24670": { "code": "TUINI21", "name": "Informatik 21 - Lehrstuhl f\u00fcr Logik und Verifikation (Prof. Bruse komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 21 - Lehrstuhl f\u00fcr Logik und Verifikation (Prof. Bruse komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Logik und Verifikation (Prof. Bruse komm.)" }, "24671": { "code": "TUINF14", @@ -2367,17 +2367,17 @@ "24672": { "code": "TUINF10", "name": "Informatik 14 - Professur f\u00fcr Theoretische Informatik - (Prof. R\u00e4cke)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 14 - Professur f\u00fcr Theoretische Informatik - (Prof. R\u00e4cke)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Theoretische Informatik - (Prof. R\u00e4cke)" }, "24673": { "code": "TUINF15", "name": "Informatik 6 - Professur f\u00fcr Cyber Physical Systems (Prof. Althoff)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 6 - Professur f\u00fcr Cyber Physical Systems (Prof. Althoff)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Cyber Physical Systems (Prof. Althoff)" }, "24674": { "code": "TUINF11", "name": "Informatik 6 - Professur f\u00fcr Informatik mit Schwerpunkt Telerobotik und Sensordatenfusion (Prof. Burschka)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 6 - Professur f\u00fcr Informatik mit Schwerpunkt Telerobotik und Sensordatenfusion (Prof. Burschka)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik mit Schwerpunkt Telerobotik und Sensordatenfusion (Prof. Burschka)" }, "24777": { "code": "TUWZA1A", @@ -2406,13 +2406,13 @@ }, "25918": { "code": "TUZV141", - "name": "Baumanagement Garching", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Baumanagement Garching" + "name": "Baumanagement Garching (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Baumanagement Garching (ZA 4)" }, "25925": { "code": "TUZV142", - "name": "Geb\u00e4udemanagement Garching", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching" + "name": "Geb\u00e4udemanagement Garching (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)" }, "25930": { "code": "TUZVR15", @@ -2481,48 +2481,48 @@ }, "26050": { "code": "TUZVR40", - "name": "Ressourcenplanung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung" + "name": "Ressourcenplanung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)" }, "26055": { "code": "TUZVR42", - "name": "Baumanagement M\u00fcnchen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Baumanagement M\u00fcnchen" + "name": "Baumanagement M\u00fcnchen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Baumanagement M\u00fcnchen (ZA 4)" }, "26059": { "code": "TUZVR43", - "name": "Baumanagement", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Baumanagement M\u00fcnchen/Baumanagement" + "name": "Baumanagement (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Baumanagement M\u00fcnchen (ZA 4)/Baumanagement (ZA 4)" }, "26064": { "code": "TUZVR44", - "name": "Geb\u00e4udemanagement M\u00fcnchen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen" + "name": "Geb\u00e4udemanagement M\u00fcnchen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)" }, "26069": { "code": "TUZV440", - "name": "Energiemonitoring, Contracting", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Energie- und Medienversorgung/Energiemonitoring, Contracting" + "name": "Energiemonitoring, Contracting (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Energie- und Medienversorgung (ZA 4)/Energiemonitoring, Contracting (ZA 4)" }, "26073": { "code": "TUZV441", - "name": "Anlagentechnik M\u00fcnchen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Anlagentechnik M\u00fcnchen" + "name": "Anlagentechnik M\u00fcnchen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Anlagentechnik M\u00fcnchen (ZA 4)" }, "26077": { "code": "TUZV442", - "name": "Elektrotechnik M\u00fcnchen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Elektrotechnik M\u00fcnchen" + "name": "Elektrotechnik M\u00fcnchen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Elektrotechnik M\u00fcnchen (ZA 4)" }, "26081": { "code": "TUZV443", - "name": "Infrastruktur M\u00fcnchen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen" + "name": "Infrastruktur M\u00fcnchen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)" }, "26089": { "code": "TUZV445", - "name": "Fl\u00e4chen- und Raummanagement", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Vergaberecht und Fl\u00e4chenmanagement/Fl\u00e4chen- und Raummanagement" + "name": "Fl\u00e4chen- und Raummanagement (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Vergaberecht und Fl\u00e4chenmanagement (ZA 4)/Fl\u00e4chen- und Raummanagement (ZA 4)" }, "26122": { "code": "TUZVR71", @@ -2546,38 +2546,38 @@ }, "26175": { "code": "TUZVR84", - "name": "Geb\u00e4udemanagement Weihenstephan", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan" + "name": "Geb\u00e4udemanagement Weihenstephan (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)" }, "26217": { "code": "TUZV841", - "name": "Anlagentechnik Weihenstephan", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Anlagentechnik Weihenstephan" + "name": "Anlagentechnik Weihenstephan (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Anlagentechnik Weihenstephan (ZA 4)" }, "26221": { "code": "TUZV842", - "name": "Elektrotechnik Weihenstephan", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Elektrotechnik Weihenstephan" + "name": "Elektrotechnik Weihenstephan (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Elektrotechnik Weihenstephan (ZA 4)" }, "26225": { "code": "TUZV843", - "name": "Umwelttechnik und Entsorgung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Entsorgung und Umwelt/Umwelttechnik und Entsorgung" + "name": "Umwelttechnik und Entsorgung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Entsorgung und Umwelt (ZA 4)/Umwelttechnik und Entsorgung (ZA 4)" }, "26229": { "code": "TUZV844", - "name": "Infrastruktur Weihenstephan", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan" + "name": "Infrastruktur Weihenstephan (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)" }, "26233": { "code": "TUZV845", - "name": "Betriebshof, Hausverwaltung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Betriebshof, Hausverwaltung" + "name": "Betriebshof, Hausverwaltung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Betriebshof, Hausverwaltung (ZA 4)" }, "26237": { "code": "TUZV846", - "name": "Dienstbetrieb", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Dienstbetrieb" + "name": "Dienstbetrieb (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Dienstbetrieb (ZA 4)" }, "26519": { "code": "TUMEGY0", @@ -2857,7 +2857,7 @@ "30697": { "code": "TUINI20", "name": "Informatik 20 - Lehrstuhl f\u00fcr Sicherheit in der Informatik (Prof. Eckert)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 20 - Lehrstuhl f\u00fcr Sicherheit in der Informatik (Prof. Eckert)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Sicherheit in der Informatik (Prof. Eckert)" }, "31224": { "code": "TUCSVRW", @@ -2961,113 +2961,113 @@ }, "37555": { "code": "TUZV44A", - "name": "Technisches B\u00fcro Maschinenwesen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Anlagentechnik M\u00fcnchen/Technisches B\u00fcro Maschinenwesen" + "name": "Technisches B\u00fcro Maschinenwesen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Anlagentechnik M\u00fcnchen (ZA 4)/Technisches B\u00fcro Maschinenwesen (ZA 4)" }, "37569": { "code": "TUZV44B", - "name": "Werkstatt Regel- und F\u00f6rdertechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Elektrotechnik M\u00fcnchen/Werkstatt Regel- und F\u00f6rdertechnik" + "name": "Werkstatt Regel- und F\u00f6rdertechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Elektrotechnik M\u00fcnchen (ZA 4)/Werkstatt Regel- und F\u00f6rdertechnik (ZA 4)" }, "37584": { "code": "TUZV44C", - "name": "Werkstatt Heizung - Klima - Sanit\u00e4r", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Anlagentechnik M\u00fcnchen/Werkstatt Heizung - Klima - Sanit\u00e4r" + "name": "Werkstatt Heizung - Klima - Sanit\u00e4r (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Anlagentechnik M\u00fcnchen (ZA 4)/Werkstatt Heizung - Klima - Sanit\u00e4r (ZA 4)" }, "37585": { "code": "TUZV44D", - "name": "Werkstatt Schreinerei und Schlosserei", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Anlagentechnik M\u00fcnchen/Werkstatt Schreinerei und Schlosserei" + "name": "Werkstatt Schreinerei und Schlosserei (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Anlagentechnik M\u00fcnchen (ZA 4)/Werkstatt Schreinerei und Schlosserei (ZA 4)" }, "37586": { "code": "TUZV44E", - "name": "Werkstatt Pasing Heizungs- und Klimatechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Anlagentechnik M\u00fcnchen/Werkstatt Pasing Heizungs- und Klimatechnik" + "name": "Werkstatt Pasing Heizungs- und Klimatechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Anlagentechnik M\u00fcnchen (ZA 4)/Werkstatt Pasing Heizungs- und Klimatechnik (ZA 4)" }, "37622": { "code": "TUZV44G", - "name": "Technisches B\u00fcro Elektrotechnik, H\u00f6rsaaltechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Elektrotechnik M\u00fcnchen/Technisches B\u00fcro Elektrotechnik, H\u00f6rsaaltechnik" + "name": "Technisches B\u00fcro Elektrotechnik, H\u00f6rsaaltechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Elektrotechnik M\u00fcnchen (ZA 4)/Technisches B\u00fcro Elektrotechnik, H\u00f6rsaaltechnik (ZA 4)" }, "37623": { "code": "TUZV44H", - "name": "Technisches B\u00fcro Fernmelde-, BMA- und ELA-Technik einschl. Telefonabrechnung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Elektrotechnik M\u00fcnchen/Technisches B\u00fcro Fernmelde-, BMA- und ELA-Technik einschl. Telefonabrechnung" + "name": "Technisches B\u00fcro Fernmelde-, BMA- und ELA-Technik einschl. Telefonabrechnung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Elektrotechnik M\u00fcnchen (ZA 4)/Technisches B\u00fcro Fernmelde-, BMA- und ELA-Technik einschl. Telefonabrechnung (ZA 4)" }, "37668": { "code": "TUZV44J", - "name": "Werkstatt Elektrotechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Elektrotechnik M\u00fcnchen/Werkstatt Elektrotechnik" + "name": "Werkstatt Elektrotechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Elektrotechnik M\u00fcnchen (ZA 4)/Werkstatt Elektrotechnik (ZA 4)" }, "37796": { "code": "TUZV44K", - "name": "Werkstatt H\u00f6rsaaltechnik, Medientechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Elektrotechnik M\u00fcnchen/Werkstatt H\u00f6rsaaltechnik, Medientechnik" + "name": "Werkstatt H\u00f6rsaaltechnik, Medientechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Elektrotechnik M\u00fcnchen (ZA 4)/Werkstatt H\u00f6rsaaltechnik, Medientechnik (ZA 4)" }, "37801": { "code": "TUZV44L", - "name": "Werkstatt Fernmelde-, BMA- und ELA-Technik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Elektrotechnik M\u00fcnchen/Werkstatt Fernmelde-, BMA- und ELA-Technik" + "name": "Werkstatt Fernmelde-, BMA- und ELA-Technik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Elektrotechnik M\u00fcnchen (ZA 4)/Werkstatt Fernmelde-, BMA- und ELA-Technik (ZA 4)" }, "37984": { "code": "TUZV44M", - "name": "Poststelle, Kurierdienst", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Poststelle, Kurierdienst" + "name": "Poststelle, Kurierdienst (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Poststelle, Kurierdienst (ZA 4)" }, "37985": { "code": "TUZV44N", - "name": "Posteinlauf Verwaltung, Registratur", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Posteinlauf Verwaltung, Registratur" + "name": "Posteinlauf Verwaltung, Registratur (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Posteinlauf Verwaltung, Registratur (ZA 4)" }, "37986": { "code": "TUZV44O", - "name": "Dienstfahrzeuge", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Dienstfahrzeuge" + "name": "Dienstfahrzeuge (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Dienstfahrzeuge (ZA 4)" }, "37988": { "code": "TUZV44Q", - "name": "Bewachung, Vermittlung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Bewachung, Vermittlung" + "name": "Bewachung, Vermittlung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Bewachung, Vermittlung (ZA 4)" }, "37989": { "code": "TUZV44R", - "name": "Reinigung, Pflege der Au\u00dfenanlagen, Ausschreibungen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Reinigung, Pflege der Au\u00dfenanlagen, Ausschreibungen" + "name": "Reinigung, Pflege der Au\u00dfenanlagen, Ausschreibungen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Reinigung, Pflege der Au\u00dfenanlagen, Ausschreibungen (ZA 4)" }, "37990": { "code": "TUZV44S", - "name": "Schl\u00fcsselverwaltung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Schl\u00fcsselverwaltung" + "name": "Schl\u00fcsselverwaltung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Schl\u00fcsselverwaltung (ZA 4)" }, "37992": { "code": "TUZV44U", - "name": "Hausmeisterdienste", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Hausmeisterdienste" + "name": "Hausmeisterdienste (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Hausmeisterdienste (ZA 4)" }, "38003": { "code": "TUZV44V", - "name": "Hausmeisterdienste am TUM CiO", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Campus im Olympiapark/Hausmeisterdienste am TUM CiO" + "name": "Hausmeisterdienste am TUM CiO (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Campus im Olympiapark (ZA 4)/Hausmeisterdienste am TUM CiO (ZA 4)" }, "38004": { "code": "TUZV44W", - "name": "Werkstatt Elektrotechnik am TUM CiO", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Campus im Olympiapark/Werkstatt Elektrotechnik am TUM CiO" + "name": "Werkstatt Elektrotechnik am TUM CiO (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Campus im Olympiapark (ZA 4)/Werkstatt Elektrotechnik am TUM CiO (ZA 4)" }, "38006": { "code": "TUZV44Y", - "name": "Wassersportplatz Starnberg", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Wassersportplatz Starnberg" + "name": "Wassersportplatz Starnberg (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Wassersportplatz Starnberg (ZA 4)" }, "38010": { "code": "TUZV45A", - "name": "H\u00f6rsaalvergabe", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Vergaberecht und Fl\u00e4chenmanagement/Fl\u00e4chen- und Raummanagement/H\u00f6rsaalvergabe" + "name": "H\u00f6rsaalvergabe (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Vergaberecht und Fl\u00e4chenmanagement (ZA 4)/Fl\u00e4chen- und Raummanagement (ZA 4)/H\u00f6rsaalvergabe (ZA 4)" }, "38011": { "code": "TUZV45B", - "name": "Externe An- und Vermietung, Veranstaltungen einschl. TUM CiO", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Vergaberecht und Fl\u00e4chenmanagement/Fl\u00e4chen- und Raummanagement/Externe An- und Vermietung, Veranstaltungen einschl. TUM CiO" + "name": "Externe An- und Vermietung, Veranstaltungen einschl. TUM CiO (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Vergaberecht und Fl\u00e4chenmanagement (ZA 4)/Fl\u00e4chen- und Raummanagement (ZA 4)/Externe An- und Vermietung, Veranstaltungen einschl. TUM CiO (ZA 4)" }, "38136": { "code": "TUWIB17", @@ -3076,73 +3076,73 @@ }, "38369": { "code": "TUZV847", - "name": "Bauwerkst\u00e4tte", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Anlagentechnik Weihenstephan/Bauwerkst\u00e4tte" + "name": "Bauwerkst\u00e4tte (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Anlagentechnik Weihenstephan (ZA 4)/Bauwerkst\u00e4tte (ZA 4)" }, "38540": { "code": "TUZV14C", - "name": "Heizkraftwerke mit Leitwarte", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Energie- und Medienversorgung/Heizkraftwerke mit Leitwarte" + "name": "Heizkraftwerke mit Leitwarte (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Energie- und Medienversorgung (ZA 4)/Heizkraftwerke mit Leitwarte (ZA 4)" }, "38541": { "code": "TUZV14D", - "name": "Anlagentechnik Garching", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Anlagentechnik Garching" + "name": "Anlagentechnik Garching (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Anlagentechnik Garching (ZA 4)" }, "38542": { "code": "TUZV14E", - "name": "Elektrotechnik Garching", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Elektrotechnik Garching" + "name": "Elektrotechnik Garching (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Elektrotechnik Garching (ZA 4)" }, "38543": { "code": "TUZV14F", - "name": "Umwelt / Abfallentsorgung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Entsorgung und Umwelt/Umwelt / Abfallentsorgung" + "name": "Umwelt / Abfallentsorgung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Entsorgung und Umwelt (ZA 4)/Umwelt / Abfallentsorgung (ZA 4)" }, "38577": { "code": "TUZV14G", - "name": "Infrastrukturelles FM Poststelle", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Infrastruktur Garching/Infrastrukturelles FM Poststelle" + "name": "Infrastrukturelles FM Poststelle (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Infrastruktur Garching (ZA 4)/Infrastrukturelles FM Poststelle (ZA 4)" }, "38579": { "code": "TUZV14I", - "name": "Technisches B\u00fcro Maschinentechnische Anlagen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Anlagentechnik Garching/Technisches B\u00fcro Maschinentechnische Anlagen" + "name": "Technisches B\u00fcro Maschinentechnische Anlagen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Anlagentechnik Garching (ZA 4)/Technisches B\u00fcro Maschinentechnische Anlagen (ZA 4)" }, "38580": { "code": "TUZV14J", - "name": "Werkstatt Heizungs- und Klimatechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Anlagentechnik Garching/Werkstatt Heizungs- und Klimatechnik" + "name": "Werkstatt Heizungs- und Klimatechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Anlagentechnik Garching (ZA 4)/Werkstatt Heizungs- und Klimatechnik (ZA 4)" }, "38581": { "code": "TUZV14K", - "name": "Werkstatt Sanit\u00e4r- und K\u00e4ltetechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Anlagentechnik Garching/Werkstatt Sanit\u00e4r- und K\u00e4ltetechnik" + "name": "Werkstatt Sanit\u00e4r- und K\u00e4ltetechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Anlagentechnik Garching (ZA 4)/Werkstatt Sanit\u00e4r- und K\u00e4ltetechnik (ZA 4)" }, "38582": { "code": "TUZV14L", - "name": "Werkstatt Schlosser/Schreiner/Hausmeister", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Anlagentechnik Garching/Werkstatt Schlosser/Schreiner/Hausmeister" + "name": "Werkstatt Schlosser/Schreiner/Hausmeister (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Anlagentechnik Garching (ZA 4)/Werkstatt Schlosser/Schreiner/Hausmeister (ZA 4)" }, "38596": { "code": "TUZV14N", - "name": "Technisches B\u00fcro, H\u00f6rsaaltechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Elektrotechnik Garching/Technisches B\u00fcro, H\u00f6rsaaltechnik" + "name": "Technisches B\u00fcro, H\u00f6rsaaltechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Elektrotechnik Garching (ZA 4)/Technisches B\u00fcro, H\u00f6rsaaltechnik (ZA 4)" }, "38597": { "code": "TUZV14O", - "name": "Werkstatt Elektrotechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Elektrotechnik Garching/Werkstatt Elektrotechnik" + "name": "Werkstatt Elektrotechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Elektrotechnik Garching (ZA 4)/Werkstatt Elektrotechnik (ZA 4)" }, "38598": { "code": "TUZV14P", - "name": "Werkstatt Fernmeldetechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Elektrotechnik Garching/Werkstatt Fernmeldetechnik" + "name": "Werkstatt Fernmeldetechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Elektrotechnik Garching (ZA 4)/Werkstatt Fernmeldetechnik (ZA 4)" }, "38599": { "code": "TUZV14Q", - "name": "Geb\u00e4udeleittechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Elektrotechnik Garching/Geb\u00e4udeleittechnik" + "name": "Geb\u00e4udeleittechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Elektrotechnik Garching (ZA 4)/Geb\u00e4udeleittechnik (ZA 4)" }, "39071": { "code": "TUWZM1A", @@ -3246,8 +3246,8 @@ }, "41267": { "code": "TUGSTGS", - "name": "Management Office", - "path": "TUM/TUM Graduate School/Management Office" + "name": "Management Office (GS)", + "path": "TUM/TUM Graduate School/Management Office (GS)" }, "41681": { "code": "TUZVR7W", @@ -3487,7 +3487,7 @@ "43448": { "code": "TUINF17", "name": "Informatik 18 - Professur f\u00fcr Algorithmische Spieltheorie (Prof. Brandt)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 18 - Professur f\u00fcr Algorithmische Spieltheorie (Prof. Brandt)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Algorithmische Spieltheorie (Prof. Brandt)" }, "43449": { "code": "TUWIB18", @@ -3627,7 +3627,7 @@ "44006": { "code": "TUINF16", "name": "Informatik 5 - Professur f\u00fcr Hardware-nahe Algorithmik und Software f\u00fcr H\u00f6chstleistungsrechnen (Prof. Bader)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 5 - Professur f\u00fcr Hardware-nahe Algorithmik und Software f\u00fcr H\u00f6chstleistungsrechnen (Prof. Bader)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Hardware-nahe Algorithmik und Software f\u00fcr H\u00f6chstleistungsrechnen (Prof. Bader)" }, "44008": { "code": "TUINFRW", @@ -3756,8 +3756,8 @@ }, "44344": { "code": "TUZV44F", - "name": "Umz\u00fcge, Beschilderungen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Geb\u00e4udemanagement M\u00fcnchen/Infrastruktur M\u00fcnchen/Umz\u00fcge, Beschilderungen" + "name": "Umz\u00fcge, Beschilderungen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Geb\u00e4udemanagement M\u00fcnchen (ZA 4)/Infrastruktur M\u00fcnchen (ZA 4)/Umz\u00fcge, Beschilderungen (ZA 4)" }, "44364": { "code": "TUCHRC3", @@ -4016,8 +4016,8 @@ }, "45070": { "code": "TUZV848", - "name": "Werkfeuerwehr Weihenstephan", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Werkfeuerwehr Weihenstephan" + "name": "Werkfeuerwehr Weihenstephan (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Werkfeuerwehr Weihenstephan (ZA 4)" }, "45071": { "code": "TUMWPTM", @@ -4047,7 +4047,7 @@ "45151": { "code": "TUINI22", "name": "Informatik 4 - Lehrstuhl f\u00fcr Software & Systems Engineering (Prof. Pretschner)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 4 - Lehrstuhl f\u00fcr Software & Systems Engineering (Prof. Pretschner)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software & Systems Engineering (Prof. Pretschner)" }, "45170": { "code": "TUWIB26", @@ -4306,8 +4306,8 @@ }, "45971": { "code": "TUZVR87", - "name": "Baumanagement Weihenstephan", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Baumanagement Weihenstephan" + "name": "Baumanagement Weihenstephan (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Baumanagement Weihenstephan (ZA 4)" }, "45991": { "code": "TUGSCRE", @@ -4332,7 +4332,7 @@ "46091": { "code": "TUINI23", "name": "Informatik 23 - Lehrstuhl f\u00fcr Sensorbasierte Robotersysteme und intelligente Assistenzsysteme (Prof. Albu-Sch\u00e4ffer)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 23 - Lehrstuhl f\u00fcr Sensorbasierte Robotersysteme und intelligente Assistenzsysteme (Prof. Albu-Sch\u00e4ffer)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Sensorbasierte Robotersysteme und intelligente Assistenzsysteme (Prof. Albu-Sch\u00e4ffer)" }, "46135": { "code": "TUZEIAK", @@ -4397,12 +4397,12 @@ "46356": { "code": "TUINF08", "name": "Informatik 15 - Professur f\u00fcr Physik-basierte Simulation (Prof. Thuerey)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 15 - Professur f\u00fcr Physik-basierte Simulation (Prof. Thuerey)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Physik-basierte Simulation (Prof. Thuerey)" }, "46357": { "code": "TUINL14", "name": "Informatik 14 - Lehrstuhl f\u00fcr Algorithmen und Komplexit\u00e4t (Prof. Albers)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 14 - Lehrstuhl f\u00fcr Algorithmen und Komplexit\u00e4t (Prof. Albers)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Algorithmen und Komplexit\u00e4t (Prof. Albers)" }, "46415": { "code": "TUEISNE", @@ -4456,8 +4456,8 @@ }, "46757": { "code": "TUZV14R", - "name": "Werkstatt MSR-Technik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Anlagentechnik Garching/Werkstatt MSR-Technik" + "name": "Werkstatt MSR-Technik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Anlagentechnik Garching (ZA 4)/Werkstatt MSR-Technik (ZA 4)" }, "46777": { "code": "TUWZI5A", @@ -4607,7 +4607,7 @@ "47337": { "code": "TUINI24", "name": "Informatik 11 - Lehrstuhl f\u00fcr Connected Mobility (Prof. Ott)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 11 - Lehrstuhl f\u00fcr Connected Mobility (Prof. Ott)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Connected Mobility (Prof. Ott)" }, "47357": { "code": "TUCHOCG", @@ -4797,7 +4797,7 @@ "48037": { "code": "TUINF18", "name": "Informatik 26 - Lehrstuhl f\u00fcr Data Analytics and Machine Learning (Prof. G\u00fcnnemann)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 26 - Lehrstuhl f\u00fcr Data Analytics and Machine Learning (Prof. G\u00fcnnemann)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Analytics and Machine Learning (Prof. G\u00fcnnemann)" }, "48038": { "code": "TUEIESI", @@ -4902,7 +4902,7 @@ "48238": { "code": "TUINICT", "name": "Informatik 24 - Professur f\u00fcr Cyber Trust (Prof. Grossklags)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 24 - Professur f\u00fcr Cyber Trust (Prof. Grossklags)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Cyber Trust (Prof. Grossklags)" }, "48257": { "code": "TUARL32", @@ -4912,7 +4912,7 @@ "48258": { "code": "TUINF19", "name": "Informatik 28 - Lehrstuhl f\u00fcr Visual Computing (Prof. Nie\u00dfner)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 28 - Lehrstuhl f\u00fcr Visual Computing (Prof. Nie\u00dfner)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Visual Computing (Prof. Nie\u00dfner)" }, "48277": { "code": "TUMEVI4", @@ -4921,128 +4921,128 @@ }, "48297": { "code": "TUZVRBE", - "name": "Bauliche Entwicklungsplanung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Baumanagement M\u00fcnchen/Bauliche Entwicklungsplanung" + "name": "Bauliche Entwicklungsplanung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Baumanagement M\u00fcnchen (ZA 4)/Bauliche Entwicklungsplanung (ZA 4)" }, "48298": { "code": "TUZV453", - "name": "Infrastruktur Garching", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Infrastruktur Garching" + "name": "Infrastruktur Garching (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Infrastruktur Garching (ZA 4)" }, "48302": { "code": "TUZV45D", - "name": "Zeiterfassung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Infrastruktur Garching/Zeiterfassung" + "name": "Zeiterfassung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Infrastruktur Garching (ZA 4)/Zeiterfassung (ZA 4)" }, "48303": { "code": "TUZV45E", - "name": "Kaufm\u00e4nnisches FM", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Infrastruktur Garching/Kaufm\u00e4nnisches FM" + "name": "Kaufm\u00e4nnisches FM (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Infrastruktur Garching (ZA 4)/Kaufm\u00e4nnisches FM (ZA 4)" }, "48304": { "code": "TUZV45F", - "name": "Technisches FM", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Infrastruktur Garching/Technisches FM" + "name": "Technisches FM (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Infrastruktur Garching (ZA 4)/Technisches FM (ZA 4)" }, "48305": { "code": "TUZV45G", - "name": "Infrastrukturelles FM", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Infrastruktur Garching/Infrastrukturelles FM" + "name": "Infrastrukturelles FM (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Infrastruktur Garching (ZA 4)/Infrastrukturelles FM (ZA 4)" }, "48306": { "code": "TUZV45H", - "name": "Infrastrukturelles FM Geb\u00e4udereinigung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching/Geb\u00e4udemanagement Garching/Infrastruktur Garching/Infrastrukturelles FM Geb\u00e4udereinigung" + "name": "Infrastrukturelles FM Geb\u00e4udereinigung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)/Geb\u00e4udemanagement Garching (ZA 4)/Infrastruktur Garching (ZA 4)/Infrastrukturelles FM Geb\u00e4udereinigung (ZA 4)" }, "48307": { "code": "TUZV46A", - "name": "Technisches B\u00fcro Maschinentechnische Anlagen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Anlagentechnik Weihenstephan/Technisches B\u00fcro Maschinentechnische Anlagen" + "name": "Technisches B\u00fcro Maschinentechnische Anlagen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Anlagentechnik Weihenstephan (ZA 4)/Technisches B\u00fcro Maschinentechnische Anlagen (ZA 4)" }, "48308": { "code": "TUZV46B", - "name": "Werkstatt Heizung und L\u00fcftung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Anlagentechnik Weihenstephan/Werkstatt Heizung und L\u00fcftung" + "name": "Werkstatt Heizung und L\u00fcftung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Anlagentechnik Weihenstephan (ZA 4)/Werkstatt Heizung und L\u00fcftung (ZA 4)" }, "48309": { "code": "TUZV46C", - "name": "Werkstatt Sanit\u00e4r", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Anlagentechnik Weihenstephan/Werkstatt Sanit\u00e4r" + "name": "Werkstatt Sanit\u00e4r (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Anlagentechnik Weihenstephan (ZA 4)/Werkstatt Sanit\u00e4r (ZA 4)" }, "48310": { "code": "TUZV46D", - "name": "Werkstatt K\u00e4ltetechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Anlagentechnik Weihenstephan/Werkstatt K\u00e4ltetechnik" + "name": "Werkstatt K\u00e4ltetechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Anlagentechnik Weihenstephan (ZA 4)/Werkstatt K\u00e4ltetechnik (ZA 4)" }, "48311": { "code": "TUZV46E", - "name": "Technisches B\u00fcro Elektrotechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Elektrotechnik Weihenstephan/Technisches B\u00fcro Elektrotechnik" + "name": "Technisches B\u00fcro Elektrotechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Elektrotechnik Weihenstephan (ZA 4)/Technisches B\u00fcro Elektrotechnik (ZA 4)" }, "48312": { "code": "TUZV46F", - "name": "Werkstatt Starkstromtechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Elektrotechnik Weihenstephan/Werkstatt Starkstromtechnik" + "name": "Werkstatt Starkstromtechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Elektrotechnik Weihenstephan (ZA 4)/Werkstatt Starkstromtechnik (ZA 4)" }, "48313": { "code": "TUZV46G", - "name": "Werkstatt Mess- und Regelungstechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Elektrotechnik Weihenstephan/Werkstatt Mess- und Regelungstechnik" + "name": "Werkstatt Mess- und Regelungstechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Elektrotechnik Weihenstephan (ZA 4)/Werkstatt Mess- und Regelungstechnik (ZA 4)" }, "48314": { "code": "TUZV46H", - "name": "Telefonzentrale", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Elektrotechnik Weihenstephan/Telefonzentrale" + "name": "Telefonzentrale (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Elektrotechnik Weihenstephan (ZA 4)/Telefonzentrale (ZA 4)" }, "48315": { "code": "TUZV46I", - "name": "Schl\u00fcsselverwaltung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Infrastrukturelles Geb\u00e4udemanagement/Schl\u00fcsselverwaltung" + "name": "Schl\u00fcsselverwaltung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Infrastrukturelles Geb\u00e4udemanagement (ZA 4)/Schl\u00fcsselverwaltung (ZA 4)" }, "48316": { "code": "TUZV46J", - "name": "Reinigung und Bewachung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Infrastrukturelles Geb\u00e4udemanagement/Reinigung und Bewachung" + "name": "Reinigung und Bewachung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Infrastrukturelles Geb\u00e4udemanagement (ZA 4)/Reinigung und Bewachung (ZA 4)" }, "48317": { "code": "TUZV46K", - "name": "Raumbestandsverwaltung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Vergaberecht und Fl\u00e4chenmanagement/Raumbestandsverwaltung" + "name": "Raumbestandsverwaltung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Vergaberecht und Fl\u00e4chenmanagement (ZA 4)/Raumbestandsverwaltung (ZA 4)" }, "48318": { "code": "TUZV46L", - "name": "Betriebshof, Hausverwaltung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Betriebshof, Hausverwaltung/Betriebshof, Hausverwaltung" + "name": "Betriebshof, Hausverwaltung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Betriebshof, Hausverwaltung (ZA 4)/Betriebshof, Hausverwaltung (ZA 4)" }, "48319": { "code": "TUZV46M", - "name": "Dienstfahrzeuge und Drucklufttechnik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Anlagentechnik Weihenstephan/Dienstfahrzeuge und Drucklufttechnik" + "name": "Dienstfahrzeuge und Drucklufttechnik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Anlagentechnik Weihenstephan (ZA 4)/Dienstfahrzeuge und Drucklufttechnik (ZA 4)" }, "48320": { "code": "TUZV46N", - "name": "Poststelle", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Infrastrukturelles Geb\u00e4udemanagement/Poststelle" + "name": "Poststelle (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Infrastrukturelles Geb\u00e4udemanagement (ZA 4)/Poststelle (ZA 4)" }, "48321": { "code": "TUZV46O", - "name": "Registratur", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Infrastrukturelles Geb\u00e4udemanagement/Registratur" + "name": "Registratur (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Infrastrukturelles Geb\u00e4udemanagement (ZA 4)/Registratur (ZA 4)" }, "48322": { "code": "TUZV46P", - "name": "Archiv", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Infrastrukturelles Geb\u00e4udemanagement/Archiv" + "name": "Archiv (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Infrastrukturelles Geb\u00e4udemanagement (ZA 4)/Archiv (ZA 4)" }, "48323": { "code": "TUZV46Q", - "name": "H\u00f6rsaalvermietung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Dienstbetrieb/H\u00f6rsaalvermietung" + "name": "H\u00f6rsaalvermietung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Dienstbetrieb (ZA 4)/H\u00f6rsaalvermietung (ZA 4)" }, "48324": { "code": "TUZV40A", - "name": "Controlling und Reporting", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Controlling und Reporting" + "name": "Controlling und Reporting (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Controlling und Reporting (ZA 4)" }, "48337": { "code": "TUZV350", @@ -5081,8 +5081,8 @@ }, "48417": { "code": "TUZV454", - "name": "Abfallentsorgung/Umwelt", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Entsorgung und Umwelt/Abfallentsorgung/Umwelt" + "name": "Abfallentsorgung/Umwelt (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Entsorgung und Umwelt (ZA 4)/Abfallentsorgung/Umwelt (ZA 4)" }, "48437": { "code": "TUEIHCR", @@ -5176,8 +5176,8 @@ }, "48622": { "code": "TUZV14Z", - "name": "Versorgungsnetze", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Versorgungsnetze" + "name": "Versorgungsnetze (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Versorgungsnetze (ZA 4)" }, "48657": { "code": "TUMETBB", @@ -5282,7 +5282,7 @@ "48977": { "code": "TUINF20", "name": "Informatik 9 - Professur f\u00fcr Dynamic Vision and Learning (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 9 - Professur f\u00fcr Dynamic Vision and Learning (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Dynamic Vision and Learning (N.N.)" }, "49037": { "code": "TUZEIOA", @@ -5586,8 +5586,8 @@ }, "49618": { "code": "TUZVSEU", - "name": "Entsorgung und Umwelt", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Entsorgung und Umwelt" + "name": "Entsorgung und Umwelt (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Entsorgung und Umwelt (ZA 4)" }, "49637": { "code": "TUWZLPT", @@ -5612,7 +5612,7 @@ "49717": { "code": "TUINF21", "name": "Informatik 1 - Professur f\u00fcr Digital Health (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 1 - Professur f\u00fcr Digital Health (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Digital Health (N.N.)" }, "49737": { "code": "TUPRB03", @@ -5802,12 +5802,12 @@ "50238": { "code": "TUINF22", "name": "Informatik 5 - Professur f\u00fcr Quantum Computing (Prof. Mendl)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 5 - Professur f\u00fcr Quantum Computing (Prof. Mendl)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Quantum Computing (Prof. Mendl)" }, "50239": { "code": "TUINF23", "name": "Informatik 7 - Professur f\u00fcr Theoretical Foundations of Artificial Intelligence (Prof. Ghoshdastidar)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 7 - Professur f\u00fcr Theoretical Foundations of Artificial Intelligence (Prof. Ghoshdastidar)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Theoretical Foundations of Artificial Intelligence (Prof. Ghoshdastidar)" }, "50240": { "code": "TUWZA2B", @@ -5882,7 +5882,7 @@ "50478": { "code": "TUINF24", "name": "Informatik 3 - Professur f\u00fcr Database Systems (Prof. Giceva)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 3 - Professur f\u00fcr Database Systems (Prof. Giceva)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Database Systems (Prof. Giceva)" }, "50498": { "code": "TUMENW3", @@ -6037,12 +6037,12 @@ "51137": { "code": "TUINF31", "name": "Informatik 15 - Professur f\u00fcr 3D Artificial Intelligence (Prof. Dai)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 15 - Professur f\u00fcr 3D Artificial Intelligence (Prof. Dai)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/3D Artificial Intelligence (Prof. Dai)" }, "51157": { "code": "TUINI31", "name": "Informatik 31 - Lehrstuhl f\u00fcr Artificial Intelligence in Healthcare and Medicine (Prof. R\u00fcckert) (Joint Appointment der TUM School of Medicine and Health und TUM School of Computation, Information and Technology)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 31 - Lehrstuhl f\u00fcr Artificial Intelligence in Healthcare and Medicine (Prof. R\u00fcckert) (Joint Appointment der TUM School of Medicine and Health und TUM School of Computation, Information and Technology)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Artificial Intelligence in Healthcare and Medicine (Prof. R\u00fcckert) (Joint Appointment der TUM School of Medicine and Health und TUM School of Computation, Information and Technology)" }, "51177": { "code": "TUMEIS2", @@ -6177,7 +6177,7 @@ "51359": { "code": "TUINF26", "name": "Informatik 16 - Professur f\u00fcr Healthcare and Rehabilitation Robotics (Prof. Piazza)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 16 - Professur f\u00fcr Healthcare and Rehabilitation Robotics (Prof. Piazza)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Healthcare and Rehabilitation Robotics (Prof. Piazza)" }, "51378": { "code": "TUS2RGE", @@ -6207,7 +6207,7 @@ "51419": { "code": "TUINF27", "name": "Informatik 19 - Professur f\u00fcr Legal Tech (Prof. Grabmair)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 19 - Professur f\u00fcr Legal Tech (Prof. Grabmair)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Legal Tech (Prof. Grabmair)" }, "51457": { "code": "TUZEGNI", @@ -6222,7 +6222,7 @@ "51497": { "code": "TUINF28", "name": "Informatik 9 - Professur f\u00fcr Machine Learning for Robotics (Prof. Leutenegger)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 9 - Professur f\u00fcr Machine Learning for Robotics (Prof. Leutenegger)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Machine Learning for Robotics (Prof. Leutenegger)" }, "51517": { "code": "TUS4C2M", @@ -6532,7 +6532,7 @@ "51857": { "code": "TUINI32", "name": "Informatik 32 - Lehrstuhl f\u00fcr Computational Imaging and AI in Medicine (Prof. Schnabel)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 32 - Lehrstuhl f\u00fcr Computational Imaging and AI in Medicine (Prof. Schnabel)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computational Imaging and AI in Medicine (Prof. Schnabel)" }, "51897": { "code": "TUS1000", @@ -7947,17 +7947,17 @@ "52718": { "code": "TUINH01", "name": "Informatik Heilbronn 1 - Lehrstuhl f\u00fcr Efficient Algorithms (Prof. Kobourov)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik Heilbronn 1 - Lehrstuhl f\u00fcr Efficient Algorithms (Prof. Kobourov)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Efficient Algorithms (Prof. Kobourov)" }, "52719": { "code": "TUINH02", "name": "Informatik Heilbronn 2 - Professur f\u00fcr Computer Architecture & Operating Systems (Prof. Trinitis komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik Heilbronn 2 - Professur f\u00fcr Computer Architecture & Operating Systems (Prof. Trinitis komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Computer Architecture & Operating Systems (Prof. Trinitis komm.)" }, "52720": { "code": "TUINH03", "name": "Informatik Heilbronn 3 - Lehrstuhl f\u00fcr Software Engineering (Prof. Wagner)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik Heilbronn 3 - Lehrstuhl f\u00fcr Software Engineering (Prof. Wagner)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering (Prof. Wagner)" }, "52737": { "code": "TUS7RES", @@ -8167,7 +8167,7 @@ "53017": { "code": "TUINF33", "name": "Informatik 24 - Professur f\u00fcr Ethics in Systems Design and Machine Learning (Prof. Kilbertus)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 24 - Professur f\u00fcr Ethics in Systems Design and Machine Learning (Prof. Kilbertus)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Ethics in Systems Design and Machine Learning (Prof. Kilbertus)" }, "53018": { "code": "TUXB300", @@ -8507,7 +8507,7 @@ "53357": { "code": "TUINH04", "name": "Informatik Heilbronn 4 - Lehrstuhl f\u00fcr Computational Mathematics (Prof. Anzt)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik Heilbronn 4 - Lehrstuhl f\u00fcr Computational Mathematics (Prof. Anzt)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computational Mathematics (Prof. Anzt)" }, "53358": { "code": "TUS4N7M", @@ -8552,7 +8552,7 @@ "53517": { "code": "TUINI33", "name": "Informatik 33 - Lehrstuhl f\u00fcr Engineering robuster kognitiver Systeme (Prof. Trapp)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 33 - Lehrstuhl f\u00fcr Engineering robuster kognitiver Systeme (Prof. Trapp)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Engineering robuster kognitiver Systeme (Prof. Trapp)" }, "53537": { "code": "TUGSSED", @@ -8847,17 +8847,17 @@ "53797": { "code": "TUINI35", "name": "Informatik 35 - Lehrstuhl f\u00fcr Perception for Intelligent Systems (Prof. Lilienthal)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 35 - Lehrstuhl f\u00fcr Perception for Intelligent Systems (Prof. Lilienthal)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Perception for Intelligent Systems (Prof. Lilienthal)" }, "53817": { "code": "TUINH05", "name": "Informatik Heilbronn 5 - Professur f\u00fcr Data Engineering (Prof. Acosta Deibe)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik Heilbronn 5 - Professur f\u00fcr Data Engineering (Prof. Acosta Deibe)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Engineering (Prof. Acosta Deibe)" }, "53818": { "code": "TUINH09", "name": "Informatik Heilbronn 9 - Professur f\u00fcr Distributed Systems and Security (Prof. G\u00fcnther komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik Heilbronn 9 - Professur f\u00fcr Distributed Systems and Security (Prof. G\u00fcnther komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Distributed Systems and Security (Prof. G\u00fcnther komm.)" }, "53837": { "code": "TUPHEQN", @@ -9027,7 +9027,7 @@ "53997": { "code": "TUINI34", "name": "Informatik 34 - Lehrstuhl f\u00fcr Information System Development and Operation (Prof. Weber)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 34 - Lehrstuhl f\u00fcr Information System Development and Operation (Prof. Weber)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Information System Development and Operation (Prof. Weber)" }, "54017": { "code": "TUS2IPD", @@ -9342,7 +9342,7 @@ "54319": { "code": "TUS1300", "name": "Informatik 18 - Professur f\u00fcr Decision Analytics (Prof. Etesami)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 18 - Professur f\u00fcr Decision Analytics (Prof. Etesami)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Decision Analytics (Prof. Etesami)" }, "54320": { "code": "TUS3003", @@ -9412,17 +9412,17 @@ "54457": { "code": "TUS1302", "name": "Informatik 4 - Professur f\u00fcr Software Engineering f\u00fcr datenintensive Anwendungen (Prof. Stocco)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 4 - Professur f\u00fcr Software Engineering f\u00fcr datenintensive Anwendungen (Prof. Stocco)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering f\u00fcr datenintensive Anwendungen (Prof. Stocco)" }, "54458": { "code": "TUS1303", "name": "Informatik Heilbronn 7 - Professur f\u00fcr Information Systems (Prof. Pufahl)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik Heilbronn 7 - Professur f\u00fcr Information Systems (Prof. Pufahl)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Information Systems (Prof. Pufahl)" }, "54477": { "code": "TUS1301", "name": "Informatik 36 - Professur f\u00fcr Algorithmisches Maschinelles Lernen & Erkl\u00e4rbare KI (Prof. Bauer)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik 36 - Professur f\u00fcr Algorithmisches Maschinelles Lernen & Erkl\u00e4rbare KI (Prof. Bauer)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Algorithmisches Maschinelles Lernen & Erkl\u00e4rbare KI (Prof. Bauer)" }, "54497": { "code": "TUXS112", @@ -9432,7 +9432,7 @@ "54517": { "code": "TUS1304", "name": "Informatik Heilbronn 6 - Lehrstuhl f\u00fcr Data Analytics & Statistics (Prof. Fraser)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik Heilbronn 6 - Lehrstuhl f\u00fcr Data Analytics & Statistics (Prof. Fraser)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Analytics & Statistics (Prof. Fraser)" }, "54537": { "code": "TUS1CHN", @@ -9707,7 +9707,7 @@ "54817": { "code": "TUS1307", "name": "Informatik Heilbronn 8 - Professur f\u00fcr Cyber-Physical Systems (Prof. Alanwar)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik Heilbronn 8 - Professur f\u00fcr Cyber-Physical Systems (Prof. Alanwar)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Cyber-Physical Systems (Prof. Alanwar)" }, "54818": { "code": "TUS3006", @@ -10231,58 +10231,58 @@ }, "55297": { "code": "TUZVZTE", - "name": "Zentrale Technik", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik" + "name": "Zentrale Technik (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)" }, "55298": { "code": "TUZVMUC", - "name": "Standort M\u00fcnchen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen" + "name": "Standort M\u00fcnchen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)" }, "55299": { "code": "TUZVGAR", - "name": "Standort Garching", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching" + "name": "Standort Garching (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Garching (ZA 4)" }, "55300": { "code": "TUZVWHS", - "name": "Standort Weihenstephan", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan" + "name": "Standort Weihenstephan (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)" }, "55301": { "code": "TUZVCIO", - "name": "Campus im Olympiapark", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen/Campus im Olympiapark" + "name": "Campus im Olympiapark (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort M\u00fcnchen (ZA 4)/Campus im Olympiapark (ZA 4)" }, "55302": { "code": "TUZVVUF", - "name": "Vergaberecht und Fl\u00e4chenmanagement", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Vergaberecht und Fl\u00e4chenmanagement" + "name": "Vergaberecht und Fl\u00e4chenmanagement (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Vergaberecht und Fl\u00e4chenmanagement (ZA 4)" }, "55303": { "code": "TUZVPUD", - "name": "Prozesse und Digitalisierung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Prozesse und Digitalisierung" + "name": "Prozesse und Digitalisierung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Prozesse und Digitalisierung (ZA 4)" }, "55304": { "code": "TUZVPUS", - "name": "Personal und Stellen", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Personal und Stellen" + "name": "Personal und Stellen (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Personal und Stellen (ZA 4)" }, "55305": { "code": "TUZVIGM", - "name": "Infrastrukturelles Geb\u00e4udemanagement", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Geb\u00e4udemanagement Weihenstephan/Infrastruktur Weihenstephan/Infrastrukturelles Geb\u00e4udemanagement" + "name": "Infrastrukturelles Geb\u00e4udemanagement (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Geb\u00e4udemanagement Weihenstephan (ZA 4)/Infrastruktur Weihenstephan (ZA 4)/Infrastrukturelles Geb\u00e4udemanagement (ZA 4)" }, "55306": { "code": "TUZVEUM", - "name": "Energie- und Medienversorgung", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik/Energie- und Medienversorgung" + "name": "Energie- und Medienversorgung (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Zentrale Technik (ZA 4)/Energie- und Medienversorgung (ZA 4)" }, "55307": { "code": "TUZVTPL", - "name": "Technische Projektsteuerung Life Sciences", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan/Technische Projektsteuerung Life Sciences" + "name": "Technische Projektsteuerung Life Sciences (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Standort Weihenstephan (ZA 4)/Technische Projektsteuerung Life Sciences (ZA 4)" }, "55317": { "code": "TUS4P9N", @@ -10341,8 +10341,8 @@ }, "55417": { "code": "TUZVSOP", - "name": "Sonderprojekte", - "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung/Sonderprojekte" + "name": "Sonderprojekte (ZA 4)", + "path": "TUM/Zentrale Verwaltung/Immobilien (ZA 4)/Ressourcenplanung (ZA 4)/Sonderprojekte (ZA 4)" }, "55437": { "code": "TUS1310", @@ -10617,12 +10617,12 @@ "55937": { "code": "TUS1314", "name": "Informatik Heilbronn 11 - Lehrstuhl f\u00fcr Software Engineering & AI (Prof. Chen)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatik Heilbronn 11 - Lehrstuhl f\u00fcr Software Engineering & AI (Prof. Chen)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering & AI (Prof. Chen)" }, "55938": { "code": "TUS1315", "name": "Informatik 39 - Professur f\u00fcr Learning AI for Dextrous Robots (Prof. B\u00e4uml)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatik 39 - Professur f\u00fcr Learning AI for Dextrous Robots (Prof. B\u00e4uml)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Learning AI for Dextrous Robots (Prof. B\u00e4uml)" }, "55957": { "code": "TUXS113", @@ -10631,7 +10631,7 @@ }, "55997": { "code": "TUS1316", - "name": "Physics-enhanced Machine Learning (Prof. Dietrich)", + "name": "Professur f\u00fcr Physics-enhanced Machine Learning (Prof. Dietrich)", "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Physics-enhanced Machine Learning (Prof. Dietrich)" }, "56017": { @@ -11088,5 +11088,40 @@ "code": "TUPREXP", "name": "Exportkontrolle", "path": "TUM/Hochschulpr\u00e4sidium/Exportkontrolle" + }, + "56818": { + "code": "TUCSMNR", + "name": "HSWT-Professur f\u00fcr Marketing und Management Nachwachsender Rohstoffe (Prof. Menrad)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing f\u00fcr Biotechnologie und Nachhaltigkeit (TUMCS)/HSWT - Professuren/Marketing und Management Nachwachsender Rohstoffe (Prof. Menrad)" + }, + "56819": { + "code": "TUCSOAC", + "name": "HSWT-Professur f\u00fcr Organisch-Analytische Chemie (Prof. Riepl)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing f\u00fcr Biotechnologie und Nachhaltigkeit (TUMCS)/HSWT - Professuren/Organisch-Analytische Chemie (Prof. Riepl)" + }, + "56820": { + "code": "TUCSEDE", + "name": "HSWT-Professur f\u00fcr Umwelt- und Entwicklungs\u00f6konomie (Prof. Fa\u00dfe)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing f\u00fcr Biotechnologie und Nachhaltigkeit (TUMCS)/HSWT - Professuren/Umwelt- und Entwicklungs\u00f6konomie (Prof. Fa\u00dfe)" + }, + "56821": { + "code": "TUCSSBE", + "name": "HSWT-Professur f\u00fcr Nachhaltige Betriebswirtschaft (Prof. R\u00f6der)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing f\u00fcr Biotechnologie und Nachhaltigkeit (TUMCS)/HSWT - Professuren/Nachhaltige Betriebswirtschaft (Prof. R\u00f6der)" + }, + "56822": { + "code": "TUCSENT", + "name": "HSWT-Professur f\u00fcr Energietechnik (Prof. Kainz)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing f\u00fcr Biotechnologie und Nachhaltigkeit (TUMCS)/HSWT - Professuren/Energietechnik (Prof. Kainz)" + }, + "56823": { + "code": "TUCSBIT", + "name": "HSWT-Professur f\u00fcr Bioinformatik (Prof. Grimm)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing f\u00fcr Biotechnologie und Nachhaltigkeit (TUMCS)/HSWT - Professuren/Bioinformatik (Prof. Grimm)" + }, + "56824": { + "code": "TUCSGTH", + "name": "HSWT-Professur f\u00fcr Geothermie (Prof. Vienken)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing f\u00fcr Biotechnologie und Nachhaltigkeit (TUMCS)/HSWT - Professuren/Geothermie (Prof. Vienken)" } } diff --git a/data/external/results/orgs-en_tumonline.json b/data/external/results/orgs-en_tumonline.json index 6aaa03825..f267235ad 100644 --- a/data/external/results/orgs-en_tumonline.json +++ b/data/external/results/orgs-en_tumonline.json @@ -932,92 +932,92 @@ "15426": { "code": "TUINI01", "name": "Informatics 1 - Chair of Distributed Systems and Operating Systems (Prof. Bhatotia)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 1 - Chair of Distributed Systems and Operating Systems (Prof. Bhatotia)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Distributed Systems and Operating Systems (Prof. Bhatotia)" }, "15427": { "code": "TUINI02", "name": "Informatics 2 - Chair of Formal Languages, Compiler Construction, Software Construction (Prof. Seidl)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 2 - Chair of Formal Languages, Compiler Construction, Software Construction (Prof. Seidl)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Formal Languages, Compiler Construction, Software Construction (Prof. Seidl)" }, "15428": { "code": "TUINI03", "name": "Informatics 3 - Chair of database systems (Prof. Kemper)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 3 - Chair of database systems (Prof. Kemper)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/database systems (Prof. Kemper)" }, "15430": { "code": "TUINI05", "name": "Informatics 5 - Chair of Scientific Computing (Prof. Bungartz)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 5 - Chair of Scientific Computing (Prof. Bungartz)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Scientific Computing (Prof. Bungartz)" }, "15431": { "code": "TUINI06", - "name": "Informatics 6 - Chair of Robotics, Artificial Intelligence and Real-time Systems (Prof. Knoll)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 6 - Chair of Robotics, Artificial Intelligence and Real-time Systems (Prof. Knoll)" + "name": "nformatics 6 - Chair of IRobotics, Artificial Intelligence and Real-time Systems (Prof. Knoll)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/IRobotics, Artificial Intelligence and Real-time Systems (Prof. Knoll)" }, "15432": { "code": "TUINI07", "name": "Informatics 7 - Chair of Theoretical Computer Science (Prof. Esparza)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 7 - Chair of Theoretical Computer Science (Prof. Esparza)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Theoretical Computer Science (Prof. Esparza)" }, "15433": { "code": "TUINI08", "name": "Informatics 8 - Chair of Network Architectures and Services (Prof. Carle)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 8 - Chair of Network Architectures and Services (Prof. Carle)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Network Architectures and Services (Prof. Carle)" }, "15434": { "code": "TUINI09", "name": "Informatics 9 - Chair of Computer Vision and Artificial Intelligence (Prof. Cremers)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 9 - Chair of Computer Vision and Artificial Intelligence (Prof. Cremers)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computer Vision and Artificial Intelligence (Prof. Cremers)" }, "15435": { "code": "TUINI10", "name": "Informatics 10 - Chair of Computer Architecture and Parallel Systems (Prof. Schulz)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 10 - Chair of Computer Architecture and Parallel Systems (Prof. Schulz)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Computer Architecture and Parallel Systems (Prof. Schulz)" }, "15436": { "code": "TUINI11", "name": "Informatics 11 - Chair of Applied Informatics - Cooperative Systems (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 11 - Chair of Applied Informatics - Cooperative Systems (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Applied Informatics - Cooperative Systems (N.N.)" }, "15437": { "code": "TUINI12", "name": "Informatics 12 - Chair of Bioinformatics (Prof. Rost)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 12 - Chair of Bioinformatics (Prof. Rost)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Bioinformatics (Prof. Rost)" }, "15438": { "code": "TUINI13", "name": "Informatics 13 - Chair of Decentralized Information Systems and Data Management (Prof. Leis)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 13 - Chair of Decentralized Information Systems and Data Management (Prof. Leis)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Decentralized Information Systems and Data Management (Prof. Leis)" }, "15439": { "code": "TUINI14", "name": "Informatics 14 - Chair of efficient algorithms (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 14 - Chair of efficient algorithms (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/efficient algorithms (N.N.)" }, "15440": { "code": "TUINI15", "name": "Informatics 15 - Chair of Computer Graphics and Visualization (Prof. Westermann)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 15 - Chair of Computer Graphics and Visualization (Prof. Westermann)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computer Graphics and Visualization (Prof. Westermann)" }, "15441": { "code": "TUINI16", "name": "Informatics 16 - Chair of Computer Aided Medical Procedures (Prof. Navab)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 16 - Chair of Computer Aided Medical Procedures (Prof. Navab)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computer Aided Medical Procedures (Prof. Navab)" }, "15442": { "code": "TUINI17", - "name": "Informatics 17 - Chair of Information Systems and Business Process Management (Prof. Rinderle-Ma)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 17 - Chair of Information Systems and Business Process Management (Prof. Rinderle-Ma)" + "name": "Informatics 17 - Chair of Information Systems and Business Process Management (Prof. Rinderle-Ma)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Information Systems and Business Process Management (Prof. Rinderle-Ma)" }, "15443": { "code": "TUINI18", "name": "Informatics 18 - Chair of Decision Sciences & Systems (Prof. Bichler)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 18 - Chair of Decision Sciences & Systems (Prof. Bichler)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Decision Sciences & Systems (Prof. Bichler)" }, "15444": { "code": "TUINI19", "name": "Informatics 19 - Chair of Software Engineering for Business Information Systems (Prof. Matthes)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 19 - Chair of Software Engineering for Business Information Systems (Prof. Matthes)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering for Business Information Systems (Prof. Matthes)" }, "15453": { "code": "TUS4OTD", @@ -2317,22 +2317,22 @@ "24633": { "code": "TUINF01", "name": "Informatics 13 - Associate Professorship of Integrated Computing Systems- (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 13 - Associate Professorship of Integrated Computing Systems- (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Integrated Computing Systems- (N.N.)" }, "24642": { "code": "TUINF02", "name": "Informatics 11 - Associate Professorship of Applied Informatics - Cooperative Systems (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 11 - Associate Professorship of Applied Informatics - Cooperative Systems (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Applied Informatics - Cooperative Systems (N.N.)" }, "24648": { "code": "TUINF03", "name": "Informatics 7 - Associate Professorship of Formal Methods for Software Reliability (Prof. Ayikudi Ramachandrakumar komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 7 - Associate Professorship of Formal Methods for Software Reliability (Prof. Ayikudi Ramachandrakumar komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Formal Methods for Software Reliability (Prof. Ayikudi Ramachandrakumar komm.)" }, "24654": { "code": "TUINF04", "name": "Informatics 10 - Associate Professorship of Architecture of Parallel and Distributed Systems - (Prof. Gerndt)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 10 - Associate Professorship of Architecture of Parallel and Distributed Systems - (Prof. Gerndt)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Architecture of Parallel and Distributed Systems - (Prof. Gerndt)" }, "24659": { "code": "TUEDS10", @@ -2342,22 +2342,22 @@ "24661": { "code": "TUINF12", "name": "Informatics 16 - Associate Professorship of Augmented Reality (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 16 - Associate Professorship of Augmented Reality (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Augmented Reality (N.N.)" }, "24668": { "code": "TUINF05", "name": "Informatics 25 - Chair of Data Science and Engineering (Prof. Neumann)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 25 - Chair of Data Science and Engineering (Prof. Neumann)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Science and Engineering (Prof. Neumann)" }, "24669": { "code": "TUINF07", "name": "Informatics 29 - Chair of Computational Molecular Medicine (Prof. Gagneur)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 29 - Chair of Computational Molecular Medicine (Prof. Gagneur)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computational Molecular Medicine (Prof. Gagneur)" }, "24670": { "code": "TUINI21", "name": "Informatics 21 - Chair of Logic and Verification (Prof. Bruse komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 21 - Chair of Logic and Verification (Prof. Bruse komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Logic and Verification (Prof. Bruse komm.)" }, "24671": { "code": "TUINF14", @@ -2367,17 +2367,17 @@ "24672": { "code": "TUINF10", "name": "Informatics 14 - Associate Professorship of Theoretical Computer Science (Prof. R\u00e4cke)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 14 - Associate Professorship of Theoretical Computer Science (Prof. R\u00e4cke)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Theoretical Computer Science (Prof. R\u00e4cke)" }, "24673": { "code": "TUINF15", "name": "Informatics 6 - Associate Professorship of Cyber Physical Systems (Prof. Althoff)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 6 - Associate Professorship of Cyber Physical Systems (Prof. Althoff)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Cyber Physical Systems (Prof. Althoff)" }, "24674": { "code": "TUINF11", "name": "Informatics 6 - Associate Professorship of Machine Vision and Perception (Prof. Burschka)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 6 - Associate Professorship of Machine Vision and Perception (Prof. Burschka)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Machine Vision and Perception (Prof. Burschka)" }, "24777": { "code": "TUWZA1A", @@ -2406,13 +2406,13 @@ }, "25918": { "code": "TUZV141", - "name": "Construction Management Garching", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Construction Management Garching" + "name": "Construction Management Garching (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Construction Management Garching (Central department 4)" }, "25925": { "code": "TUZV142", - "name": "Facility management Garching", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching" + "name": "Facility Management Garching (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)" }, "25930": { "code": "TUZVR15", @@ -2481,48 +2481,48 @@ }, "26050": { "code": "TUZVR40", - "name": "Resource Planning", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning" + "name": "Resource Planning (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)" }, "26055": { "code": "TUZVR42", - "name": "Construction Management Munich", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Construction Management Munich" + "name": "Construction Management Munich (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Construction Management Munich (Central department 4)" }, "26059": { "code": "TUZVR43", - "name": "Construction management (department 43)", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Construction Management Munich/Construction management (department 43)" + "name": "Construction management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Construction Management Munich (Central department 4)/Construction management (Central department 4)" }, "26064": { "code": "TUZVR44", - "name": "Facility management Munich", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich" + "name": "Facility Management Munich (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)" }, "26069": { "code": "TUZV440", - "name": "Energiemonitoring, Contracting", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Energy and Media Supply/Energiemonitoring, Contracting" + "name": "Energy monitoring, Contracting (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Energy and Media Supply (Central department 4)/Energy monitoring, Contracting (Central department 4)" }, "26073": { "code": "TUZV441", - "name": "Plant Technology Munich", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Plant Technology Munich" + "name": "Plant Technology Munich (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Plant Technology Munich (Central department 4)" }, "26077": { "code": "TUZV442", - "name": "Electrical Engineering Munich", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Electrical Engineering Munich" + "name": "Electrical Engineering Munich (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Electrical Engineering Munich (Central department 4)" }, "26081": { "code": "TUZV443", - "name": "Infrastructure Munich", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich" + "name": "Infrastructure Munich (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)" }, "26089": { "code": "TUZV445", - "name": "Floor-space management", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Public Procurement Law and Floor-Space Management/Floor-space management" + "name": "Floor-space management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Public Procurement Law and Floor-Space Management (Central department 4)/Floor-space management (Central department 4)" }, "26122": { "code": "TUZVR71", @@ -2546,38 +2546,38 @@ }, "26175": { "code": "TUZVR84", - "name": "Facility management Weihenstephan", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan" + "name": "Facility Management Weihenstephan (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)" }, "26217": { "code": "TUZV841", - "name": "Mechanical plants Weihenstephan", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Mechanical plants Weihenstephan" + "name": "Plant Technology Weihenstephan (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Plant Technology Weihenstephan (Central department 4)" }, "26221": { "code": "TUZV842", - "name": "Electrical Engineering Weihenstephan", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Electrical Engineering Weihenstephan" + "name": "Electrical Engineering Weihenstephan (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Electrical Engineering Weihenstephan (Central department 4)" }, "26225": { "code": "TUZV843", - "name": "Environmental technology and Disposal", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Disposal and Environment/Environmental technology and Disposal" + "name": "Environmental technology and Disposal (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Disposal and Environment (Central department 4)/Environmental technology and Disposal (Central department 4)" }, "26229": { "code": "TUZV844", - "name": "Infrastructure Weihenstephan", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan" + "name": "Infrastructure Weihenstephan (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)" }, "26233": { "code": "TUZV845", - "name": "Depot, Property management", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Depot, Property management" + "name": "Depot, Property management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Depot, Property management (Central department 4)" }, "26237": { "code": "TUZV846", - "name": "Service operation", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Service operation" + "name": "Service operation (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Service operation (Central department 4)" }, "26519": { "code": "TUMEGY0", @@ -2857,7 +2857,7 @@ "30697": { "code": "TUINI20", "name": "Informatics 20 - Chair of IT Security (Prof. Eckert)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 20 - Chair of IT Security (Prof. Eckert)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/IT Security (Prof. Eckert)" }, "31224": { "code": "TUCSVRW", @@ -2961,113 +2961,113 @@ }, "37555": { "code": "TUZV44A", - "name": "Technical office Mechanical engineering", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Plant Technology Munich/Technical office Mechanical engineering" + "name": "Technical office Mechanical engineering (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Plant Technology Munich (Central department 4)/Technical office Mechanical engineering (Central department 4)" }, "37569": { "code": "TUZV44B", - "name": "Repair shop Control engineering and Conveyor technique", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Electrical Engineering Munich/Repair shop Control engineering and Conveyor technique" + "name": "Repair shop Control engineering and Conveyor technique (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Electrical Engineering Munich (Central department 4)/Repair shop Control engineering and Conveyor technique (Central department 4)" }, "37584": { "code": "TUZV44C", - "name": "Repair shop Heating air - Conditioning - Sanitary", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Plant Technology Munich/Repair shop Heating air - Conditioning - Sanitary" + "name": "Repair shop Heating air - Conditioning - Sanitary (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Plant Technology Munich (Central department 4)/Repair shop Heating air - Conditioning - Sanitary (Central department 4)" }, "37585": { "code": "TUZV44D", - "name": "Joinery and Metal workshop", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Plant Technology Munich/Joinery and Metal workshop" + "name": "Joinery and Metal workshop (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Plant Technology Munich (Central department 4)/Joinery and Metal workshop (Central department 4)" }, "37586": { "code": "TUZV44E", - "name": "Heating and Air conditioning technology (Pasing)", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Plant Technology Munich/Heating and Air conditioning technology (Pasing)" + "name": "Heating and Air conditioning technology (Pasing) (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Plant Technology Munich (Central department 4)/Heating and Air conditioning technology (Pasing) (Central department 4)" }, "37622": { "code": "TUZV44G", - "name": "Technical office Electrical engineering", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Electrical Engineering Munich/Technical office Electrical engineering" + "name": "Technical office Electrical engineering (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Electrical Engineering Munich (Central department 4)/Technical office Electrical engineering (Central department 4)" }, "37623": { "code": "TUZV44H", - "name": "Technical office Telecommunication", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Electrical Engineering Munich/Technical office Telecommunication" + "name": "Technical office Telecommunication (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Electrical Engineering Munich (Central department 4)/Technical office Telecommunication (Central department 4)" }, "37668": { "code": "TUZV44J", - "name": "Repair shop Electrical engineering", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Electrical Engineering Munich/Repair shop Electrical engineering" + "name": "Repair shop Electrical engineering (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Electrical Engineering Munich (Central department 4)/Repair shop Electrical engineering (Central department 4)" }, "37796": { "code": "TUZV44K", - "name": "Repair shop Media technology", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Electrical Engineering Munich/Repair shop Media technology" + "name": "Repair shop Media technology (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Electrical Engineering Munich (Central department 4)/Repair shop Media technology (Central department 4)" }, "37801": { "code": "TUZV44L", - "name": "Repair shop Telecommunication", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Electrical Engineering Munich/Repair shop Telecommunication" + "name": "Repair shop Telecommunication (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Electrical Engineering Munich (Central department 4)/Repair shop Telecommunication (Central department 4)" }, "37984": { "code": "TUZV44M", - "name": "Post office, Courier service", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Post office, Courier service" + "name": "Post office, Courier service (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Post office, Courier service (Central department 4)" }, "37985": { "code": "TUZV44N", - "name": "Registrar's office", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Registrar's office" + "name": "Registrar's office (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Registrar's office (Central department 4)" }, "37986": { "code": "TUZV44O", - "name": "Official vehicle", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Official vehicle" + "name": "Official vehicle (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Official vehicle (Central department 4)" }, "37988": { "code": "TUZV44Q", - "name": "Guarding", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Guarding" + "name": "Guarding (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Guarding (Central department 4)" }, "37989": { "code": "TUZV44R", - "name": "Cleaning, Maintenance of outside facilities, Invitations to bid", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Cleaning, Maintenance of outside facilities, Invitations to bid" + "name": "Cleaning, Maintenance of outside facilities, Invitations to bid (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Cleaning, Maintenance of outside facilities, Invitations to bid (Central department 4)" }, "37990": { "code": "TUZV44S", - "name": "Key management", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Key management" + "name": "Key management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Key management (Central department 4)" }, "37992": { "code": "TUZV44U", - "name": "Caretaking service", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Caretaking service" + "name": "Caretaking service (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Caretaking service (Central department 4)" }, "38003": { "code": "TUZV44V", - "name": "Maintenance Service at TUM CiO", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/TUM Campus at the Olympic Park/Maintenance Service at TUM CiO" + "name": "Maintenance Service at TUM CiO (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/TUM Campus at the Olympic Park (Central department 4)/Maintenance Service at TUM CiO (Central department 4)" }, "38004": { "code": "TUZV44W", - "name": "Electrical engineering, Metalworking shop", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/TUM Campus at the Olympic Park/Electrical engineering, Metalworking shop" + "name": "Electrical engineering, Metalworking shop (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/TUM Campus at the Olympic Park (Central department 4)/Electrical engineering, Metalworking shop (Central department 4)" }, "38006": { "code": "TUZV44Y", - "name": "Water sports ground Starnberg", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Water sports ground Starnberg" + "name": "Water sports ground Starnberg (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Water sports ground Starnberg (Central department 4)" }, "38010": { "code": "TUZV45A", - "name": "Lecture hall management", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Public Procurement Law and Floor-Space Management/Floor-space management/Lecture hall management" + "name": "Lecture hall management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Public Procurement Law and Floor-Space Management (Central department 4)/Floor-space management (Central department 4)/Lecture hall management (Central department 4)" }, "38011": { "code": "TUZV45B", - "name": "External Rental and Renting incl. TUM CiO", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Public Procurement Law and Floor-Space Management/Floor-space management/External Rental and Renting incl. TUM CiO" + "name": "External Rental and Renting incl. TUM CiO (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Public Procurement Law and Floor-Space Management (Central department 4)/Floor-space management (Central department 4)/External Rental and Renting incl. TUM CiO (Central department 4)" }, "38136": { "code": "TUWIB17", @@ -3076,73 +3076,73 @@ }, "38369": { "code": "TUZV847", - "name": "Constructional workshop", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Mechanical plants Weihenstephan/Constructional workshop" + "name": "Constructional workshop (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Plant Technology Weihenstephan (Central department 4)/Constructional workshop (Central department 4)" }, "38540": { "code": "TUZV14C", - "name": "Heating plants with control room", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Energy and Media Supply/Heating plants with control room" + "name": "Heating plants with control room (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Energy and Media Supply (Central department 4)/Heating plants with control room (Central department 4)" }, "38541": { "code": "TUZV14D", - "name": "Plant Technology Garching", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Plant Technology Garching" + "name": "Plant Technology Garching (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Plant Technology Garching (Central department 4)" }, "38542": { "code": "TUZV14E", - "name": "Electrical Engineering Garching", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Electrical Engineering Garching" + "name": "Electrical Engineering Garching (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Electrical Engineering Garching (Central department 4)" }, "38543": { "code": "TUZV14F", - "name": "Environment / Waste disposal", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Disposal and Environment/Environment / Waste disposal" + "name": "Environment / Waste disposal (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Disposal and Environment (Central department 4)/Environment / Waste disposal (Central department 4)" }, "38577": { "code": "TUZV14G", - "name": "Infrastrukturelles FM Poststelle", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Infrastructure Garching/Infrastrukturelles FM Poststelle" + "name": "Infrastructural floor-space management Post office (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Infrastructure Garching (Central department 4)/Infrastructural floor-space management Post office (Central department 4)" }, "38579": { "code": "TUZV14I", - "name": "Technical Office", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Plant Technology Garching/Technical Office" + "name": "Technical Office (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Plant Technology Garching (Central department 4)/Technical Office (Central department 4)" }, "38580": { "code": "TUZV14J", - "name": "Heating and Ventilation", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Plant Technology Garching/Heating and Ventilation" + "name": "Heating and Ventilation (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Plant Technology Garching (Central department 4)/Heating and Ventilation (Central department 4)" }, "38581": { "code": "TUZV14K", - "name": "Sanitary and Air conditioning systems", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Plant Technology Garching/Sanitary and Air conditioning systems" + "name": "Sanitary and Air conditioning systems (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Plant Technology Garching (Central department 4)/Sanitary and Air conditioning systems (Central department 4)" }, "38582": { "code": "TUZV14L", - "name": "Mechanic, Carpenter, Gardener", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Plant Technology Garching/Mechanic, Carpenter, Gardener" + "name": "Mechanic, Carpenter, Gardener (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Plant Technology Garching (Central department 4)/Mechanic, Carpenter, Gardener (Central department 4)" }, "38596": { "code": "TUZV14N", - "name": "Technical Office / Lecture hall engineering", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Electrical Engineering Garching/Technical Office / Lecture hall engineering" + "name": "Technical Office / Lecture hall engineering (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Electrical Engineering Garching (Central department 4)/Technical Office / Lecture hall engineering (Central department 4)" }, "38597": { "code": "TUZV14O", - "name": "Electric", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Electrical Engineering Garching/Electric" + "name": "Electric (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Electrical Engineering Garching (Central department 4)/Electric (Central department 4)" }, "38598": { "code": "TUZV14P", - "name": "Telecommunication", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Electrical Engineering Garching/Telecommunication" + "name": "Telecommunication (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Electrical Engineering Garching (Central department 4)/Telecommunication (Central department 4)" }, "38599": { "code": "TUZV14Q", - "name": "Central Building control system", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Electrical Engineering Garching/Central Building control system" + "name": "Central Building control system (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Electrical Engineering Garching (Central department 4)/Central Building control system (Central department 4)" }, "39071": { "code": "TUWZM1A", @@ -3246,8 +3246,8 @@ }, "41267": { "code": "TUGSTGS", - "name": "Management Office", - "path": "TUM/TUM Graduate School/Management Office" + "name": "Management Office (GS)", + "path": "TUM/TUM Graduate School/Management Office (GS)" }, "41681": { "code": "TUZVR7W", @@ -3487,7 +3487,7 @@ "43448": { "code": "TUINF17", "name": "Informatics 18 - Associate Professorship of Algorithmic Game Theory (Prof. Brandt)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 18 - Associate Professorship of Algorithmic Game Theory (Prof. Brandt)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Algorithmic Game Theory (Prof. Brandt)" }, "43449": { "code": "TUWIB18", @@ -3627,7 +3627,7 @@ "44006": { "code": "TUINF16", "name": "Informatics 5 - Associate Professorship of Hardware-aware algorithms and software for HPC (Prof. Bader)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 5 - Associate Professorship of Hardware-aware algorithms and software for HPC (Prof. Bader)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Hardware-aware algorithms and software for HPC (Prof. Bader)" }, "44008": { "code": "TUINFRW", @@ -3756,8 +3756,8 @@ }, "44344": { "code": "TUZV44F", - "name": "Removals, Labelling", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Facility management Munich/Infrastructure Munich/Removals, Labelling" + "name": "Removals, Labelling (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Facility Management Munich (Central department 4)/Infrastructure Munich (Central department 4)/Removals, Labelling (Central department 4)" }, "44364": { "code": "TUCHRC3", @@ -4016,8 +4016,8 @@ }, "45070": { "code": "TUZV848", - "name": "Werkfeuerwehr Weihenstephan", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Werkfeuerwehr Weihenstephan" + "name": "Factory fire brigade Weihenstephan (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Factory fire brigade Weihenstephan (Central department 4)" }, "45071": { "code": "TUMWPTM", @@ -4047,7 +4047,7 @@ "45151": { "code": "TUINI22", "name": "Informatics 4 - Chair of Software & Systems Engineering (Prof. Pretschner)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 4 - Chair of Software & Systems Engineering (Prof. Pretschner)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software & Systems Engineering (Prof. Pretschner)" }, "45170": { "code": "TUWIB26", @@ -4306,8 +4306,8 @@ }, "45971": { "code": "TUZVR87", - "name": "Construction Management Weihenstephan", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Construction Management Weihenstephan" + "name": "Construction Management Weihenstephan (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Construction Management Weihenstephan (Central department 4)" }, "45991": { "code": "TUGSCRE", @@ -4332,7 +4332,7 @@ "46091": { "code": "TUINI23", "name": "Informatics 23 - Chair of Sensor-based Robotic Systems and Intelligent Assistance Systems (Prof. Albu-Sch\u00e4ffer)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 23 - Chair of Sensor-based Robotic Systems and Intelligent Assistance Systems (Prof. Albu-Sch\u00e4ffer)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Sensor-based Robotic Systems and Intelligent Assistance Systems (Prof. Albu-Sch\u00e4ffer)" }, "46135": { "code": "TUZEIAK", @@ -4397,12 +4397,12 @@ "46356": { "code": "TUINF08", "name": "Informatics 15 - Associate Professorship of Physics-based Simulation (Prof. Thuerey)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 15 - Associate Professorship of Physics-based Simulation (Prof. Thuerey)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Physics-based Simulation (Prof. Thuerey)" }, "46357": { "code": "TUINL14", "name": "Informatics 14 - Chair of Algorithms and Complexity (Prof. Albers)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 14 - Chair of Algorithms and Complexity (Prof. Albers)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Algorithms and Complexity (Prof. Albers)" }, "46415": { "code": "TUEISNE", @@ -4456,8 +4456,8 @@ }, "46757": { "code": "TUZV14R", - "name": "Werkstatt MSR-Technik", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Plant Technology Garching/Werkstatt MSR-Technik" + "name": "MSR technology (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Plant Technology Garching (Central department 4)/MSR technology (Central department 4)" }, "46777": { "code": "TUWZI5A", @@ -4607,7 +4607,7 @@ "47337": { "code": "TUINI24", "name": "Informatics 11 - Chair of Connected Mobility (Prof. Ott)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 11 - Chair of Connected Mobility (Prof. Ott)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Connected Mobility (Prof. Ott)" }, "47357": { "code": "TUCHOCG", @@ -4796,8 +4796,8 @@ }, "48037": { "code": "TUINF18", - "name": "Informatics 26 - Chair of Professorship of Data Analytics and Machine Learning (Prof. G\u00fcnnemann)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 26 - Chair of Professorship of Data Analytics and Machine Learning (Prof. G\u00fcnnemann)" + "name": "Informatics 26 - Chair of Professorship of Data Analytics and Machine Learning (Prof. G\u00fcnnemann)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Analytics and Machine Learning (Prof. G\u00fcnnemann)" }, "48038": { "code": "TUEIESI", @@ -4902,7 +4902,7 @@ "48238": { "code": "TUINICT", "name": "Informatics 24 - Associate Professorship of Cyber Trust (Prof. Grossklags)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 24 - Associate Professorship of Cyber Trust (Prof. Grossklags)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Cyber Trust (Prof. Grossklags)" }, "48257": { "code": "TUARL32", @@ -4911,8 +4911,8 @@ }, "48258": { "code": "TUINF19", - "name": "Informatics 28 - Chair of Professorship of Visual Computing (Prof. Nie\u00dfner)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 28 - Chair of Professorship of Visual Computing (Prof. Nie\u00dfner)" + "name": "Informatics 28 - Chair of Professorship of Visual Computing (Prof. Nie\u00dfner)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Professorship of Visual Computing (Prof. Nie\u00dfner)" }, "48277": { "code": "TUMEVI4", @@ -4921,128 +4921,128 @@ }, "48297": { "code": "TUZVRBE", - "name": "Structural development planning", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/Construction Management Munich/Structural development planning" + "name": "Structural development planning (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/Construction Management Munich (Central department 4)/Structural development planning (Central department 4)" }, "48298": { "code": "TUZV453", - "name": "Infrastructure Garching", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Infrastructure Garching" + "name": "Infrastructure Garching (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Infrastructure Garching (Central department 4)" }, "48302": { "code": "TUZV45D", - "name": "Zeiterfassung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Infrastructure Garching/Zeiterfassung" + "name": "Time recording (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Infrastructure Garching (Central department 4)/Time recording (Central department 4)" }, "48303": { "code": "TUZV45E", - "name": "Kaufm\u00e4nnisches FM", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Infrastructure Garching/Kaufm\u00e4nnisches FM" + "name": "Commercial floor-space management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Infrastructure Garching (Central department 4)/Commercial floor-space management (Central department 4)" }, "48304": { "code": "TUZV45F", - "name": "Technisches FM", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Infrastructure Garching/Technisches FM" + "name": "Technical floor-space management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Infrastructure Garching (Central department 4)/Technical floor-space management (Central department 4)" }, "48305": { "code": "TUZV45G", - "name": "Infrastrukturelles FM", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Infrastructure Garching/Infrastrukturelles FM" + "name": "Infrastructural floor-space management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Infrastructure Garching (Central department 4)/Infrastructural floor-space management (Central department 4)" }, "48306": { "code": "TUZV45H", - "name": "Infrastrukturelles FM Geb\u00e4udereinigung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching/Facility management Garching/Infrastructure Garching/Infrastrukturelles FM Geb\u00e4udereinigung" + "name": "Infrastructural floor-space management Building cleaning (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)/Facility Management Garching (Central department 4)/Infrastructure Garching (Central department 4)/Infrastructural floor-space management Building cleaning (Central department 4)" }, "48307": { "code": "TUZV46A", - "name": "Technisches B\u00fcro Maschinentechnische Anlagen", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Mechanical plants Weihenstephan/Technisches B\u00fcro Maschinentechnische Anlagen" + "name": "Technical Office (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Plant Technology Weihenstephan (Central department 4)/Technical Office (Central department 4)" }, "48308": { "code": "TUZV46B", - "name": "Werkstatt Heizung und L\u00fcftung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Mechanical plants Weihenstephan/Werkstatt Heizung und L\u00fcftung" + "name": "Heating and Ventilation (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Plant Technology Weihenstephan (Central department 4)/Heating and Ventilation (Central department 4)" }, "48309": { "code": "TUZV46C", - "name": "Werkstatt Sanit\u00e4r", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Mechanical plants Weihenstephan/Werkstatt Sanit\u00e4r" + "name": "Sanitary (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Plant Technology Weihenstephan (Central department 4)/Sanitary (Central department 4)" }, "48310": { "code": "TUZV46D", - "name": "Werkstatt K\u00e4ltetechnik", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Mechanical plants Weihenstephan/Werkstatt K\u00e4ltetechnik" + "name": "Air conditioning systems (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Plant Technology Weihenstephan (Central department 4)/Air conditioning systems (Central department 4)" }, "48311": { "code": "TUZV46E", - "name": "Technisches B\u00fcro Elektrotechnik", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Electrical Engineering Weihenstephan/Technisches B\u00fcro Elektrotechnik" + "name": "Technical office Electrical engineering (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Electrical Engineering Weihenstephan (Central department 4)/Technical office Electrical engineering (Central department 4)" }, "48312": { "code": "TUZV46F", - "name": "Werkstatt Starkstromtechnik", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Electrical Engineering Weihenstephan/Werkstatt Starkstromtechnik" + "name": "Heavy current technology (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Electrical Engineering Weihenstephan (Central department 4)/Heavy current technology (Central department 4)" }, "48313": { "code": "TUZV46G", - "name": "Werkstatt Mess- und Regelungstechnik", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Electrical Engineering Weihenstephan/Werkstatt Mess- und Regelungstechnik" + "name": "Measurement and control technology (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Electrical Engineering Weihenstephan (Central department 4)/Measurement and control technology (Central department 4)" }, "48314": { "code": "TUZV46H", - "name": "Telefonzentrale", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Electrical Engineering Weihenstephan/Telefonzentrale" + "name": "Switchboard (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Electrical Engineering Weihenstephan (Central department 4)/Switchboard (Central department 4)" }, "48315": { "code": "TUZV46I", - "name": "Schl\u00fcsselverwaltung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Infrastructural Facility Management/Schl\u00fcsselverwaltung" + "name": "Key management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Infrastructural Facility Management (Central department 4)/Key management (Central department 4)" }, "48316": { "code": "TUZV46J", - "name": "Reinigung und Bewachung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Infrastructural Facility Management/Reinigung und Bewachung" + "name": "Cleaning and Guarding (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Infrastructural Facility Management (Central department 4)/Cleaning and Guarding (Central department 4)" }, "48317": { "code": "TUZV46K", - "name": "Raumbestandsverwaltung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Public Procurement Law and Floor-Space Management/Raumbestandsverwaltung" + "name": "Space inventory management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Public Procurement Law and Floor-Space Management (Central department 4)/Space inventory management (Central department 4)" }, "48318": { "code": "TUZV46L", - "name": "Betriebshof, Hausverwaltung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Depot, Property management/Betriebshof, Hausverwaltung" + "name": "Depot, Property management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Depot, Property management (Central department 4)/Depot, Property management (Central department 4)" }, "48319": { "code": "TUZV46M", - "name": "Dienstfahrzeuge und Drucklufttechnik", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Mechanical plants Weihenstephan/Dienstfahrzeuge und Drucklufttechnik" + "name": "Official vehicle and Compressed air technology (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Plant Technology Weihenstephan (Central department 4)/Official vehicle and Compressed air technology (Central department 4)" }, "48320": { "code": "TUZV46N", - "name": "Poststelle", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Infrastructural Facility Management/Poststelle" + "name": "Post office (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Infrastructural Facility Management (Central department 4)/Post office (Central department 4)" }, "48321": { "code": "TUZV46O", - "name": "Registratur", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Infrastructural Facility Management/Registratur" + "name": "Registrar's office (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Infrastructural Facility Management (Central department 4)/Registrar's office (Central department 4)" }, "48322": { "code": "TUZV46P", - "name": "Archiv", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Infrastructural Facility Management/Archiv" + "name": "Archive (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Infrastructural Facility Management (Central department 4)/Archive (Central department 4)" }, "48323": { "code": "TUZV46Q", - "name": "H\u00f6rsaalvermietung", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Service operation/H\u00f6rsaalvermietung" + "name": "Lecture hall rental (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Service operation (Central department 4)/Lecture hall rental (Central department 4)" }, "48324": { "code": "TUZV40A", - "name": "Controlling and Reporting", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Controlling and Reporting" + "name": "Controlling and Reporting (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Controlling and Reporting (Central department 4)" }, "48337": { "code": "TUZV350", @@ -5081,8 +5081,8 @@ }, "48417": { "code": "TUZV454", - "name": "Sachgebiet Abfallentsorgung/Umwelt", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Disposal and Environment/Abfallentsorgung/Umwelt" + "name": "Sachgebiet Waste disposal/Environment (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Disposal and Environment (Central department 4)/Waste disposal/Environment (Central department 4)" }, "48437": { "code": "TUEIHCR", @@ -5176,8 +5176,8 @@ }, "48622": { "code": "TUZV14Z", - "name": "Versorgungsnetze", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Versorgungsnetze" + "name": "Supply networks (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Supply networks (Central department 4)" }, "48657": { "code": "TUMETBB", @@ -5282,7 +5282,7 @@ "48977": { "code": "TUINF20", "name": "Informatics 9 - Assistant Professorship of Dynamic Vision and Learning (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 9 - Assistant Professorship of Dynamic Vision and Learning (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Dynamic Vision and Learning (N.N.)" }, "49037": { "code": "TUZEIOA", @@ -5541,7 +5541,7 @@ }, "49437": { "code": "TUEDS30", - "name": "Assistant Professorship of Technical Education for Vocational Teaching (Prof. Pittich)", + "name": "Associate Professorship of Technical Education for Vocational Teaching (Prof. Pittich)", "path": "TUM/Schools/Social Sciences and Technology/Departments/Educational Sciences/Technical Education for Vocational Teaching (Prof. Pittich)" }, "49457": { @@ -5586,8 +5586,8 @@ }, "49618": { "code": "TUZVSEU", - "name": "Disposal and Environment", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Disposal and Environment" + "name": "Disposal and Environment (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Disposal and Environment (Central department 4)" }, "49637": { "code": "TUWZLPT", @@ -5612,7 +5612,7 @@ "49717": { "code": "TUINF21", "name": "Informatics 1 - Assistant Professorship of Digital Health (N.N.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 1 - Assistant Professorship of Digital Health (N.N.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Digital Health (N.N.)" }, "49737": { "code": "TUPRB03", @@ -5802,12 +5802,12 @@ "50238": { "code": "TUINF22", "name": "Informatics 5 - Assistant Professorship of Quantum Computing (Prof. Mendl)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 5 - Assistant Professorship of Quantum Computing (Prof. Mendl)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Quantum Computing (Prof. Mendl)" }, "50239": { "code": "TUINF23", "name": "Informatics 7 - Assistant Professorship of Theoretical Foundations of Artificial Intelligence (Prof. Ghoshdastidar)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 7 - Assistant Professorship of Theoretical Foundations of Artificial Intelligence (Prof. Ghoshdastidar)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Theoretical Foundations of Artificial Intelligence (Prof. Ghoshdastidar)" }, "50240": { "code": "TUWZA2B", @@ -5882,7 +5882,7 @@ "50478": { "code": "TUINF24", "name": "Informatics 3 - Assistant Professorship of Database Systems (Prof. Giceva)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 3 - Assistant Professorship of Database Systems (Prof. Giceva)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Database Systems (Prof. Giceva)" }, "50498": { "code": "TUMENW3", @@ -6037,12 +6037,12 @@ "51137": { "code": "TUINF31", "name": "Informatics 15 - Associate Professorship of 3D Artificial Intelligence (Prof. Dai)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 15 - Associate Professorship of 3D Artificial Intelligence (Prof. Dai)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/3D Artificial Intelligence (Prof. Dai)" }, "51157": { "code": "TUINI31", "name": "Informatics 31 - Chair of Artificial Intelligence in Healthcare and Medicine (Prof. R\u00fcckert) (Joint Appointment between TUM School of Medicine and Health und TUM School of Computation, Information and Technology)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 31 - Chair of Artificial Intelligence in Healthcare and Medicine (Prof. R\u00fcckert) (Joint Appointment between TUM School of Medicine and Health und TUM School of Computation, Information and Technology)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Artificial Intelligence in Healthcare and Medicine (Prof. R\u00fcckert) (Joint Appointment between TUM School of Medicine and Health und TUM School of Computation, Information and Technology)" }, "51177": { "code": "TUMEIS2", @@ -6177,7 +6177,7 @@ "51359": { "code": "TUINF26", "name": "Informatics 16 - Assistant Professorship of Healthcare and Rehabilitation Robotics (Prof. Piazza)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 16 - Assistant Professorship of Healthcare and Rehabilitation Robotics (Prof. Piazza)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Healthcare and Rehabilitation Robotics (Prof. Piazza)" }, "51378": { "code": "TUS2RGE", @@ -6207,7 +6207,7 @@ "51419": { "code": "TUINF27", "name": "Informatics 19 - Assistant Professorship of Legal Tech (Prof. Grabmair)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 19 - Assistant Professorship of Legal Tech (Prof. Grabmair)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Legal Tech (Prof. Grabmair)" }, "51457": { "code": "TUZEGNI", @@ -6222,7 +6222,7 @@ "51497": { "code": "TUINF28", "name": "Informatics 9 - Assistant Professorship of Machine Learning for Robotics (Prof. Leutenegger)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 9 - Assistant Professorship of Machine Learning for Robotics (Prof. Leutenegger)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Machine Learning for Robotics (Prof. Leutenegger)" }, "51517": { "code": "TUS4C2M", @@ -6532,7 +6532,7 @@ "51857": { "code": "TUINI32", "name": "Informatics 32 - Chair of Computational Imaging and AI in Medicine (Prof. Schnabel)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 32 - Chair of Computational Imaging and AI in Medicine (Prof. Schnabel)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computational Imaging and AI in Medicine (Prof. Schnabel)" }, "51897": { "code": "TUS1000", @@ -7947,17 +7947,17 @@ "52718": { "code": "TUINH01", "name": "Informatics Heilbronn 1 - Chair of Efficient Algorithms (Prof. Kobourov)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics Heilbronn 1 - Chair of Efficient Algorithms (Prof. Kobourov)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Efficient Algorithms (Prof. Kobourov)" }, "52719": { "code": "TUINH02", "name": "Informatics Heilbronn 2 - Assistant Professorship of Computer Architecture & Operating Systems (Prof. Trinitis komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics Heilbronn 2 - Assistant Professorship of Computer Architecture & Operating Systems (Prof. Trinitis komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Computer Architecture & Operating Systems (Prof. Trinitis komm.)" }, "52720": { "code": "TUINH03", "name": "Informatics Heilbronn 3 - Chair of Software Engineering (Prof. Wagner)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics Heilbronn 3 - Chair of Software Engineering (Prof. Wagner)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering (Prof. Wagner)" }, "52737": { "code": "TUS7RES", @@ -8166,8 +8166,8 @@ }, "53017": { "code": "TUINF33", - "name": "Informatics 24 - Assistant Professorship of Ethics in Systems Design and Machine Learning (Prof. Kilbertus)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 24 - Assistant Professorship of Ethics in Systems Design and Machine Learning (Prof. Kilbertus)" + "name": "Informatics 24 - Assistant Professorship of Ethics in Systems Design and Machine Learning (Prof. Kilbertus)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Ethics in Systems Design and Machine Learning (Prof. Kilbertus)" }, "53018": { "code": "TUXB300", @@ -8507,7 +8507,7 @@ "53357": { "code": "TUINH04", "name": "Informatics Heilbronn 4 - Chair of Computational Mathematics (Prof. Anzt)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics Heilbronn 4 - Chair of Computational Mathematics (Prof. Anzt)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Computational Mathematics (Prof. Anzt)" }, "53358": { "code": "TUS4N7M", @@ -8552,7 +8552,7 @@ "53517": { "code": "TUINI33", "name": "Informatics 33 - Chair of Engineering Resilient Cognitive Systems (Prof. Trapp)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 33 - Chair of Engineering Resilient Cognitive Systems (Prof. Trapp)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Engineering Resilient Cognitive Systems (Prof. Trapp)" }, "53537": { "code": "TUGSSED", @@ -8846,18 +8846,18 @@ }, "53797": { "code": "TUINI35", - "name": "Chair of Informatics 35 - Chair of Perception for Intelligent Systems (Prof. Lilienthal)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 35 - Chair of Perception for Intelligent Systems (Prof. Lilienthal)" + "name": "Informatics 35 - Chair of Perception for Intelligent Systems (Prof. Lilienthal)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Perception for Intelligent Systems (Prof. Lilienthal)" }, "53817": { "code": "TUINH05", - "name": "Informatics Heilbronn 5 - Assistant Professorship of Data Engineering (Prof. Acosta Deibe)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics Heilbronn 5 - Assistant Professorship of Data Engineering (Prof. Acosta Deibe)" + "name": "Informatics Heilbronn 5 - Assistant Professorship of Data Engineering (Prof. Acosta Deibe)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Engineering (Prof. Acosta Deibe)" }, "53818": { "code": "TUINH09", "name": "Informatics Heilbronn 9 - Assistant Professorship of Distributed Systems and Security (Prof. G\u00fcnther komm.)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics Heilbronn 9 - Assistant Professorship of Distributed Systems and Security (Prof. G\u00fcnther komm.)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Distributed Systems and Security (Prof. G\u00fcnther komm.)" }, "53837": { "code": "TUPHEQN", @@ -9027,7 +9027,7 @@ "53997": { "code": "TUINI34", "name": "Informatics 34 - Chair of Information System Development and Operation (Prof. Weber)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 34 - Chair of Information System Development and Operation (Prof. Weber)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Information System Development and Operation (Prof. Weber)" }, "54017": { "code": "TUS2IPD", @@ -9342,7 +9342,7 @@ "54319": { "code": "TUS1300", "name": "Informatics 18 - Assistant Professorship of Decision Analytics (Prof. Etesami)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 18 - Assistant Professorship of Decision Analytics (Prof. Etesami)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Decision Analytics (Prof. Etesami)" }, "54320": { "code": "TUS3003", @@ -9412,17 +9412,17 @@ "54457": { "code": "TUS1302", "name": "Informatics 4 - Assistant Professorship of Software Engineering for Data-intensive Applications (Prof. Stocco)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 4 - Assistant Professorship of Software Engineering for Data-intensive Applications (Prof. Stocco)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering for Data-intensive Applications (Prof. Stocco)" }, "54458": { "code": "TUS1303", "name": "Informatics Heilbronn 7 - Assistant Professorship of Information Systems (Prof. Pufahl)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics Heilbronn 7 - Assistant Professorship of Information Systems (Prof. Pufahl)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Information Systems (Prof. Pufahl)" }, "54477": { "code": "TUS1301", "name": "Informatics 36 - Associate Professorship of Algorithmic Machine Learning & Explainable AI (Prof. Bauer)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics 36 - Associate Professorship of Algorithmic Machine Learning & Explainable AI (Prof. Bauer)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Professorship of Algorithmic Machine Learning & Explainable AI (Prof. Bauer)" }, "54497": { "code": "TUXS112", @@ -9432,7 +9432,7 @@ "54517": { "code": "TUS1304", "name": "Informatics Heilbronn 6 - Chair of Data Analytics and Statistics (Prof. Fraser)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics Heilbronn 6 - Chair of Data Analytics and Statistics (Prof. Fraser)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Data Analytics and Statistics (Prof. Fraser)" }, "54537": { "code": "TUS1CHN", @@ -9707,7 +9707,7 @@ "54817": { "code": "TUS1307", "name": "Informatics Heilbronn 8 - Assistant Professorship of Cyber-Physical Systems (Prof. Alanwar)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics Heilbronn 8 - Assistant Professorship of Cyber-Physical Systems (Prof. Alanwar)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Cyber-Physical Systems (Prof. Alanwar)" }, "54818": { "code": "TUS3006", @@ -10231,58 +10231,58 @@ }, "55297": { "code": "TUZVZTE", - "name": "Zentrale Technik", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik" + "name": "Central Technology (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)" }, "55298": { "code": "TUZVMUC", - "name": "Standort M\u00fcnchen", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen" + "name": "Site Munich (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)" }, "55299": { "code": "TUZVGAR", - "name": "Standort Garching", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Garching" + "name": "Site Garching (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Garching (Central department 4)" }, "55300": { "code": "TUZVWHS", - "name": "Standort Weihenstephan", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan" + "name": "Site Weihenstephan (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)" }, "55301": { "code": "TUZVCIO", - "name": "TUM Campus at the Olympic Park", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort M\u00fcnchen/TUM Campus at the Olympic Park" + "name": "TUM Campus at the Olympic Park (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Munich (Central department 4)/TUM Campus at the Olympic Park (Central department 4)" }, "55302": { "code": "TUZVVUF", - "name": "Public Procurement Law and Floor-Space Management", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Public Procurement Law and Floor-Space Management" + "name": "Public Procurement Law and Floor-Space Management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Public Procurement Law and Floor-Space Management (Central department 4)" }, "55303": { "code": "TUZVPUD", - "name": "Units Processes and Digitization", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Processes and Digitization" + "name": "Units Processes and Digitization (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Processes and Digitization (Central department 4)" }, "55304": { "code": "TUZVPUS", - "name": "Personnel", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Personnel" + "name": "Personnel (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Personnel (Central department 4)" }, "55305": { "code": "TUZVIGM", - "name": "Infrastructural Facility Management", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Facility management Weihenstephan/Infrastructure Weihenstephan/Infrastructural Facility Management" + "name": "Infrastructural Facility Management (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Facility Management Weihenstephan (Central department 4)/Infrastructure Weihenstephan (Central department 4)/Infrastructural Facility Management (Central department 4)" }, "55306": { "code": "TUZVEUM", - "name": "Energy and Media Supply", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Zentrale Technik/Energy and Media Supply" + "name": "Energy and Media Supply (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Central Technology (Central department 4)/Energy and Media Supply (Central department 4)" }, "55307": { "code": "TUZVTPL", - "name": "Technical Project Management Life Sciences", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Standort Weihenstephan/Technical Project Management Life Sciences" + "name": "Technical Project Management Life Sciences (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Site Weihenstephan (Central department 4)/Technical Project Management Life Sciences (Central department 4)" }, "55317": { "code": "TUS4P9N", @@ -10341,8 +10341,8 @@ }, "55417": { "code": "TUZVSOP", - "name": "Special projects", - "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning/Special projects" + "name": "Special projects (Central department 4)", + "path": "TUM/Central Administration/Real Estate Management (Central department 4)/Resource Planning (Central department 4)/Special projects (Central department 4)" }, "55437": { "code": "TUS1310", @@ -10616,13 +10616,13 @@ }, "55937": { "code": "TUS1314", - "name": "Chair of Informatics Heilbronn 11 - Chair of Software Engineering & AI (Prof. Chen)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Informatics Heilbronn 11 - Chair of Software Engineering & AI (Prof. Chen)" + "name": "Informatics Heilbronn 11 - Chair of Software Engineering & AI (Prof. Chen)", + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Science/Software Engineering & AI (Prof. Chen)" }, "55938": { "code": "TUS1315", "name": "Informatics 39 - Associate Professorship of Learning AI for Dextrous Robots (Prof. B\u00e4uml)", - "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Informatics 39 - Associate Professorship of Learning AI for Dextrous Robots (Prof. B\u00e4uml)" + "path": "TUM/Schools/Computation, Information and Technology/Departments/Computer Engineering/Learning AI for Dextrous Robots (Prof. B\u00e4uml)" }, "55957": { "code": "TUXS113", @@ -11088,5 +11088,40 @@ "code": "TUPREXP", "name": "Export Control", "path": "TUM/TUM Board of Management/Export Control" + }, + "56818": { + "code": "TUCSMNR", + "name": "HSWT-Assistant Professorship of Marketing and Management of Biogenic Resources (Prof. Menrad)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing for Biotechnology and Sustainability (TUMCS)/HSWT - Professorships/Marketing and Management of Biogenic Resources (Prof. Menrad)" + }, + "56819": { + "code": "TUCSOAC", + "name": "HSWT-Assistant Professorship of Organic and Analytical Chemistry (Prof. Riepl)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing for Biotechnology and Sustainability (TUMCS)/HSWT - Professorships/Organic and Analytical Chemistry (Prof. Riepl)" + }, + "56820": { + "code": "TUCSEDE", + "name": "HSWT-Assistant Professorship of Environmental Policy and Resource Economics (Prof. Fa\u00dfe)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing for Biotechnology and Sustainability (TUMCS)/HSWT - Professorships/Environmental Policy and Resource Economics (Prof. Fa\u00dfe)" + }, + "56821": { + "code": "TUCSSBE", + "name": "HSWT-Assistant Professorship of Sustainable Business Economics (Prof. R\u00f6der)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing for Biotechnology and Sustainability (TUMCS)/HSWT - Professorships/Sustainable Business Economics (Prof. R\u00f6der)" + }, + "56822": { + "code": "TUCSENT", + "name": "HSWT-Assistant Professorship of Energy Technology (Prof. Kainz)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing for Biotechnology and Sustainability (TUMCS)/HSWT - Professorships/Energy Technology (Prof. Kainz)" + }, + "56823": { + "code": "TUCSBIT", + "name": "HSWT-Assistant Professorship of Bioinformatics (Prof. Grimm)", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing for Biotechnology and Sustainability (TUMCS)/HSWT - Professorships/Bioinformatics (Prof. Grimm)" + }, + "56824": { + "code": "TUCSGTH", + "name": "HSWT-Assistant Professorship of Geothermal Energy", + "path": "TUM/Integrative Research Institutes/TUM Campus Straubing for Biotechnology and Sustainability (TUMCS)/HSWT - Professorships/Geothermal Energy" } } diff --git a/data/external/results/rooms_tumonline.json b/data/external/results/rooms_tumonline.json index b419e65b8..5a6f89db9 100644 --- a/data/external/results/rooms_tumonline.json +++ b/data/external/results/rooms_tumonline.json @@ -23018,20 +23018,20 @@ "street": "Theresienstr. 90", "zip_code": 80333 }, - "alt_name": "N Z2311, Flur", - "arch_name": "N Z2311@0103", + "alt_name": "N Z1311, Aufzug", + "arch_name": "N Z1311@0103", "area_id": 27, "building_id": 563, "floor_level": "1.ZG", "floor_type": "Keine Angabe", - "main_operator_id": 19691, + "main_operator_id": 26064, "seats": { "sitting": null, "standing": null, "wheelchair": null }, - "tumonline_id": 59162, - "usage_id": 222 + "tumonline_id": 59155, + "usage_id": 4 }, "0104.01.401": { "address": { @@ -83109,7 +83109,7 @@ "arch_name": "1351@0503", "area_id": 23, "building_id": 579, - "calendar_resource_nr": 34432, + "calendar_resource_nr": 34472, "floor_level": "1.OG", "floor_type": "Linoleum", "main_operator_id": 15135, From 760400f0d81fb3570aaf1a838011667acbd1934d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 8 Nov 2024 01:54:11 +0000 Subject: [PATCH 3/3] fix(deps): update rust crate tokio to v1.41.1 (#1660) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- server/Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index 44a1a06d2..b7f10564b 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -4324,7 +4324,7 @@ dependencies = [ "indoc", "libc", "memoffset", - "parking_lot 0.12.3", + "parking_lot 0.11.2", "portable-atomic", "pyo3-build-config", "pyo3-ffi", @@ -6259,9 +6259,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.41.0" +version = "1.41.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" +checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" dependencies = [ "backtrace", "bytes",