Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

geostatspygeostatspy 命令行

Agent Skill

geostatspy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

23

下载量

148
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:geostatspy(geostatspy 命令行)
来源仓库:https://github.com/steadfastasart/geoscience-skills
仓库路径:skills/geostatspy
安装命令:
npx skills add https://github.com/steadfastasart/geoscience-skills --skill geostatspy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/steadfastasart/geoscience-skills --skill geostatspy

简介

geostatspy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库和原始 README 核验具体用法,通过 npx 命令安装。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件操作。
  • geostatspy 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GeostatsPy - Geostatistical Analysis

Quick Reference

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

CategoryFunctions
Visualizationlocmap, pixelplt, hist
Variogramgamv, vmodel
Krigingkb2d, kb3d
Simulationsgsim, sisim
Transformsnscore, backtr
Declusteringdeclus

Common Operations

1. Normal Score Transform

df['npor'], tvpor, tnspor = geostats.nscore(df, 'porosity')
original = geostats.backtr(nscore_data, tvpor, tnspor, zmin=0, zmax=0.3)

2. Experimental Variogram

lag, gamma, npairs = geostats.gamv(
    df, 'X', 'Y', 'npor',
    tmin=-9999, tmax=9999,    # Trimming limits
    xlag=50, xltol=25,        # Lag distance, tolerance
    nlag=15, azm=0, atol=22.5, bandwh=9999, bandwd=9999)

3. Variogram Model

# Types: 1=spherical, 2=exponential, 3=gaussian
vario = GSLIB.make_variogram(
    nug=0.0, nst=1,            # Nugget, number of structures
    it1=1, cc1=1.0,            # Type, sill contribution
    azi1=0, hmaj1=300, hmin1=300)  # Azimuth, major/minor range

4. Kriging (kb2d)

est, var = geostats.kb2d(
    df, 'X', 'Y', 'npor', tmin=-9999, tmax=9999,
    nx=50, xmn=25, xsiz=50,    # Grid X: ncells, origin, size
    ny=50, ymn=25, ysiz=50,    # Grid Y
    nxdis=1, nydis=1, ndmin=1, ndmax=10,
    radius=500, ktype=0, skmean=0.0, vario=vario)  # ktype: 0=simple, 1=ordinary

5. Sequential Gaussian Simulation

sim = geostats.sgsim(
    df, 'X', 'Y', 'npor', wcol=-1, scol=-1,
    tmin=-9999, tmax=9999, itrans=0,
    ismooth=0, dession=0, dmession=0,
    zmin=-4, zmax=4, ltail=1, ltpar=0, utail=1, utpar=0,
    nsim=1, nx=50, xmn=25, xsiz=50, ny=50, ymn=25, ysiz=50,
    nz=1, zmn=0, zsiz=1, seed=73073,
    ndmin=1, ndmax=10, nodmax=10, radius=500, radius1=500,
    sang1=0, sang2=0, sang3=0, mxctx=10, mxcty=10, mxctz=1,
    ktype=0, vario=vario)

6. Declustering

wts, cell_size, ncut = geostats.declus(
    df, 'X', 'Y', 'porosity', iminmax=1, noff=10, ncell=20, cmin=10, cmax=500)
declustered_mean = np.average(df['porosity'], weights=wts)

Variogram Models

CodeModelUse Case
1SphericalMost common, finite range
2ExponentialReaches sill asymptotically
3GaussianVery smooth, parabolic near origin
4PowerUnbounded, fractal-like

Key Parameters

ParameterDescription
nugNugget effect (measurement error + micro-scale variation)
sillTotal variance (nugget + structure contributions)
rangeDistance where correlation becomes negligible
azimuthDirection of maximum continuity (degrees from N)
ktype0=simple kriging (known mean), 1=ordinary kriging

When to Use vs Alternatives

Use CaseToolWhy
GSLIB-style workflowsGeostatsPyDirect port of GSLIB programs to Python
SGSIM / SISIM simulationGeostatsPyFull GSLIB simulation engine
Declustering spatial dataGeostatsPyBuilt-in declus function
Modern variogram APIscikit-gstatCleaner API, sklearn integration
Kriging only (no simulation)pykrigeFocused API, universal kriging support
Random field generationgstoolsFlexible covariance models, field generation
Large-scale 3D geomodellingSGeMS / PetrelGUI-based, industrial workflows
Indicator simulationGeostatsPy (sisim)Categorical property simulation

Choose GeostatsPy when: You need GSLIB-compatible workflows in Python, especially for sequential simulation (SGSIM/SISIM), declustering, or if you are familiar with GSLIB parameter conventions. Best for reservoir characterization workflows.

Choose scikit-gstat when: You prefer a modern scikit-learn-style API for variogram analysis and kriging, with better integration into Python data science workflows.

Choose pykrige when: You only need kriging interpolation (no simulation) and want universal kriging with external drift or regression kriging capabilities.

Common Workflows

Variogram Analysis and Kriging Interpolation

  • Load spatial data into a pandas DataFrame
  • Explore data with GSLIB.locmap() and GSLIB.hist()
  • Check for clustering and decluster with geostats.declus() if needed
  • Apply normal score transform with geostats.nscore()
  • Compute experimental variogram with geostats.gamv() (isotropic first)
  • Check directional variograms for anisotropy (azimuths 0, 45, 90, 135)
  • Fit variogram model with GSLIB.make_variogram()
  • Overlay model on experimental variogram to verify fit
  • Run kriging with geostats.kb2d() (ktype=1 for ordinary)
  • Run SGSIM for uncertainty quantification (50-100 realizations)
  • Back-transform results with geostats.backtr()
  • Validate with cross-validation or holdout data

Common Issues

IssueSolution
Variogram doesn't reach sillIncrease nlag or xlag to capture full range
Kriging produces negative valuesBack-transform after kriging, not before
SGSIM artifactsCheck grid definition (xmn, xsiz) matches data extent
Too few variogram pairsIncrease atol (angular tolerance) or xltol (lag tolerance)
Hole effect in variogramMay indicate periodicity; try nested structures

Tips

  1. Always transform to normal scores - Most methods assume Gaussian
  2. Start isotropic - Add anisotropy only if justified by directional variograms
  3. Check variogram pairs - Ensure enough pairs at each lag
  4. Multiple realizations - Use 50-100+ for uncertainty quantification
  5. Back-transform last - Apply to final results only

References

Scripts

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.75%
按下载量换算56

Claude

27.17%
按下载量换算40

Cursor

20.84%
按下载量换算31

Gemini CLI

10.26%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills