Blog
-
2025-04-23
文献阅读(27)
[Coherence-Based Characterization of a Long-Period Monochromatic Seismic Signal](https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2024GL1132…
-
2025-04-23
去仪器响应练习
用我的脚本下载了一堆的miniseed放在seed下,仪器响应文件放在resp文件夹下,利用obspy去除仪器响应,还保存为miniseed。 ``` import os from glob import glob from obspy import read, read_inventory
设置路径
seed_f…
-
2025-04-22
如何下载Fnet数据
感谢Seisman写了FnetPy,可以很方便地下载数据。 安装:
pip install https://github.com/seisman/FnetPy/archive/master.zip例子: ``` import o…
-
2025-04-21
obspy下载连续背景噪声数据
利用obspy的MassDownloader下载连续的波形示例。 ```python import obspy from obspy.clients.fdsn.mass_downloader import RectangularDomain, CircularDomain, \ Restrictions, Ma…
-
2025-04-17
有趣的程序和项目(二)
- Fast analysis of the seismic rupture SSA2py is an emergent python based software that allows fast…
-
2025-02-14
文献阅读(26)
[Depth-dependent seismic sensing of groundwater recovery from the atmospheric-river storms of 2023](https://www.science.org/doi/10.1126/science.adr6…
-
2025-02-10
文献阅读(25)
Hidden cascades of seismic ice stream deformation
摘要
-
2025-02-05
如何在自己电脑中部署deepseek
deepseek很火,我也来凑热闹。之前发布的一些LLM都没关注本地部署,因为似乎要钱,而deepseek是免费的(贫穷限制了我的想象)。
Windows下deepseek部署
首先是在windows下下载[ollama](https://ol…
-
2024-12-19
记一次找回Linux启动项的经历
记一次找回Linux启动项的经历
我的笔记本是Windows10和Fedora40的双系统。平时都在Fedora下面干活,因此给windows的C盘分配了120G。然而Linux下面对于word的支持不太行,因此也需要在windows下面处理文档。…
-
2024-11-07
文献阅读(24)
摘要翻译
-
2024-11-02
文献阅读(23)
[Drivers of Recurring Seasonal Cycle of Glacier Calving Styles and Patterns](https://www.frontiersin.org/journals/earth-science/articles/10.3389/fea…
-
2024-10-30
文献阅读(二十二)
-
2024-10-12
高效bash脚本
转学习到的高效bash脚本。
build-in commands
if [[ "$var" -eq 3 ]];then echo "hello" fi -
2024-10-05
文献阅读(二十一)
Global scale analysis and modelling of primary microseisms
摘要翻译
-
2024-09-09
文献阅读(二十)
[Using Ocean Ambient Sound to Measure Local Integrated Deep Ocean Temperature](https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2024GL108943?af=R…
-
2024-09-03
文献阅读(十九)
[Estimation of the Orientations of the S-net Cabled Ocean-Bottom Sensors](https://pubs.geoscienceworld.org/ssa/srl/article-abstract/90/6/2175/573516/Estimation-…
-
2024-09-01
如何下载Fnet的台站列表
如何下载Fnet的台站列表?
这里其实是一个网页抓取的工作。Fnet台站列表网址是https://www.fnet.bosai.go.jp/st_info/?LANG=en。那么下载其列表并保存到本地的python脚本如下: ``` import…
-
2024-07-25
obspy去polezero类型仪器仪响应
有些时候数据下载下来只有polezero格式的仪器响应,那python脚本怎么去仪器响应呢?
如果有polezero文件,那可以用attach_paz来读取。然后去仪器响应的脚本如下: ```python import numpy as np im…
-
2024-07-19
学习聚束分析(一)
这是聚束分析学习一,参见这里。
-
2024-07-09
如何下载S-net数据
如何下载S-net数据呢?
S-net是NIED(日本国立防灾科学技术研究所)布设的海底地震动观测网络,由150台三分量地震仪组成。观测区域覆盖了2011年东日本大地震及其邻近地区的震源区域。自2017年4月以来,S-net已全面开始运作,实时地将…