From d839991f08792d502b222015e3da217b751eeb30 Mon Sep 17 00:00:00 2001 From: Max Grover Date: Tue, 12 Nov 2024 13:28:30 -0600 Subject: [PATCH] Fix image paths (#139) * FIX: Fix the broken link * FIX: Fix the tracer example image paths * FIX: Fix link in pyart gallery * FIX: Fix the link in the NEXRAD example * FIX: Fix other path in tracer notebook --- notebooks/example-workflows/tracer-example.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/example-workflows/tracer-example.ipynb b/notebooks/example-workflows/tracer-example.ipynb index 658021a..844076c 100644 --- a/notebooks/example-workflows/tracer-example.ipynb +++ b/notebooks/example-workflows/tracer-example.ipynb @@ -202,7 +202,7 @@ " print(radar.scan_type)\n", " display = pyart.graph.RadarDisplay(radar)\n", " display.plot(\"reflectivity\", 0)\n", - " plt.savefig(f\"quicklooks/{radar.scan_type}/{Path(file).stem}.png\", dpi=200)\n", + " plt.savefig(f\"{radar.scan_type}_{Path(file).stem}.png\", dpi=200)\n", " plt.show()\n", " plt.close() " ]