diff --git a/modules/util/plot.py b/modules/util/plot.py index 9bc6bc5cceb884aa42ecdfe0b6d4959d4bd4ec2a..66b33daa3cfc50d0985d0163811540648fd2cbd1 100644 --- a/modules/util/plot.py +++ b/modules/util/plot.py @@ -10,6 +10,7 @@ from sklearn.metrics import roc_auc_score, roc_curve import tensorflow as tf import matplotlib import matplotlib.pyplot as plt +import cartopy.crs as ccrs import os from util.setup import home_dir @@ -180,3 +181,19 @@ def plot_image(image, fname, label, cmap='Greys'): Fig.clf() # Otherwise fig stays open every time plt.close() # Close current figure # plt.close('all') + + +def plot_image2(image, cmap='Greys'): + fig = plt.figure(figsize=(12, 8)) + ax = plt.axes(projection=ccrs.PlateCarree()) + img_extent = [-180, 180, -90, 90] + ax.imshow(image, origin='lower', extent=img_extent, transform=ccrs.PlateCarree(), cmap=cmap, vmin=-1.5, vmax=2.5) + ax.coastlines(resolution='50m', color='blue', linewidth=1) + + # Save to file + ImageDirAndName = os.path.join('/Users/tomrink', 'testimage') + fig.savefig(ImageDirAndName) + + # Wrap up + fig.clf() # Otherwise fig stays open every time + plt.close() # Close current figure \ No newline at end of file