Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Fix the tracer example image paths
Browse files Browse the repository at this point in the history
mgrover1 committed Nov 12, 2024
1 parent fb2986c commit 357de50
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions notebooks/example-workflows/tracer-example.ipynb
Original file line number Diff line number Diff line change
@@ -288,7 +288,7 @@
" vmax=15)\n",
" plt.xlim(62,68)\n",
" plt.ylim(0, 6)\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() "
]
@@ -298,7 +298,7 @@
"id": "97d6443f-8748-4c05-a9fb-91b523934563",
"metadata": {},
"source": [
"### Create a GIF of teh RHI images"
"### Create a GIF of the RHI images"
]
},
{
@@ -308,7 +308,7 @@
"metadata": {},
"outputs": [],
"source": [
"rhi_images = sorted(glob.glob(\"quicklooks/rhi/*\"))"
"rhi_images = sorted(glob.glob(f\"{radar.scan_type}*\"))"
]
},
{
@@ -372,7 +372,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
@@ -386,12 +386,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.16"
},
"vscode": {
"interpreter": {
"hash": "31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"
}
"version": "3.9.6"
}
},
"nbformat": 4,

0 comments on commit 357de50

Please sign in to comment.