Skip to main content

2D visualization and plotting tools for geospatial data

Project description

PyEarthViz

DOI

A lightweight Python package for 2D visualization and plotting of geospatial and Earth science data.

Note: PyEarthViz is part of the PyEarthSuite ecosystem. The original PyEarth package has been restructured into several specialized packages to keep each package lightweight and focused:

  • pyearth - Core GIS operations, spatial toolbox, and system utilities
  • pyearthviz - 2D visualization utilities
  • pyearthviz3d - 3D visualization with GeoVista
  • pyearthriver - River network graph algorithms and data structures
  • pyearthmesh - Mesh generation and manipulation tools (currently not implemented)
  • pyearthhelp - Helper utilities for data access (NWIS, NLDI, GSIM) and HPC operations

This modular approach allows you to install only what you need while maintaining the ability to use all packages together.

About PyEarthViz

PyEarthViz is designed to be lightweight, versatile, and reliable for creating publication-quality 2D visualizations of geospatial and scientific data. It provides a comprehensive suite of plotting functions built on top of matplotlib and cartopy, with specialized tools for:

  • Geographic mapping and spatial data visualization
  • Time series analysis and plotting
  • Statistical plots (scatter, histogram, box plots, etc.)
  • Advanced plot types (ridge plots, ladder plots, animations)
  • Customizable color schemes and styling

If you find this package useful, please cite it in your work. You can also support it by buying me a coffee or sponsoring it on GitHub.

Dependency

PyEarthViz depends on the following packages:

Required:

  1. numpy - numerical computing
  2. matplotlib - 2D plotting library
  3. cartopy - geospatial data processing and mapping
  4. gdal - geospatial data abstraction library
  5. pandas - data manipulation and analysis
  6. scipy - scientific computing
  7. statsmodels - statistical modeling
  8. pyearth - core GIS operations and spatial utilities

Documentation

Please refer to the documentation for details on how to get started using the PyEarthViz package.

Installation

PyEarthViz depends on several packages, including GDAL and Cartopy, which can be challenging to install through pip alone. You are recommended to use conda to install dependencies:

# Install from conda (recommended)
conda install pyearthviz

# Or install from pip (requires GDAL and Cartopy pre-installed)
pip install pyearthviz

Building from Source

PyEarthViz uses modern pyproject.toml configuration. To build from source:

# Clone the repository
git clone https://github.com/changliao1025/pyearthviz.git
cd pyearthviz

# Install dependencies using conda
conda install numpy matplotlib cartopy gdal pandas scipy statsmodels

# Install pyearth (required dependency)
conda install pyearth

# Build and install (modern way)
pip install -e .

# Or build a distributable package
pip install build
python -m build

Content

PyEarthViz provides specialized visualization functions organized into several categories:

1. Map Module

Comprehensive geospatial visualization tools:

  • Raster mapping: Visualize GeoTIFF, NetCDF, and other raster formats
  • Vector mapping: Plot points, lines, and polygons with custom styling
  • Multi-layer maps: Combine multiple vector datasets
  • Study area visualization: Create publication-ready maps with custom projections
  • Animation: Create animated visualizations of temporal geospatial data
  • Zebra frame: Add professional zebra-striped coordinate frames

2. Time Series Module

Specialized time series plotting functions:

  • Basic time series: Single and multiple variable plotting
  • Temporal analysis: Monthly aggregations, multi-resolution displays
  • Two y-axis plots: Compare variables with different scales
  • Variation plots: Display mean with confidence intervals or ranges
  • 3D time series: Three-dimensional temporal visualizations with fill
  • Zoom capabilities: Create inset zoom windows for detailed views

3. Scatter Module

Advanced scatter plot functions:

  • Basic scatter plots: Single and multiple dataset visualization
  • Density scatter: Color-coded point density for large datasets
  • LOWESS smoothing: Local regression trend lines
  • Multi-dataset density: Compare multiple datasets with density visualization

4. Histogram Module

