Skip to content

Commit

Permalink
Update summary_statistics.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gbrencher authored Jul 5, 2024
1 parent f88b8ca commit bde841c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glacier_image_correlation/summary_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def main():
sns.set_theme()
f, ax = plt.subplots(1, 3, figsize=(15, 5), sharex=True, sharey=True)
veloc_da_median.plot(ax=ax[0], vmin=0, vmax=600, cmap='inferno', cbar_kwargs= {'shrink':0.7, 'label':'velocity (m/yr)'})
veloc_da_stdev.plot(ax=ax[1], vmin=0, vmax=300, cmap='cividis', cbar_kwargs= {'shrink':0.7, 'label':'standard deviation (m/yr)'})
veloc_da_stdev.plot(ax=ax[1], vmin=0, vmax=600, cmap='cividis', cbar_kwargs= {'shrink':0.7, 'label':'standard deviation (m/yr)'})
veloc_da_count.plot(ax=ax[2], vmin=0, cmap='Blues', cbar_kwargs= {'shrink':0.7, 'label':'pixel count'})
ax[0].set_aspect('equal')
ax[1].set_aspect('equal')
Expand All @@ -90,4 +90,4 @@ def main():
f.savefig('glacier_image_correlation/velocity_summary_statistics.png', dpi=300)

if __name__ == "__main__":
main()
main()

0 comments on commit bde841c

Please sign in to comment.