Skip to content

Commit

Permalink
fix typo in stereo.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bpurinton committed Jun 7, 2024
1 parent 0690ca5 commit ad66ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asp_plot/stereo.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def plot_dem_results(self, el_clim=None, ie_clim=None, diff_clim=None, save_dir=
diff_clim = ColorBar(perc_range=(2, 98), symm=True).get_clim(diff)

self.plot_array(ax=axa[2], array=diff, clim=diff_clim, cmap="RdBu", cbar_label="Elevation diff. (m)")
axa[2].set_title(f"Difference with reference DEM:\n{self.reference_dem.split("/")[-1]}")
axa[2].set_title(f"Difference with reference DEM:\n{self.reference_dem.split('/')[-1]}")

fig.tight_layout()
if save_dir and fig_fn:
Expand Down

0 comments on commit ad66ecb

Please sign in to comment.