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

mtpymtpy 命令行

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

23

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

mtpy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目相关协作事项。

  • 适用于需要跟踪代码变更、审查 Pull Request 或管理 Issue 的任务场景。
  • 通过 npx skills add 命令从 steadfastasart/geoscience-skills 仓库安装。
  • 建议在使用前检查仓库维护状态和可能触发的网络请求或文件操作。
  • mtpy 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

mtpy - Magnetotelluric Analysis

Quick Reference

from mtpy import MT, MTCollection

# Read single station
mt = MT('station001.edi')

# Access data
Z = mt.Z                         # Complex impedance tensor
freq = mt.frequency              # Frequency array
rho_xy = mt.apparent_resistivity[:, 0, 1]  # Apparent resistivity

# Station info
print(mt.station, mt.latitude, mt.longitude)

# Write EDI
mt.write_edi('output.edi')

Key Classes

ClassPurpose
MTSingle station MT data container
MTCollectionMultiple stations management
PlotMTResponsePlot impedance, resistivity, phase
PlotPhaseTensorPhase tensor ellipse visualization
PlotPseudoSectionProfile pseudosection display
PlotStrikeStrike direction analysis

Essential Operations

Load and Inspect EDI

from mtpy import MT

mt = MT('station001.edi')
print(f"Station: {mt.station}")
print(f"Location: ({mt.latitude}, {mt.longitude})")
print(f"Frequencies: {len(mt.frequency)} points")
print(f"Period range: {1/mt.frequency.max():.2f} - {1/mt.frequency.min():.0f} s")

Load Multiple Stations

from mtpy import MTCollection

mc = MTCollection()
mc.from_edis('survey_data/*.edi')
print(f"Loaded {len(mc)} stations")

for station in mc:
    print(f"  {station.station}: ({station.latitude:.4f}, {station.longitude:.4f})")

Plot MT Response

from mtpy import MT
from mtpy.imaging import PlotMTResponse

mt = MT('station001.edi')
plot = PlotMTResponse(mt)
plot.plot()  # Apparent resistivity and phase

Phase Tensor Analysis

from mtpy import MT
from mtpy.imaging import PlotPhaseTensor

mt = MT('station001.edi')

# Get phase tensor parameters
phi_min = mt.phase_tensor.phimin
phi_max = mt.phase_tensor.phimax
skew = mt.phase_tensor.skew       # 3D indicator

# Plot
pt = PlotPhaseTensor(mt)
pt.plot()

Rotate Impedance Tensor

from mtpy import MT

mt = MT('station001.edi')
mt_rotated = mt.rotate(30)        # 30 degrees clockwise
mt.rotate_to_strike()             # Auto-rotate to geoelectric strike

Create Pseudosection

from mtpy import MTCollection
from mtpy.imaging import PlotPseudoSection

mc = MTCollection()
mc.from_edis('profile/*.edi')

ps = PlotPseudoSection(mc)
ps.plot(plot_type='apparent_resistivity', mode='te')  # or 'tm', 'det'

Export Data

from mtpy import MT
import pandas as pd

mt = MT('station001.edi')

# Export to CSV
df = pd.DataFrame({
    'frequency': mt.frequency,
    'rho_xy': mt.apparent_resistivity[:, 0, 1],
    'rho_yx': mt.apparent_resistivity[:, 1, 0],
    'phase_xy': mt.phase[:, 0, 1],
    'phase_yx': mt.phase[:, 1, 0]
})
df.to_csv('mt_data.csv', index=False)

# Export for ModEM
mt.write_modem('station001.dat')

Impedance Tensor Components

ComponentDescriptionMode
ZxxEx/Bx responseDiagonal (usually small)
ZxyEx/By responseTE mode
ZyxEy/Bx responseTM mode
ZyyEy/By responseDiagonal (usually small)

Phase Tensor Parameters

ParameterDescriptionInterpretation
phi_minMinimum phaseRelates to resistivity gradient
phi_maxMaximum phaseRelates to resistivity gradient
skewSkew angle>5 suggests 3D structure
ellipticity(phi_max-phi_min)/(phi_max+phi_min)2D/3D indicator

When to Use vs Alternatives

ToolBest ForLimitations
mtpyFull MT workflow in Python, EDI I/O, visualization, modelling prepComplex API, evolving between v1 and v2
EMTFUSGS time-series to impedance processingFortran-based, processing only
WinGLinkCommercial integrated MT processing and inversionExpensive commercial license

Use mtpy when you need end-to-end MT analysis in Python: reading EDI files, QC, phase tensor analysis, pseudosections, and preparing data for ModEM or other inversion codes.

Consider alternatives when you need time-series to impedance processing from raw field data (use EMTF), or a fully integrated commercial inversion package with GUI (use WinGLink).

Common Workflows

Load, QC, and analyze MT station data

  • Load EDI file(s) with MT() or MTCollection()
  • Inspect station metadata (location, frequency range)
  • Plot apparent resistivity and phase with PlotMTResponse
  • Check phase tensor parameters for dimensionality (skew > 5 = 3D)
  • Identify and mask noisy data points using error thresholds
  • Rotate impedance tensor to geoelectric strike if needed
  • Create pseudosection for profile data
  • Export cleaned data for inversion (ModEM format)

Common Issues

IssueSolution
No tipper dataCheck mt.has_tipper before accessing
Bad data pointsUse mt.Z_err / np.abs(mt.Z) > threshold to mask
Static shiftApply correction before interpretation
Wrong rotationVerify coordinate system (N vs E convention)

References

Scripts

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.38%
按下载量换算32

Claude

31.32%
按下载量换算27

Cursor

19.11%
按下载量换算17

Gemini CLI

8.14%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills