Skip to content

Commit

Permalink
removed double quotes and added single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
winash12 committed Jul 17, 2024
1 parent 0a3be93 commit 4893323
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/calculations/Vorticity_Divergence_Inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
countries = NaturalEarthFeature(category='cultural', scale='50m',
facecolor='none',
name='admin_0_countries')
ax.add_feature(countries, linewidth=.5, edgecolor="black")
ax.add_feature(countries, linewidth=.5, edgecolor='black')
ax.coastlines('50m', linewidth=0.8)

# Plot the 850 hPa divergence using xarray's plot functionality.
Expand All @@ -122,7 +122,7 @@
gridlines.yformatter = LATITUDE_FORMATTER

# Add a plot title, then show the image.
plt.title("GFS 0-h 850 hPa divergence (x$10^{-5} s^{-1}$) at 1200 UTC 9 August 2023")
plt.title('GFS 0-h 850 hPa divergence (x$10^{-5} s^{-1}$) at 1200 UTC 9 August 2023')
plt.savefig('div.png')
plt.show()

Expand Down Expand Up @@ -158,7 +158,7 @@
countries = NaturalEarthFeature(category='cultural', scale='50m',
facecolor='none',
name='admin_0_countries')
ax.add_feature(countries, linewidth=.5, edgecolor="black")
ax.add_feature(countries, linewidth=.5, edgecolor='black')
ax.coastlines('50m', linewidth=0.8)

# Compute the magnitude of the non-divergent component of the 850 hPa wind.
Expand Down Expand Up @@ -199,7 +199,7 @@
# Add country borders and coastlines.
countries = NaturalEarthFeature(category='cultural', scale='50m',
facecolor='none',
name="admin_0_countries")
name='admin_0_countries')
ax.add_feature(countries, linewidth=.5, edgecolor='black')
ax.coastlines('50m', linewidth=0.8)

Expand Down

0 comments on commit 4893323

Please sign in to comment.