We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af3815 commit 67bebb1Copy full SHA for 67bebb1
LoopStructural/modelling/features/fold/_svariogram.py
@@ -189,6 +189,9 @@ def find_wavelengths(
189
# find the extrema of the average curve
190
res = find_peaks_and_troughs(np.array(averagex), np.array(averagey))
191
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]}")
195
wl1 = 0.0
196
wl1py = 0.0
197
for i in range(len(px)):
0 commit comments