Skip to content

Commit

Permalink
plot lightgray traces to be visible on white masked regions
Browse files Browse the repository at this point in the history
  • Loading branch information
sbailey committed Dec 19, 2023
1 parent 28eec30 commit c8178e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/plot_fiber_traces
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ for i,fiber in enumerate(fibers) :
x = tset.x_vs_wave(fiber,wave)
y = tset.y_vs_wave(fiber,wave)
color=None
if args.image is not None: color="white"
if args.image is not None: color="lightgray"
plt.plot(x,y,color=color)


Expand All @@ -107,7 +107,7 @@ if lines is not None :
xl[i] = tset.x_vs_wave(fiber,line)
yl[i] = tset.y_vs_wave(fiber,line)
color=None
if args.image is not None: color="white"
if args.image is not None: color="lightgray"
plt.plot(xl,yl,color=color)

plt.xlabel("xccd")
Expand Down

0 comments on commit c8178e5

Please sign in to comment.