Skip to content

Commit

Permalink
Fix image paths (#139)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
mgrover1 authored Nov 12, 2024
1 parent 58a2095 commit d839991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/example-workflows/tracer-example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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() "
]
Expand Down

0 comments on commit d839991

Please sign in to comment.