EDA tool for spatio-temporal data
Project description
GeoViz
GeoViz is an Exploratory Data Analysis tool designed to empower data analysts to visualize and interpret spatio-temporal data. It offers a user-friendly, interactive web interface built on Panel, ensuring simplicity and maximal explainability. The software provides visualizations, including 3D geographical coordinates, seasonality analysis, heatmap displays, and categorization/clustering using Natural Language Processing (NLP). With a focus on simplicity and shareability, GeoViz enhances data analysis for a broader audience.
The documentation can be found at our readthedocs page.
Example Usage
First, install GeoViz:
pip install rrcgeoviz
Once done, run the following command to create an config file through a GUI:
rrcgeoviz --init
The config file is JSON that specifies the data to be looked at and visualized. Here's a sample one:
{
"columns": {
"latitude_column": "latitude",
"longitude_column": "longitude",
"time_column": "date",
"description_column": "description"
},
"features": [
"search_columns",
"month_year_heatmap",
"test_option_name",
"yearly_range",
"one_year",
"all_months",
"one_year_months",
"threeD",
"poi_analysis",
"nlp_bertopics"
],
"caching": {
"cache_results": false,
"use_cache": false
}
}
To create an options.json file you can use something like what is shown above or run
rrcgeoviz --init
Finally, run GeoViz with the following command:
rrcgeoviz path/to/dataset.csv path/to/options.json
A tab should open in your browser with all of the enabled features!
Brief overview of how it works (for contributers)
When running from the command line, the main() function in src/rrcgeoviz/geoviz_cli.py runs. The options and dataset are stored in an Arguments object.
The Arguments object is first passed to the GeneratedData class. The GeneratedData class checks whether to pull data from the cache or not. If it needs new data, then it calls any relevant classes in the DATA_GENERATORS array to make it available. The data is then passed back to the Arguments object as the generateddata attribute.
The Arguments object with the data, options, and generated data is passed to the GeoVizPanelDashboard class. Here, the data is checked (i.e. it is not null, it's in the correct range, etc.) and then the relevant classes in the ALL_FEATURE_CLASSES array are called to create the features for GeoViz. These don't make any data, just render what's there into pretty visualizations.
Here's a general flow of how to add new components:
-
Data Generator: If new data is required (e.g. distance to nearest POI) create a new subclass of the ParentGeneratorClass in src/rrcgeoviz/datagenerators. Look at GeneratorExample for reference. Once it's made, add it to the DATA_GENERATORS array at the top of the src/rrcgeoviz/GeneratedData file.
-
Visualizer: Create the panel component as a subclass of ParentGeovizFeatures in src/rrcgeoviz/features. Look at other features in the directory for a sense of what they look like. Add the new feature to the ALL_FEATURE_CLASSES array at the top of the GeoVizPanelDashboard file.
That's pretty much it!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rrcgeoviz-0.1.4.tar.gz
.
File metadata
- Download URL: rrcgeoviz-0.1.4.tar.gz
- Upload date:
- Size: 44.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 303f82f20f1746f4495a6f88b4d2fb31b03699057474cc77927d42ef626f9d4e |
|
MD5 | 7692a47cd89b35449b6b3ced89878d5b |
|
BLAKE2b-256 | e7491f7dbf4bf71e1184445da710327921bca0cf0b2a4925949c870ec35a6485 |
File details
Details for the file rrcgeoviz-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: rrcgeoviz-0.1.4-py3-none-any.whl
- Upload date:
- Size: 54.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8839a190a8e266949258eaef5cf49cb7acded362d501101fa679f808e73e9dd |
|
MD5 | 9372e8db7f830c9a10c38a915e61bb0a |
|
BLAKE2b-256 | 8bf65ce58df1ef7e73e7223a1e6acf850fe494c0ed7aa1a6b908041d67f7bb3f |