--- title: "Curriculum Vitae" --- I currently live in Basel and work as a postdoctoral researcher at the University of Freiburg, were I defended my Ph.D. in 2022. Previously, I studied at Bocconi University and completed a traineeship at the European Central Bank. Full CV (PDF) LinkedIn
```{python} #| echo: false import folium ############################################################################### # 1) CREATE THE BASE MAP ############################################################################### m = folium.Map( location=[47.5, 13.0], # A middle point to see southwestern Germany/Switzerland zoom_start=5, tiles=None ) folium.TileLayer( tiles="https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png", attr='Map tiles by CartoDB, ' 'under OpenStreetMap', name="CartoDB Light" ).add_to(m) # folium.TileLayer( # tiles="https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png", # attr='Map tiles by CartoDB, under OpenStreetMap', # name="CartoDB Voyager" # ).add_to(m) # folium.TileLayer( # tiles="https://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}{r}.png", # attr='Map tiles by CartoDB, under OpenStreetMap', # name="CartoDB Positron" # ).add_to(m) # folium.TileLayer( # tiles="https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png", # attr='Map tiles by CartoDB, under OpenStreetMap', # name="CartoDB Dark Matter" # ).add_to(m) ############################################################################### ############################################################################### location_data = { "Freiburg": { "coords": [47.9945, 7.8470], "radius": 10, "fill_opacity": 0.9, "details": [ "", ], }, "Basel": { "coords": [47.5596, 7.5886], "radius": 10, "fill_opacity": 0.9, "details": [ "" ], }, "Donaueschingen": { "coords": [47.9511, 8.4902], "radius": 7, "fill_opacity": 0.9, "details": [ "" ], }, "Milan": { "coords": [45.4511, 9.1886], "radius": 7, "fill_opacity": 0.9, "details": [ "" ], }, "Frankfurt": { "coords": [50.1109, 8.6821], "radius": 7, "fill_opacity": 0.9, "details": [ "" ], }, "Freising": { "coords": [48.4002, 11.7213], "radius": 5, "fill_opacity": 0.9, "details": [ "" ], }, "Konstanz": { "coords": [47.6779, 9.1742], "radius": 5, "fill_opacity": 0.9, "details": [ "" ], }, "Chisinau": { "coords": [47.0105, 28.8638], "radius": 5, "fill_opacity": 0.9, "details": [ "" ], }, } # Add aggregated markers for each location for city, info in location_data.items(): # Build HTML popup details_html = "