-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|
||
|
||
<!-- truncate --> | ||
|
||
The motivation for creating the library, the logic of how the library works, and the basic tools and layers are described here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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)[]; |