Skip to content

Commit

Permalink
Fix typo in tutorial notebook on P.1812 propagation.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwinkel committed Sep 14, 2018
1 parent e57fb57 commit 780a368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/03f_pre+postprocessing.ipynb
Expand Up @@ -1254,7 +1254,7 @@
"sigma_loc = np.sqrt(4.4 ** 2 + 3 ** 2) * cnv.dB\n",
"L_be = 20 * cnv.dB # assume 20 dB building entry loss\n",
"\n",
"_total_atten_outdoor = loss_complete(p_L, sigma_loc, L_b0p, L_bc, L_be)"
"_total_atten_indoor = loss_complete(p_L, sigma_loc, L_b0p, L_bc, L_be)"
]
},
{
Expand Down Expand Up @@ -1282,7 +1282,7 @@
"ax = fig.add_axes((0., 0., 1.0, 1.0))\n",
"cbax = fig.add_axes((0., 0., 1.0, .02))\n",
"cim = ax.imshow(\n",
" _total_atten_outdoor.to(cnv.dB).value,\n",
" _total_atten_indoor.to(cnv.dB).value,\n",
" origin='lower', interpolation='nearest', cmap='inferno_r',\n",
" vmin=vmin, vmax=vmax,\n",
" extent=(_lons[0], _lons[-1], _lats[0], _lats[-1]),\n",
Expand Down

0 comments on commit 780a368

Please sign in to comment.