Skip to content

Commit

Permalink
Remove limits from examples and tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
jrleeman committed Feb 2, 2017
1 parent 1f3999a commit 561fc25
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions examples/Advanced_Sounding.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
skew.plot(p, T, 'r')
skew.plot(p, Td, 'g')
skew.plot_barbs(p, u, v)
skew.ax.set_ylim(1000, 100)
skew.ax.set_xlim(-40, 60)

# Calculate LCL height and plot as black dot
l = mpcalc.lcl(p[0], T[0], Td[0])
Expand Down
2 changes: 0 additions & 2 deletions examples/plots/Simple_Sounding.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
skew.plot_dry_adiabats()
skew.plot_moist_adiabats()
skew.plot_mixing_lines()
skew.ax.set_ylim(1000, 100)

###########################################

Expand All @@ -71,7 +70,6 @@
skew.plot_dry_adiabats()
skew.plot_moist_adiabats()
skew.plot_mixing_lines()
skew.ax.set_ylim(1000, 100)

# Show the plot
plt.show()
4 changes: 0 additions & 4 deletions examples/plots/Skew-T_Layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,12 @@
skew.plot(p, T, 'r')
skew.plot(p, Td, 'g')
skew.plot_barbs(p, u, v)
skew.ax.set_ylim(1000, 100)

# Add the relevant special lines
skew.plot_dry_adiabats()
skew.plot_moist_adiabats()
skew.plot_mixing_lines()

# Good bounds for aspect ratio
skew.ax.set_xlim(-30, 40)

# Create a hodograph
ax = fig.add_subplot(gs[0, -1])
h = Hodograph(ax, component_range=60.)
Expand Down
4 changes: 0 additions & 4 deletions tutorials/upperair_soundings.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@
skew.plot(p, T, 'r')
skew.plot(p, Td, 'g')
skew.plot_barbs(p, u, v)
skew.ax.set_ylim(1000, 100)
skew.ax.set_xlim(-40, 60)

# Plot LCL temperature as black dot
skew.plot(parcel_lcl, lcl_temperature, 'ko', markerfacecolor='black')
Expand Down Expand Up @@ -177,8 +175,6 @@
skew.plot(p, T, 'r')
skew.plot(p, Td, 'g')
skew.plot_barbs(p, u, v)
skew.ax.set_ylim(1000, 100)
skew.ax.set_xlim(-40, 60)

# Plot LCL as black dot
skew.plot(parcel_lcl, lcl_temperature, 'ko', markerfacecolor='black')
Expand Down

0 comments on commit 561fc25

Please sign in to comment.