Statistical distribution visualization:

  • Histogram plots: Standard and customized histograms
  • CDF plots: Cumulative distribution functions
  • Combined plots: Histogram with overlaid CDF
  • Multiple distributions: Compare multiple datasets

5. Box Plot Module

Distribution comparison tools:

  • Standard box plots: Single and multiple variable comparisons
  • Reference lines: Add benchmark or threshold lines
  • Grouped comparisons: Compare distributions across categories

6. Bar Plot Module

Categorical data visualization:

  • Standard bar plots: Single and grouped bar charts
  • Stacked bar plots: Show composition of categories
  • Reference comparisons: Compare against baseline or target values

7. Ridge Plot Module

Distribution visualization for multiple groups:

  • Density ridge plots: Overlapping density plots for comparing distributions

8. Ladder Plot Module

Specialized time series visualization:

  • Ladder plots: Stepped visualization for discrete temporal data

9. Animation Module

Create animated visualizations:

  • Polygon animations: Animate changes in polygon geometries over time

10. Color Module

Color scheme utilities:

  • Diverging colors: Create diverging color schemes for highlighting differences
  • Qualitative colors: Generate distinct colors for categorical data
  • Colormap selection: Choose appropriate colormaps for different data types
  • N-color selection: Generate N evenly-spaced colors

11. Utility Functions

Supporting functions for all plot types:

  • Tick spacing: Calculate optimal tick spacing for axes
  • Line styles: Create custom line style configurations
  • Formatters: Custom axis formatters for special data types
  • XY plotting: General-purpose XY data plotting

Related Packages in EarthSuite

PyEarthViz works seamlessly with other EarthSuite packages:

Acknowledgment

This research was supported as part of the Next Generation Ecosystem Experiments-Tropics, funded by the U.S. Department of Energy, Office of Science, Office of Biological and Environmental Research at Pacific Northwest National Laboratory. The study was also partly supported by U.S. Department of Energy Office of Science Biological and Environmental Research through the Earth and Environmental System Modeling program as part of the Energy Exascale Earth System Model (E3SM) project.

License

Copyright © 2022, Battelle Memorial Institute

  1. Battelle Memorial Institute (hereinafter Battelle) hereby grants permission to any person or entity lawfully obtaining a copy of this software and associated documentation files (hereinafter "the Software") to redistribute and use the Software in source and binary forms, with or without modification. Such person or entity may use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software and may permit others to do so, subject to the following conditions:
  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  • Other than as used herein, neither the name Battelle Memorial Institute or Battelle may be used in any form whatsoever without the express written consent of Battelle.

  1. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BATTELLE OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

References

If you make use of PyEarthViz in your work, please consider including a reference to the following:

PyEarthViz is supporting several research projects and publications, including:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyearthviz-0.1.1.tar.gz (96.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyearthviz-0.1.1-py3-none-any.whl (148.1 kB view details)

Uploaded Python 3

File details

Details for the file pyearthviz-0.1.1.tar.gz.

File metadata

  • Download URL: pyearthviz-0.1.1.tar.gz
  • Upload date:
  • Size: 96.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for pyearthviz-0.1.1.tar.gz
Algorithm Hash digest
SHA256 04ccccb7bd8b0cd7ba76fcd3075cbf78df97b942829102b45d2d68961eb10c18
MD5 d13cf18c340c24afa47fc646a4040d4f
BLAKE2b-256 3d0c3cc000efbeded39ce1eaab54c30d7e938be5f970eadf0f39e7e286cd927a

See more details on using hashes here.

File details

Details for the file pyearthviz-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pyearthviz-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 148.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for pyearthviz-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ce1674ee743f05014b94db994f9a5142f186b40fb4f25f52eb0f57e3296895bd
MD5 33ca23a8174342e5c88372586ee1de4d
BLAKE2b-256 32f5841adf04d27b7ea84fa83f2d26aff9da860cc3f3f360c275935e9c476c84

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page