Skip to content

Commit

Permalink
Increase spectra size in combined plot
Browse files Browse the repository at this point in the history
  • Loading branch information
kmhess committed May 19, 2024
1 parent 361653b commit b56add8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/combine_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def combine_images(source, src_basename, imgck, suffix='png', surveys='DSS2 Blue
else:
print("\tWARNING: No ancillary data image available for source {}.".format(source['id']))
os.system("{0} {1}mom0.{2} {1}snr.{2} {1}mom1.{2} {1}mom2.{2} +append temp{3}.{2}".format(imgck, infile, suffix, code))
os.system("{0} {1}spec.{2} -resize 125% temp2{3}.{2}".format(imgck, infile, suffix, code))
os.system("{0} {1}specfull.{2} -resize 125% temp3{3}.{2}".format(imgck, infile, suffix, code))
os.system("{0} {1}spec.{2} -resize 136% temp2{3}.{2}".format(imgck, infile, suffix, code))
os.system("{0} {1}specfull.{2} -resize 136% temp3{3}.{2}".format(imgck, infile, suffix, code))
os.system("{0} temp2{3}.{2} temp3{3}.{2} {1}pv.{2} {1}pv_min.{2} +append temp4{3}.{2}".format(imgck, infile,
suffix, code))
os.system("{0} temp{3}.{2} temp4{3}.{2} -append {1}".format(imgck, new_file, suffix, code))
Expand Down

0 comments on commit b56add8

Please sign in to comment.