diff --git a/README.md b/README.md
index 45d3575..c93546f 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,28 @@ Additionally, there is a [Zotero group library](https://www.zotero.org/groups/54
- TODO Data models, including field names, descriptions, and controlled values, should be clearly documented in a static document that is maintained with the data and is part of the products.
- TODO All rights and intellectual property issues should be clearly documented. Where possible, data and products should be released under open licenses (Creative Commons, GNU, BSD, MPL).
+## Installation
+
+To run the analysis locally, create a new `conda` environment based on the `environment.yml` file.
+
+```bash
+conda env create -f environment.yml
+```
+
+Activate the environment.
+
+```bash
+conda activate maxvogt
+```
+
+Open the Jupyter Notebook platform.
+
+```bash
+jupyter notebook
+```
+
+Pick a notebook to start the spatial analysis for one of Max Vogt's buildings.
+
## Use
These data are openly available to everyone and can be used for any research or educational purpose. If you use this data in your research, please cite as specified in [CITATION.cff](CITATION.cff). The following citation formats are also available through _Zenodo_:
diff --git a/_quarto.yml b/_quarto.yml
index 3d85977..0e9c9ba 100644
--- a/_quarto.yml
+++ b/_quarto.yml
@@ -28,6 +28,9 @@ website:
href: index.qmd
- text: Project
href: about.md
+ - text: maxvogt Collection
+ href: https://mtwente.github.io/maxvogt
+ target: '_blank'
sidebar:
contents:
@@ -53,10 +56,12 @@ website:
format:
html:
toc: true
- theme: cosmo
+ theme:
+ light: [cosmo, styles.css]
code-copy: true
code-overflow: wrap
- css: styles.css
+ mainfont: Jost
+ link-external-newwindow: true
freeze: true
diff --git a/about.md b/about.md
index dced4fe..a61ead3 100644
--- a/about.md
+++ b/about.md
@@ -5,8 +5,7 @@
:::: {.columns}
::: {.column width="45%"}
-**Moritz Twente**
-studied urban planning (B.Sc.) at Bauhaus-Universität Weimar and Northern European Studies (B.A.) at Humboldt-Universität zu Berlin. His research interest lies in the role of politics at the intersection of space, design and the built environment. He works as data steward at Stadt.Geschichte.Basel and is enrolled in the Political Science and Digital Humanities programmes (M.A.) at Universität Basel.
+[**Moritz Twente**](https://orcid.org/0009-0005-7187-9774) studied urban planning (B.Sc.) at Bauhaus-Universität Weimar and Northern European Studies (B.A.) at Humboldt-Universität zu Berlin. His research interest lies in the role of politics at the intersection of space, design and the built environment. He works as data steward at [Stadt.Geschichte.Basel](https://www.stadtgeschichtebasel.ch/) and is enrolled in the Political Science and Digital Humanities programmes (M.A.) at Universität Basel.
:::
@@ -17,8 +16,7 @@ studied urban planning (B.Sc.) at Bauhaus-Universität Weimar and Northern Europ
:::
::: {.column width="45%"}
-**Luisa Omonsky**
-is working as a research assistant in the interdisciplinary DFG-project 'Wohnen im Denkmal' (Living in a Monument) at Technische Universität Wien in cooperation with Bauhaus-Universität Weimar. She graduated from the Urban Planning programme (B.Sc.) at Bauhaus-Universität Weimar and Heritage Conservation programme (M.A.) at Otto-Friedrich-Universität Bamberg, additionally studying in the Art History programme (M.A.). Her research interests include 20^th^ century architecture, especially post-war modernism and post-modernism.
+[**Luisa Omonsky**](https://orcid.org/0009-0007-7402-7993) is working as a research assistant in the interdisciplinary DFG-project ['Wohnen im Denkmal'](https://denkmalpflege.tuwien.ac.at/index.php/forschungsprojekt-wohnen-im-denkmal/) (Living in a Monument) at Technische Universität Wien in cooperation with Bauhaus-Universität Weimar. She graduated from the Urban Planning programme (B.Sc.) at Bauhaus-Universität Weimar and Heritage Conservation programme (M.A.) at Otto-Friedrich-Universität Bamberg, additionally studying in the Art History programme (M.A.). Her research interests include 20^th^ century architecture, especially post-war modernism and post-modernism.
:::
@@ -30,14 +28,14 @@ _maxvogt-analysis_ contains research data – mainly geodata and Jupyter Notebo
The analyis is split up in Jupyter Notebooks that are available in this repository and can be launched either locally or using Binder.
-The most important tool used for the spatial analysis is **momepy**[^1] by Martin Fleischmann and James Gaboardi. See the documentation for momepy examples and tutorials.
+The most important tool used for the spatial analysis is **momepy**[^1] by Martin Fleischmann and James Gaboardi. See the [documentation](https://docs.momepy.org/en/stable/index.html) for momepy examples and tutorials.
-[^1]: Fleischmann, M. (2019) ‘momepy: Urban Morphology Measuring Toolkit’, Journal of Open Source Software, 4(43), p. 1807. doi: 10.21105/joss.01807.
+[^1]: Fleischmann, M. (2019) ‘momepy: Urban Morphology Measuring Toolkit’, Journal of Open Source Software, 4(43), p. 1807. [doi: 10.21105/joss.01807](https://joss.theoj.org/papers/10.21105/joss.01807).
-Geodata used for the analysis is retrieved from OpenStreetMap using the **OSMnx**[^2] package by Geoff Boeing. See readthedocs.io for documentation.
+Geodata used for the analysis is retrieved from OpenStreetMap using the **OSMnx**[^2] package by Geoff Boeing. See [readthedocs.io](https://osmnx.readthedocs.io/en/stable/) for documentation.
-[^2]: Boeing, G. (2024). Modeling and Analyzing Urban Networks and Amenities with OSMnx. Working paper. https://geoffboeing.com/publications/osmnx-paper/
+[^2]: Boeing, G. (2024). Modeling and Analyzing Urban Networks and Amenities with OSMnx. Working paper. [https://geoffboeing.com/publications/osmnx-paper/](https://geoffboeing.com/publications/osmnx-paper/)
## Project Report
-See mtwente.github.io/maxvogt for a collection of buildings and smaller physical structures designed by Max Vogt. There, results of the analyses in this repository are available as collection items. For each object, a short description is provided with information on the object's spatial context and its design features from an urban design perspective.
+See [mtwente.github.io/maxvogt](https://mtwente.github.io/maxvogt) for a collection of buildings and smaller physical structures designed by Max Vogt. There, results of the analyses in this repository are available as collection items. For each object, a short description is provided with information on the object's spatial context and its design features from an urban design perspective.
diff --git a/example.env b/example.env
deleted file mode 100644
index 13d0f68..0000000
--- a/example.env
+++ /dev/null
@@ -1 +0,0 @@
-ENV_VAR="Value"
diff --git a/fonts/LICENSE-OFL.md b/fonts/LICENSE-OFL.md
new file mode 100644
index 0000000..39298ef
--- /dev/null
+++ b/fonts/LICENSE-OFL.md
@@ -0,0 +1,82 @@
+Copyright 2020 The Jost Project Authors (https://github.com/indestructible-type/Jost)
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
+
+# SIL OPEN FONT LICENSE
+
+Version 1.1 - 26 February 2007
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting — in part or in whole — any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1. Neither the Font Software nor any of its individual components,
+ in Original or Modified Versions, may be sold by itself.
+
+2. Original or Modified Versions of the Font Software may be bundled,
+ redistributed and/or sold with any software, provided that each copy
+ contains the above copyright notice and this license. These can be
+ included either as stand-alone text files, human-readable headers or
+ in the appropriate machine-readable metadata fields within text or
+ binary files as long as those fields can be easily viewed by the user.
+
+3. The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+ Software shall not be used to promote, endorse or advertise any
+ Modified Version, except to acknowledge the contribution(s) of the
+ Copyright Holder(s) and the Author(s) or with their explicit written
+ permission.
+
+4. The Font Software, modified or unmodified, in part or in whole,
+ must be distributed entirely under this license, and must not be
+ distributed under any other license. The requirement for fonts to
+ remain under this license does not apply to any document created
+ using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/fonts/jost-v15-latin-600.woff2 b/fonts/jost-v15-latin-600.woff2
new file mode 100644
index 0000000..0d89a31
Binary files /dev/null and b/fonts/jost-v15-latin-600.woff2 differ
diff --git a/fonts/jost-v15-latin-600italic.woff2 b/fonts/jost-v15-latin-600italic.woff2
new file mode 100644
index 0000000..83de0b9
Binary files /dev/null and b/fonts/jost-v15-latin-600italic.woff2 differ
diff --git a/fonts/jost-v15-latin-700.woff2 b/fonts/jost-v15-latin-700.woff2
new file mode 100644
index 0000000..2d35154
Binary files /dev/null and b/fonts/jost-v15-latin-700.woff2 differ
diff --git a/fonts/jost-v15-latin-700italic.woff2 b/fonts/jost-v15-latin-700italic.woff2
new file mode 100644
index 0000000..78dac00
Binary files /dev/null and b/fonts/jost-v15-latin-700italic.woff2 differ
diff --git a/fonts/jost-v15-latin-italic.woff2 b/fonts/jost-v15-latin-italic.woff2
new file mode 100644
index 0000000..fda9cab
Binary files /dev/null and b/fonts/jost-v15-latin-italic.woff2 differ
diff --git a/fonts/jost-v15-latin-regular.woff2 b/fonts/jost-v15-latin-regular.woff2
new file mode 100644
index 0000000..bfd49da
Binary files /dev/null and b/fonts/jost-v15-latin-regular.woff2 differ
diff --git a/styles.css b/styles.css
index 2ddf50c..51692bb 100644
--- a/styles.css
+++ b/styles.css
@@ -1 +1,85 @@
/* css styles */
+
+/* jost-regular - latin */
+@font-face {
+ font-display: swap;
+ /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+ font-family: 'Jost';
+ font-style: normal;
+ font-weight: 400;
+ src: url('fonts/jost-v15-latin-regular.woff2') format('woff2');
+ /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* jost-italic - latin */
+@font-face {
+ font-display: swap;
+ /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+ font-family: 'Jost';
+ font-style: italic;
+ font-weight: 400;
+ src: url('fonts/jost-v15-latin-italic.woff2') format('woff2');
+ /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* jost-600 - latin */
+@font-face {
+ font-display: swap;
+ /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+ font-family: 'Jost';
+ font-style: normal;
+ font-weight: 600;
+ src: url('fonts/jost-v15-latin-600.woff2') format('woff2');
+ /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* jost-600italic - latin */
+@font-face {
+ font-display: swap;
+ /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+ font-family: 'Jost';
+ font-style: italic;
+ font-weight: 600;
+ src: url('fonts/jost-v15-latin-600italic.woff2') format('woff2');
+ /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* jost-700 - latin */
+@font-face {
+ font-display: swap;
+ /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+ font-family: 'Jost';
+ font-style: normal;
+ font-weight: 700;
+ src: url('fonts/jost-v15-latin-700.woff2') format('woff2');
+ /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* jost-700italic - latin */
+@font-face {
+ font-display: swap;
+ /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+ font-family: 'Jost';
+ font-style: italic;
+ font-weight: 700;
+ src: url('fonts/jost-v15-latin-700italic.woff2') format('woff2');
+ /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/*-- scss:defaults --*/
+
+.navbar a:hover {
+ color: inherit;
+ text-decoration: underline;
+ text-decoration-color: #c61818;
+ text-decoration-thickness: 3px;
+}
+
+.navbar li.nav-item a.nav-link {
+ color: #181818;
+}
+
+::selection {
+ color: white;
+ background-color: #2d327d;
+}