This repository hosts the survey data and website from the survey paper "Hybrid User Interfaces: Past, Present, and Future of Complementary Cross-Device Interaction in Mixed Reality" authored by Sebastian Hubenschmid, Marc Satkowski, Johannes Zagermann, Julián Méndez, Niklas Elmqvist, Steven Feiner, Tiare Feuchtner, Jens Emil Grønbæk, Benjamin Lee, Dieter Schmalstieg, Raimund Dachselt, and Harald Reiterer.
npm installinstalls all the libraries you need to get the app running using the list frompackage.json.npm run buildupdates and exportsindex.html, and the files indist/assetsfor a static website.npm run devthe site locally (localhost) in development mode (updates to src files reload the site).- To deploy to Github Pages, push the
index.htmlon/dist(created bynpm run build) onto thegh-pagesbranch. The folder is in.gitignoreso thatgit checkoutdoes not affect it.
- The
Survey-Info.csvfile contains the core corpus described in the paper. 2. The taxonomy columns accept lists of strings (comma separated), or marks ("x") for values that apply. 3.Name,Year,Authors(comma separated),DOI,Bibtex, andsource(default "handpicked") are required. - Create the config and data json files:
- create-jsons.py describes the survey categories using the
includeProp,categories, andgroupsdictionaries. - Running the script generates survey-data.json and survey-config.json.
WARNING: The script deletes the existing files, if entries have been manually added, they will be lost.
python create-jsons.py -n "Hybrid User Interfaces" -d "Past, Present, and Future of Complementary Cross-Device Interaction in Mixed Reality" -a "Sebastian Hubenschmid, Marc Satkowski, Johannes Zagermann, Julián Méndez, Niklas Elmqvist, Steven Feiner, Tiare Feuchtner, Jens Emil Grønbæk, Benjamin Lee, Dieter Schmalstieg, Raimund Dachselt, Harald Reiterer" -g "https://github.com/imldresden/huis"
- The script prints out warnings for empty fields from the
includePropdictionary. You may use this to enforce value combinations (e.g. "at least one column from group A and one from group B"), or to identify edge cases.
- create-jsons.py describes the survey categories using the
- Note that the "topView" entry of
survey-config.jsonmust be updated to include orcids and further details about citation (see existing versions in the repository). - Build the website as explained in Running the Webpage to see the created entries.
After the 10.12.2025 cut off date, papers should be added by editing the src/data/survey-data.json, under the "data" tag. You can use this template:
"data": [ // array of paper objects
{
"Name" : "[Poster] Visualization of solar radiation data in augmented reality",
"Year" : "2014",
"Bibtex" : "'@INPROCEEDINGS{6948437,\n author={Beatriz Carmo, Maria and Cl\u00e1udio, ....",
"DOI" : "10.1109/ISMAR.2014.6948437",
"Authors": [
"M. Beatriz Carmo; A. P. Cl\u00e1udio; A. Ferreira; A. P. Afonso; ...."
],
"source": "handpicked",
},
]We welcome such updates via pull requests (which can be generated using the website itself, too)!
The website is produced using this survey tool. It is a fork of the Indy Survey Tool from Khoury Vis Lab that differs in style and responsive behavior, which is why it's hosted separately. Big props to them for their initiative!