From ec5237f60faf54fe5aabea05e38aa4c5ca377733 Mon Sep 17 00:00:00 2001 From: JouSF-1409 <81711503+JouSF-1409@users.noreply.github.com> Date: Wed, 31 Jan 2024 08:02:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BArayplib=E6=B7=BB=E5=8A=A0=E4=BA=86?= =?UTF-8?q?=E5=91=BD=E4=BB=A4=E8=A1=8C=E5=B7=A5=E5=85=B7=EF=BC=8C=20rf2dep?= =?UTF-8?q?th=E7=9A=84=E4=B8=80=E7=82=B9=E4=BC=98=E5=8C=96=EF=BC=8C?= =?UTF-8?q?=E4=BD=BF=E7=94=A8namedtuple=E6=94=B9=E5=96=84=E4=BA=86Station?= =?UTF-8?q?=E7=B1=BB=E7=9A=84=E4=BD=BF=E7=94=A8=20depmodel.py=20=E4=B8=AD?= =?UTF-8?q?=E7=9A=84ccp=5Fmodel=E5=A4=AA=E7=B9=81=E7=90=90=EF=BC=8C?= =?UTF-8?q?=E6=9C=AA=E6=9D=A5=E4=BC=9A=E6=8B=86=E5=88=86=E9=87=8D=E5=86=99?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seispy/ccp/rf2depth.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 seispy/ccp/rf2depth.py diff --git a/seispy/ccp/rf2depth.py b/seispy/ccp/rf2depth.py new file mode 100644 index 00000000..0a3d0a08 --- /dev/null +++ b/seispy/ccp/rf2depth.py @@ -0,0 +1,8 @@ +from collections import namedtuple + +import numpy as np + + +if __name__ == '__main__': + import doctest + doctree = doctest.testmod() \ No newline at end of file