Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
--exclude=.git \
--exclude=.github \
.
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: github-pages
path: docs/_build/html.tar
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ configuration files and data available in the container (see [Usage](usage)).

## Option 2: Native environment

1. Install ParaView (v5.10 or above). You can
1. Install ParaView (v5.13 or above). You can
[download a pre-built binary](https://www.paraview.org/download/)
or use [Spack](https://spack.readthedocs.io/en/latest/) to compile it from
source. For example, download ParaView 6.0 for a Linux machine like this:
Expand Down
2 changes: 1 addition & 1 deletion gwpv/render/frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def normalized_time_from_scene(scene_time):
# Try to make horizon surfaces smooth. At low angular resoluton
# they still show artifacts, so perhaps more can be done.
horizon = pv.ExtractSurface(Input=horizon)
horizon = pv.GenerateSurfaceNormals(Input=horizon)
horizon = pv.SurfaceNormals(Input=horizon)
horizon_rep_config = horizon_config.get("Representation", {})
if "Representation" not in horizon_rep_config:
horizon_rep_config["Representation"] = "Surface"
Expand Down