Cartographic rendering and mesh analytics powered by PyVista
Project description
Cartographic rendering and mesh analytics powered by PyVista
⚙️ CI | |
📈 Health | |
✨ Meta | |
📦 Package | |
🧰 Repo | |
🛡️ Status | |
Philisophy
The goal of GeoVista is simple; to complement PyVista with a convenient cartographic capability.
In this regard, from a design perspective we aim to keep GeoVista as pure to PyVista as possible i.e., minimise specialisation as far as practically possible in order to maximise native compatibility within the PyVista and VTK ecosystems.
We intend GeoVista to be a cartographic gateway into the powerful world of PyVista, and all that it offers.
GeoVista is intentionally agnostic to packages such as geopandas, iris, xarray et al, which specialise in preparing your spatial data for visualisation. Rather, we delagate that responsibility and choice of tool to you the user, as we want GeoVista to remain as flexible and open-ended as possible to the entire Scientific Python community.
Simply put, "GeoVista is to PyVista", as "Cartopy is to Matplotlib". Well, that's the aspiration.
Installation
GeoVista is available on both conda-forge and PyPI.
We recommend using conda
to install GeoVista 👍
Conda
GeoVista is available on conda-forge, and can be easily installed with conda:
conda install -c conda-forge geovista
or alternatively with mamba:
mamba install -c conda-forge geovista
For more information see our conda-forge feedstock.
Pip
GeoVista is available on PyPI:
pip install geovista
Developer
First, clone the GeoVista GitHub repository:
git clone git@github.com:bjlittle/geovista.git
Change to the root directory:
cd geovista
Create the geovista-dev
conda environment for your preferred platform and Python version e.g.,
conda create -n geovista-dev --file requirements/locks/py310-lock-linux-64.txt
Note that, the requirements/locks
directory contains fully resolved conda package environments, which are automatically updated on a weekly basis. Alternatively, simply:
conda env create --file requirements/geovista.yml
Now activate the environment and install the main
development branch of GeoVista:
conda activate geovista-dev
pip install --no-deps --editable .
Finally, you're good to roll 🥳
Quick Start
GeoVista comes with various pre-canned resources to help get you started on your visualisation journey.
Resources
GeoVista makes use of various resources, such as rasters, VTK meshes, Natural Earth features, and sample model data.
If you want to download and cache all registered GeoVista resources to make them available offline, simply:
geovista download --all
Alternatively, just leave GeoVista to download resources on-the-fly, as and when she needs them.
To view the list of registered resources, simply:
geovista download --list
Want to know more?
geovista download --help
Plotting Examples
Let's explore a sample of various oceanographic and atmospheric model data using GeoVista.
WAVEWATCH III
First, let's render a WAVEWATCH III (WW3) unstructured triangular mesh, with 10m Natural Earth coastlines and a 1:50m Natural Earth Cross-Blended Hypsometric Tints base layer.
🗒
import geovista as gv
from geovista.pantry import ww3_global_tri
import geovista.theme
# Load the sample data.
sample = ww3_global_tri()
# Create the mesh from the sample data.
mesh = gv.Transform.from_unstructured(
sample.lons, sample.lats, connectivity=sample.connectivity, data=sample.data
)
# Plot the mesh.
plotter = gv.GeoPlotter()
sargs = dict(title=f"{sample.name} / {sample.units}")
plotter.add_mesh(
mesh, cmap="balance", show_edges=True, edge_color="grey", scalar_bar_args=sargs
)
plotter.add_base_layer(texture=gv.natural_earth_hypsometric())
plotter.add_coastlines(resolution="10m")
plotter.view_xy(negative=True)
plotter.add_axes()
plotter.show()
Finite Volume Community Ocean Model
Now, let's visualise the bathymetry of the Plymouth Sound and Tamar River from an FVCOM unstructured mesh, as kindly provided by the Plymouth Marine Laboratory.
🗒
import geovista as gv
from geovista.pantry import fvcom_tamar
import geovista.theme
# Load the sample data.
sample = fvcom_tamar()
# Create the mesh from the sample data.
mesh = gv.Transform.from_unstructured(
sample.lons,
sample.lats,
connectivity=sample.connectivity,
data=sample.face,
name="face",
clean=False,
)
# Warp the mesh nodes by the bathymetry.
mesh.point_data["node"] = sample.node
mesh.compute_normals(cell_normals=False, point_normals=True, inplace=True)
mesh.warp_by_scalar(scalars="node", inplace=True, factor=2e-5)
# Plot the mesh.
plotter = gv.GeoPlotter()
sargs = dict(title=f"{sample.name} / {sample.units}")
plotter.add_mesh(mesh, cmap="balance", scalar_bar_args=sargs)
plotter.add_axes()
plotter.show()
CF UGRID
Local Area Model
Initial projection support is available within GeoVista for Cylindrical and Pseudo-Cylindrical projections. As GeoVista matures and stabilises, we'll aim to complement this capability with other classes of projections, such as Azimuthal and Conic.
In the meantime, let's showcase our basic projection support with some high-resolution unstructured Local Area Model (LAM) data reprojected to Mollweide using a PROJ string, with a 1:50m Natural Earth Cross-Blended Hypsometric Tints base layer.
🗒
import geovista as gv
from geovista.pantry import lam_pacific
import geovista.theme
# Load the sample data.
sample = lam_pacific()
# Create the mesh from the sample data.
mesh = gv.Transform.from_unstructured(
sample.lons,
sample.lats,
connectivity=sample.connectivity,
data=sample.data,
)
# Plot the mesh on a mollweide projection using a Proj string.
plotter = gv.GeoPlotter(crs="+proj=moll")
sargs = dict(title=f"{sample.name} / {sample.units}")
plotter.add_mesh(mesh, cmap="balance", scalar_bar_args=sargs)
plotter.add_base_layer(texture=gv.natural_earth_hypsometric())
plotter.add_axes()
plotter.view_xy()
plotter.show()
Using the same unstructured LAM data, reproject to Equidistant Cylindrical but this time using a Cartopy Plate Carrée CRS, also with a 1:50m Natural Earth Cross-Blended Hypsometric Tints base layer.
🗒
import cartopy.crs as ccrs
import geovista as gv
from geovista.pantry import lam_pacific
import geovista.theme
# Load the sample data.
sample = lam_pacific()
# Create the mesh from the sample data.
mesh = gv.Transform.from_unstructured(
sample.lons,
sample.lats,
connectivity=sample.connectivity,
data=sample.data,
)
# Plot the mesh on a Plate Carrée projection using a cartopy CRS.
plotter = gv.GeoPlotter(crs=ccrs.PlateCarree(central_longitude=180))
sargs = dict(title=f"{sample.name} / {sample.units}")
plotter.add_mesh(mesh, cmap="balance", scalar_bar_args=sargs)
plotter.add_base_layer(texture=gv.natural_earth_hypsometric())
plotter.add_axes()
plotter.view_xy()
plotter.show()
LFRic Cube-Sphere
Now render a Met Office LFRic C48 cube-sphere unstructured mesh of Sea Surface Temperature data on a Robinson projection using an ESRI SRID.
🗒
import geovista as gv
from geovista.pantry import lfric_sst
import geovista.theme
# Load the sample data.
sample = lfric_sst()
# Create the mesh from the sample data.
mesh = gv.Transform.from_unstructured(
sample.lons,
sample.lats,
connectivity=sample.connectivity,
data=sample.data,
)
# Plot the mesh on a Robinson projection using an ESRI spatial reference identifier.
plotter = gv.GeoPlotter(crs="ESRI:54030")
sargs = dict(title=f"{sample.name} / {sample.units}")
plotter.add_mesh(mesh, cmap="thermal", show_edges=True, edge_color="grey", scalar_bar_args=sargs)
plotter.view_xy()
plotter.add_axes()
plotter.show()
UM ORCA2
So far we've demonstrated GeoVista's ability to cope with unstructured data. Now let's plot a curvilinear mesh using Met Office Unified Model (UM) ORCA2 Sea Water Potential Temperature data, with 10m Natural Earth coastlines and a 1:50m Natural Earth I base layer.
🗒
import geovista as gv
from geovista.pantry import um_orca2
import geovista.theme
# Load sample data.
sample = um_orca2()
# Create the mesh from the sample data.
mesh = gv.Transform.from_2d(sample.lons, sample.lats, data=sample.data)
# Remove cells from the mesh with NaN values.
mesh = mesh.threshold()
# Plot the mesh.
plotter = gv.GeoPlotter()
sargs = dict(title=f"{sample.name} / {sample.units}")
plotter.add_mesh(
mesh, cmap="balance", show_edges=True, edge_color="grey", scalar_bar_args=sargs
)
plotter.add_base_layer(texture=gv.natural_earth_1())
plotter.add_coastlines(resolution="10m")
plotter.view_xy()
plotter.add_axes()
plotter.show()
OISST AVHRR
Finally, let's render a NOAA/NCEI Optimum Interpolation SST (OISST) Advanced Very High Resolution Radiometer (AVHRR) rectilinear mesh, with 10m Natural Earth coastlines and a NASA Blue Marble base layer.
🗒
import geovista as gv
from geovista.pantry import oisst_avhrr_sst
import geovista.theme
# Load sample data.
sample = oisst_avhrr_sst()
# Create the mesh from the sample data.
mesh = gv.Transform.from_1d(sample.lons, sample.lats, data=sample.data)
# Remove cells from the mesh with NaN values.
mesh = mesh.threshold()
# Plot the mesh.
plotter = gv.GeoPlotter()
sargs = dict(title=f"{sample.name} / {sample.units}")
plotter.add_mesh(mesh, cmap="balance", scalar_bar_args=sargs)
plotter.add_base_layer(texture=gv.blue_marble())
plotter.add_coastlines()
plotter.view_xz()
plotter.add_axes()
plotter.show()
Further Examples
"Please, sir, I want some more", Charles Dickens, Oliver Twist, 1838.
Certainly, our pleasure! From the command line, simply:
geovista examples --run all --verbose
Want to know more?
geovista examples --help
License
GeoVista is distributed under the terms of the BSD-3-Clause license.
#ShowYourStripes
Graphics and Lead Scientist: Ed Hawkins, National Centre for Atmospheric Science, University of Reading.
Data: Berkeley Earth, NOAA, UK Met Office, MeteoSwiss, DWD, SMHI, UoR, Meteo France & ZAMG.
#ShowYourStripes is distributed under a Creative Commons Attribution 4.0 International License
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 geovista-0.1.0.tar.gz
.
File metadata
- Download URL: geovista-0.1.0.tar.gz
- Upload date:
- Size: 64.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eefee85d204cbeeda5216f9e179bfadf90b49cce1f30b4aa01d20b5254697c43 |
|
MD5 | 4171ffac620d7ddf9cfa0cc6cb8b9275 |
|
BLAKE2b-256 | afe5483191562958e6279bfac16c9e9e768c7dbf3714228032c56996a113675f |
Provenance
File details
Details for the file geovista-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: geovista-0.1.0-py3-none-any.whl
- Upload date:
- Size: 90.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88e92556f16a9e3210d861a3b9bf6cf3dcb6aa5dae491bf4992bff42ef4fa4c1 |
|
MD5 | 0d2e3242e55b8d78007aaf0c0404efd6 |
|
BLAKE2b-256 | 4793997386b18cfbf61a07a4c30b3393aaabae5f2d1b089edfb0dd8f76fa666b |