Skip to content

Commit b642f70

Browse files
authored
Merge pull request #13 from heistermann/fix-fuzzyplot
Fix wrong parenthesis in plot - funny that this ran at all.
2 parents 6c23996 + f2ebe2e commit b642f70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notebooks/classify/wradlib_fuzzy_echo_classify.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@
189189
"# Echo classification\n",
190190
"ax = plt.subplot(122, aspect=\"equal\")\n",
191191
"ax, pm = wradlib.vis.plot_ppi(np.ma.masked_array(cmap.astype(np.uint8), \n",
192-
" np.isnan(dat[\"ref\"]), ax=ax), \n",
193-
" cmap=\"bwr\")\n",
192+
" np.isnan(dat[\"ref\"])),\n",
193+
" ax=ax, cmap=\"bwr\")\n",
194194
"ax = wradlib.vis.plot_ppi_crosshair(site=(0,0),\n",
195195
" ranges=[80,160,240])\n",
196196
"plt.xlim(-240,240)\n",

0 commit comments

Comments
 (0)