Skip to content

Commit 67bebb1

Browse files
committed
fix: add logging for wavelength guess
1 parent 5af3815 commit 67bebb1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

LoopStructural/modelling/features/fold/_svariogram.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ def find_wavelengths(
189189
# find the extrema of the average curve
190190
res = find_peaks_and_troughs(np.array(averagex), np.array(averagey))
191191
px2, py2 = res
192+
logger.info(f"Found {len(px2)} peaks and troughs in the s-variogram")
193+
for i in range(len(px2)):
194+
logger.info(f"Peak {i}: {px2[i]} {py2[i]}")
192195
wl1 = 0.0
193196
wl1py = 0.0
194197
for i in range(len(px)):

0 commit comments

Comments
 (0)