AI SummaryGPRPy enables Claude to process and visualize ground-penetrating radar data through signal processing, velocity analysis, and depth conversion—essential for geophysicists, archaeologists, and civil engineers analyzing subsurface structures.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "gprpy" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (3 files) mkdir -p .claude/skills/gprpy && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/gprpy/SKILL.md "https://raw.githubusercontent.com/SteadfastAsArt/geoscience-skills/main/gprpy/SKILL.md" && mkdir -p .claude/skills/gprpy/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/gprpy/references/processing_steps.md "https://raw.githubusercontent.com/SteadfastAsArt/geoscience-skills/main/gprpy/references/processing_steps.md" && mkdir -p .claude/skills/gprpy/scripts && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/gprpy/scripts/process_gpr.py "https://raw.githubusercontent.com/SteadfastAsArt/geoscience-skills/main/gprpy/scripts/process_gpr.py" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Process and visualize ground-penetrating radar (GPR) data with signal processing, velocity analysis, and depth conversion. Use when Claude needs to: (1) Load GPR files (.DZT, .DT1, .GPR, .rd3), (2) Apply dewow, gain, and filters to radargrams, (3) Convert two-way travel time to depth, (4) Perform CMP/WARR velocity analysis, (5) Apply topographic corrections, (6) Export processed profiles as images or SEG-Y, (7) Batch process multiple GPR survey lines.
Quick Reference
`python import gprpy.gprpy as gp import matplotlib.pyplot as plt
Load and display
data = gp.gprpyProfile() data.importdata('profile.DZT') data.showProfile() plt.show()
Access data
print(f"Traces: {data.data.shape[1]}") print(f"Samples: {data.data.shape[0]}") print(f"Time range: {data.twtt.max():.1f} ns") `
Supported Formats
| Format | Manufacturer | |--------|-------------| | .DZT | GSSI | | .DT1 | Sensors & Software | | .GPR | MALA | | .rd3/.rad | MALA | | .sgy | SEG-Y |
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster