Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
61f200a
Implement image rasterization; enabled by default, but retaining old …
mkavulich Oct 11, 2025
2f408ae
Trim axes from data bounds prior to rasterization, using new/rewritte…
mkavulich Oct 13, 2025
859d356
- Add pixel_ratio as a configurable option
mkavulich Oct 15, 2025
d37fa6f
New custom function "sum_of_magnitudes"; used for calculating wind sp…
mkavulich Oct 15, 2025
19eb477
New custom colormap imitating the pygraf wind speed colormap
mkavulich Oct 15, 2025
b032e34
Some more plotting script improvements:
mkavulich Oct 15, 2025
0578be0
Add feature to display numerical max/min values for a given plotted d…
mkavulich Dec 8, 2025
2622bff
Update to latest UXarray version, automatically load mpas_plot conda …
mkavulich Dec 8, 2025
44935cf
Need to check that auto-detected domain is not too large, otherwise e…
mkavulich Dec 8, 2025
f8a5f77
Some fixes I forgot to commit
mkavulich Dec 8, 2025
603aa9c
New custom functions: max_all_times and min_all_times
mkavulich Dec 17, 2025
1eda048
Add logic to setup script to allow mpas_plot to be installed in pre-e…
mkavulich Apr 16, 2026
79a3898
Revert to SRW way of tracking conda installation location
mkavulich May 5, 2026
7541e6b
Improve setup_conda.sh to detect and reuse existing conda installations
mkavulich May 5, 2026
e7b1b83
We need to pin Xarray to same version as UXarray, apparently this isn…
mkavulich May 5, 2026
7b55a2b
I think this fixes the projection issues; also unpin numpy v1
mkavulich May 12, 2026
f568e2b
Bypass UXarray bug with to_polycollection until it gets fixed
mkavulich May 12, 2026
3e805a8
Trying to fix Ctrl-c problems with Claude
mkavulich May 12, 2026
fee9ac2
Fix Ctrl-C handling and error reporting in multiprocessing mode
mkavulich May 12, 2026
172bfd4
Forgot to commit updates to environment file
mkavulich May 12, 2026
ffdb422
Add conda-lock support to speed up environment creation on HPC systems
mkavulich May 20, 2026
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
#Ignore all png image files
*.png
#Ignore conda location and installation
conda_loc
conda
23 changes: 23 additions & 0 deletions colormaps/gsl_wind_speed.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Colors used for wind speed as defined by NOAA-GSL's pygraf utility
plot_under: False
colors:
- '#fef8fe'
- '#f8d3f9'
- '#f1a5f3'
- '#e074f0'
- '#0045ff'
- '#0099ff'
- '#00ceff'
- '#00e8ff'
- '#00ffe6'
- '#67d300'
- '#7ffa06'
- '#b4ff36'
- '#eaff12'
- '#ffe500'
- '#ffc808'
- '#ff8608'
- '#ff3300'
- '#ff0039'
- '#f704fc'

Loading