Skip to content

Commit

Permalink
disable counties
Browse files Browse the repository at this point in the history
  • Loading branch information
jmunroe committed Dec 3, 2024
1 parent 3d0b660 commit 5b0180b
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions content/moore-oklahoma-tornado.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ plt.xlim(-99, -96)
plt.ylim(33.5, 36.5)
# Add counties
ax1.add_feature(USCOUNTIES,
linewidth=0.5)
#ax1.add_feature(USCOUNTIES,
# linewidth=0.5)
# Setup our second axis for velocity
ax2 = plt.subplot(122, projection=ccrs.PlateCarree())
Expand All @@ -202,8 +202,8 @@ plt.xlim(-99, -96)
plt.ylim(33.5, 36.5)
# Add counties
ax2.add_feature(USCOUNTIES,
linewidth=0.5)
#ax2.add_feature(USCOUNTIES,
# linewidth=0.5)
plt.show()
```
Expand All @@ -229,8 +229,7 @@ plt.xlim(-98, -97)
plt.ylim(35, 36)
# Add counties
ax1.add_feature(USCOUNTIES,
linewidth=0.5)
#ax1.add_feature(USCOUNTIES, linewidth=0.5)
# Setup our second axis for velocity
ax2 = plt.subplot(122, projection=ccrs.PlateCarree())
Expand All @@ -246,8 +245,7 @@ plt.xlim(-98, -97)
plt.ylim(35, 36)
# Add counties
ax2.add_feature(USCOUNTIES,
linewidth=0.5)
#ax2.add_feature(USCOUNTIES, linewidth=0.5)
plt.show()
```
Expand Down Expand Up @@ -291,8 +289,7 @@ gl.xlabel_style = {'fontsize':10}
gl.ylabel_style = {'fontsize':10}
# Add counties
ax1.add_feature(USCOUNTIES,
linewidth=0.5)
#ax1.add_feature(USCOUNTIES, linewidth=0.5)
# Setup our second axis for velocity
ax2 = plt.subplot(122, projection=ccrs.PlateCarree())
Expand Down Expand Up @@ -325,8 +322,8 @@ gl.xlabel_style = {'fontsize':10}
gl.ylabel_style = {'fontsize':10}
# Add counties
ax2.add_feature(USCOUNTIES,
linewidth=0.5)
#ax2.add_feature(USCOUNTIES, linewidth=0.5)
plt.show()
```

Expand Down

0 comments on commit 5b0180b

Please sign in to comment.