Skip to content
Snippets Groups Projects
Commit e6b3c8c2 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent e06fd54b
No related branches found
No related tags found
No related merge requests found
...@@ -321,7 +321,7 @@ def plot_grid2d(grid_2d, x_map_2d, y_map_2d, proj, vmin=None, vmax=None, cmap='j ...@@ -321,7 +321,7 @@ def plot_grid2d(grid_2d, x_map_2d, y_map_2d, proj, vmin=None, vmax=None, cmap='j
ax = fig.add_subplot(1, 1, 1, projection=proj) ax = fig.add_subplot(1, 1, 1, projection=proj)
# Save mappable object returned by pcolormesh # Save mappable object returned by pcolormesh
p = ax.pcolormesh(x_map_2d, y_map_2d, grid_2d, vmin=270.0, vmax=310.0, cmap='jet', shading='auto') p = ax.pcolormesh(x_map_2d, y_map_2d, grid_2d, vmin=vmin, vmax=vmax, cmap=cmap, shading='auto')
ax.coastlines(resolution='50m', color='green', linewidth=1.50) ax.coastlines(resolution='50m', color='green', linewidth=1.50)
...@@ -338,7 +338,6 @@ def plot_grid2d(grid_2d, x_map_2d, y_map_2d, proj, vmin=None, vmax=None, cmap='j ...@@ -338,7 +338,6 @@ def plot_grid2d(grid_2d, x_map_2d, y_map_2d, proj, vmin=None, vmax=None, cmap='j
cbar.set_label('Value', size=15) # Set color bar label cbar.set_label('Value', size=15) # Set color bar label
plt.show() plt.show()
# plt.close()
# values, edges in Epoch time # values, edges in Epoch time
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment