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, create an options.json file for your spatio-temporal CSV dataset. Here's a basic example:
{
"columns": {
"latitude_column": "latitude",
"longitude_column": "longitude",
"time_column": "date"
},
"features": [
"month_year_heatmap",
"test_option_name",
"yearly_range",
"one_year",
"all_months",
"one_year_months",
"threeD",
"nlp_clustering"
],
"features_customizations": {
"hover_text_columns": [
"victim"
],
"filter_one_year_column": "victim"
},
}
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 for it to store. 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:
- 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.
- If a new data generator was made, add it to the DATA_GENERATORS array at the top of the GeneratedData file.
- 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.1.tar.gz
.
File metadata
- Download URL: rrcgeoviz-0.1.1.tar.gz
- Upload date:
- Size: 41.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6a9e70559d9da1e9ba0ca5a80d9c7c5c5f6b33f5b2c5e605d7277a41de1787d |
|
MD5 | 56c2b6694f0a861e5964f3b3807ba915 |
|
BLAKE2b-256 | c407f1fc317cfd484b03f1d7716879f33b4013a39941bf29d3e59f72dea67cca |
File details
Details for the file rrcgeoviz-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: rrcgeoviz-0.1.1-py3-none-any.whl
- Upload date:
- Size: 45.4 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 | e4474b4b53045701d45e11714953d87826bec74587bccc58d567c698b8a92544 |
|
MD5 | 3492e4007d07e97129c4dc058fb39eb0 |
|
BLAKE2b-256 | 775d4aba86aa5b3205531e4e1401597fadebf20f70c30e367d8516859ea61382 |