Skip to content

changliao1025/uraster

Repository files navigation

DOI License geovista Binder

URaster: Structured Raster to Unstructured Mesh

Overview

URaster is a Python package to convert structured raster datasets into unstructured mesh structure, designed to bridge the gap between structured raster datasets and unstructured mesh-based hydrologic and land surface models. It leverages GDAL/OGR for robust data handling.

✨ Core Features

  • GDAL-Native Vector Handling: Uses the standard GDAL/OGR engine for defining unstructured mesh cells, and performing projection-aware geospatial operations. It also support mesh cells that cross the International Date Line (IDL).

  • Standard Vector I/O: Instead of directly operating on various mesh standards, it utilizes standard geographic information system vector formats (e.g., GeoJSON) for mesh operations, ensuring broad compatibility. It supports transformation APIs between existing meshes and standard vector formats.

  • Projection-Aware Operations: Handles (raster dateaset) map projection differences to ensure accurate aggregation of raster values within each polygon.

  • Interactive GeoVista API: Offers simple functions to visualize the input and the output vector layers on a 3D sphere.

Static visualization of the unstructured mesh on a sphere using GeoVista: Unstructured Mesh Visualization

Animated visualization of the unstructured raster on a sphere using GeoVista: Unstructured Raster Visualization

💻 Installation

URaster requires GDAL for vector handling and GeoVista (which relies on PyVista/VTK) for 3D visualization.

⚠️ GDAL Note: Installing GDAL's Python bindings can be complex via pip due to platform dependencies. We strongly recommend using Conda for a stable installation of GDAL and all dependencies.

Install via Conda (Recommended)

# Create a new conda environment (recommended)
conda create -n uraster-env python=3.10
conda activate uraster-env

# Install uraster and all dependencies via conda
conda install -c conda-forge uraster

🚀 Quick Start

Quickstart documentation

Example datasets are provided through the GitHub repository: URaster Example Data on GitHub

📚 Documentation

📊 Supported Formats

  • Mesh formats: GeoJSON, Shapefile, any OGR-supported vector format
  • Raster formats: GeoTIFF, NetCDF, HDF5, any GDAL-supported raster format
  • Output formats: Vectors (with computed statistics), PNG/JPG (visualizations), MP4/GIF (animations)

🙏 Acknowledgments

The model described in this repository was supported by the following:

  • the U.S. Department of Energy Office of Science Biological and Environmental Research through the Earth System Development program as part of the Energy Exascale Earth System Model (E3SM) project.

  • the Earth System Model Development and Regional and Global Model Analysis program areas of the U.S. Department of Energy, Office of Science, Biological and Environmental Research program as part of the multi-program, collaborative Integrated Coastal Modeling (ICoM) project.

  • the Earth System Model Development and Regional and Global Model Analysis program areas of the U.S. Department of Energy, Office of Science, Biological and Environmental Research program as part of the multi-program, collaborative Interdisciplinary Research for Arctic Coastal Environments (InteRFACE) project.

A portion of this research was performed using PNNL Research Computing at Pacific Northwest National Laboratory.

PNNL is operated for DOE by Battelle Memorial Institute under contract DE-AC05-76RL01830.

🤝 Contributing & License

We welcome contributions! Please open an issue or submit a pull request on the GitHub repository.

uraster is distributed under the BSD 3-Clause License.