diff --git a/research/2024-01-01-community_1.md b/research/2024-01-01-community_1.md new file mode 100644 index 0000000..2e41a81 --- /dev/null +++ b/research/2024-01-01-community_1.md @@ -0,0 +1,18 @@ + +# Foundation + +--- + - name: Jiří Hynek, Jakub Kachlík, Vít Rušňak + - title: Geovisto: A Toolkit for Generic Geospatial Data Visualization + - url: https://www.scitepress.org/Papers/2021/102604/102604.pdf + - github: https://github.com/geovisto/geovisto + - date: 2021 +--- + + +This work describes the basic core of the Geovisto library. + + + + +The motivation for creating the library, the logic of how the library works, and the basic tools and layers are described here. diff --git a/research/2024-01-02-community_2.md b/research/2024-01-02-community_2.md new file mode 100644 index 0000000..05fea0d --- /dev/null +++ b/research/2024-01-02-community_2.md @@ -0,0 +1,13 @@ +# Timeline + +--- + - name: Rykala Kryštof + - title: Web Application for Graphical Visualization of Geospatial Time Series + - article: https://www.fit.vut.cz/study/thesis-file/23499/23499.pdf + - npm: https://www.npmjs.com/package/geovisto-timeline + - github: https://github.com/geovisto/geovisto-timeline + - date: 2021 +--- + + +This article is about timeline tool, which allows the user to see how the data has changed over time. diff --git a/research/2024-01-03-community_3.md b/research/2024-01-03-community_3.md new file mode 100644 index 0000000..579ce82 --- /dev/null +++ b/research/2024-01-03-community_3.md @@ -0,0 +1,14 @@ +# Heat, Dot, Spike and Bubble Layer + +--- + - name: Kašpar Petr + - title: Web Application for Visualization of Values in Geographical Coordinates + - article: https://www.fit.vut.cz/study/thesis-file/23900/23900.pdf + - npm: https://www.npmjs.com/package/geovisto-layer-heat, https://www.npmjs.com/package/geovisto-layer-dot, https://www.npmjs.com/package/geovisto-layer-spike, https://www.npmjs.com/package/geovisto-layer-bubble + - github: https://github.com/geovisto/geovisto-layer-heat, https://github.com/geovisto/geovisto-layer-dot, https://github.com/geovisto/geovisto-layer-spike, https://github.com/geovisto/geovisto-layer-bubble + - excel: https://excel.fit.vutbr.cz/submissions/2021/054/54.pdf + - date: 2021 +--- + + +This article is about timeline tool, which allows the user to see how the data has changed over time. diff --git a/research/2024-01-04-community_4.md b/research/2024-01-04-community_4.md new file mode 100644 index 0000000..09df605 --- /dev/null +++ b/research/2024-01-04-community_4.md @@ -0,0 +1,10 @@ +# Hierarchy and Geo-Downloader Tool + +--- + - name: Malý Vojtěch + - title: Web Graphical Visualization of Hierachical Geographical Data + - article: https://www.fit.vut.cz/study/thesis-file/24395/24395.pdf + - npm: https://www.npmjs.com/package/geovisto-hierarchy, https://www.npmjs.com/package/geovisto-geo-downloader + - github: https://github.com/geovisto/geovisto-hierarchy, https://github.com/geovisto/geovisto-geo-downloader + - date: 2022 +--- \ No newline at end of file diff --git a/research/2024-01-05-community_5.md b/research/2024-01-05-community_5.md new file mode 100644 index 0000000..058388e --- /dev/null +++ b/research/2024-01-05-community_5.md @@ -0,0 +1,10 @@ +# Legend and Info Tool + +--- + - name: Koscielniak Tomáš + - title: Usability Improvement of Geovisto Library + - article: https://www.fit.vut.cz/study/thesis-file/24671/24671.pdf + - npm: https://www.npmjs.com/package/geovisto-legend, https://www.npmjs.com/package/geovisto-info + - github: https://github.com/geovisto/geovisto-legend, https://github.com/geovisto/geovisto-info + - date: 2022 +--- \ No newline at end of file diff --git a/research/author.yml b/research/author.yml new file mode 100644 index 0000000..d2b7cb0 --- /dev/null +++ b/research/author.yml @@ -0,0 +1,14 @@ +type Tag = string | {label: string; permalink: string}; + +// An author key references an author from the global plugin authors.yml file +type AuthorKey = string; + +type Author = { + key?: AuthorKey; + name: string; + title?: string; + url?: string; +}; + +// The front matter authors field allows various possible shapes +type Authors = AuthorKey | Author | (AuthorKey | Author)[]; \ No newline at end of file