Skip to content

Commit

Permalink
Update num_measurements calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
ddobie committed Dec 18, 2024
1 parent 800f76a commit febd272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vasttools/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def get_source(

s = the_sources.loc[id]

num_measurements = s['n_measurements']
num_measurements = len(measurements) #s['n_measurements']

source_coord = SkyCoord(
s['wavg_ra'],
Expand Down

0 comments on commit febd272

Please sign in to comment.