Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kjayawar authored Sep 25, 2023
1 parent b42de93 commit 715f63e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion afsmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ def afsmo(dat_file, interpolate, n_inter, plotter, aspect_equal, **kwargs):

try:
theta, x_new, y_new = extract_afsmo_smr()
theta = theta[::-1]
x_new = x_new[::-1]
y_new = y_new[::-1]
if interpolate:
x_new, y_new = interpolate_new_points(theta, x_new, y_new, n_inter)
except:
Expand Down Expand Up @@ -271,4 +274,4 @@ def afsmo(dat_file, interpolate, n_inter, plotter, aspect_equal, **kwargs):
ipunch = args.ipunch,
icamtk = args.icamtk,
ibad = args.ibad,
itrn = args.itrn)
itrn = args.itrn)

0 comments on commit 715f63e

Please sign in to comment.