Skip to content

Commit

Permalink
research blog
Browse files Browse the repository at this point in the history
  • Loading branch information
avi278 committed May 1, 2024
1 parent d4e54bd commit 8f768e7
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 0 deletions.
18 changes: 18 additions & 0 deletions research/2024-01-01-community_1.md
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.
13 changes: 13 additions & 0 deletions research/2024-01-02-community_2.md
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.
14 changes: 14 additions & 0 deletions research/2024-01-03-community_3.md
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.
10 changes: 10 additions & 0 deletions research/2024-01-04-community_4.md
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
---
10 changes: 10 additions & 0 deletions research/2024-01-05-community_5.md
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
---
14 changes: 14 additions & 0 deletions research/author.yml
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)[];

0 comments on commit 8f768e7

Please sign in to comment.