Agent skill · Data & Analytics

geostatspy

GSLIB-inspired geostatistics library for variogram analysis, kriging, and simulation. Use when Claude needs to: (1) Calculate experimental variograms, (2) Fit variogram models, (3) Perform simple/ordinary kriging, (4) Run sequential Gaussian simulation (SGSIM), (5) Apply normal score transforms, (6) Decluster spatial data, (7) Generate multiple realizations for uncertainty.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill geostatspy --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Geoscience Skills
Requires: [geostatspy>=0.0.40, numpy, pandas, matplotlib]
Path: skills/analysis/geostatspy/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# GeostatsPy - Geostatistical Analysis ## Quick Reference ```python import geostatspy.GSLIB as GSLIB import geostatspy.geostats as geostats import pandas as pd df = pd.read_csv('data.csv') df['npor'], tvpor, tnspor = geostats.nscore(df, 'porosity') # Transform lag, gamma, npairs = geostats.gamv(df, 'X', 'Y', 'npor', # Variogram tmin=-9999, tmax=9999, xlag=50, xltol=25, nlag=15, azm=0, atol=22.5, bandwh=9999, bandwd=9999) vario = GSLIB.make_variogram(nug=0.0, nst=1, it1=1, cc1=1.0, # Model azi1=0, hmaj1=300, hmin1=300) est, var = geostats.kb2d(df, 'X', 'Y', 'npor', ..., vario=vario) # Krige ``` ## Key Functions | Category | Functions | |----------|-----------| | Visualization | `locmap`, `pixelplt`, `hist` | | Variogram | `gamv`, `vmodel` | | Kriging | `kb2d`, `kb3d` | | Simulation | `sgsim`, `sisim` | | Transforms | `nscore`, `backtr` | | Declustering | `declus` | ## Common Operations ### 1. Normal Score Transform ```python df['npor'], tvpor, tnspor = geostats.nscore(df, 'porosity') original = geostats.backtr(nscore_data, tvpor, tnspor, zmin=0, zmax=0.3) ``` ### 2. Experimental Variogram ```python lag, gamma, npairs = geostats.gamv( df, 'X', 'Y', 'npor', tmin=-9999, tmax=9999, # Tr

What's inside
Steps it walks through
  1. Quick Reference
  2. Key Functions
  3. Common Operations
  4. 1. Normal Score Transform
  5. 2. Experimental Variogram
  6. 3. Variogram Model
  7. 4. Kriging (kb2d)
  8. 5. Sequential Gaussian Simulation
  9. 6. Declustering
  10. Variogram Models
  11. Key Parameters
  12. When to Use vs Alternatives
  13. Common Workflows
  14. Variogram Analysis and Kriging Interpolation
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the geostatspy skill do?

GSLIB-inspired geostatistics library for variogram analysis, kriging, and simulation. Use when Claude needs to: (1) Calculate experimental variograms, (2) Fit variogram models, (3) Perform simple/ordinary kriging, (4) Run sequential Gaussian simulation (SGSIM), (5) Apply normal score transforms, (6) Decluster spatial data, (7) Generate multiple realizations for uncertainty.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill geostatspy --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going