NSGeophysics / GPRPy

Ground Penetrating Radar processing and visualization software for python
MIT License
174 stars 85 forks source link

Empty plot after import #31

Open bandtank opened 1 year ago

bandtank commented 1 year ago

After I import data, the resulting plot is empty. I know the data files are good because they work in R using RGPR. The format is GSSI. I also know the installation of GPRPy works because I found test data in another issue that works.

Data

image

There are no errors in the log. What could be wrong?

DuncanAWilliams commented 1 year ago

The data you linked worked for me. Make sure you do some basic processing and play with the contrast?

E.g., I did the following quick processing to generate the attached figure (shown with contrast of 7):

mygpr = gp.gprpyProfile() mygpr.tpowGain(1.2) mygpr.remMeanTrace(999) mygpr.dewow(999) mygpr.setVelocity(0.1) mygpr.smooth(3)

File____112.pdf