全球冰川均衡调整(GIA)数据下载链接汇总(续)

前一专栏我们介绍了一些常用的GIA模型和对应的下载地址,但是不少数据是提供的球谐数据,对于部分用户使用不方便,这里分享NASA发布的几个格网的GIA(PGR)模型产品,其下载地址为:Files (nasa.gov)

产品主要包含三类GIA模型,提供的产品为0.5°×0.5°,包含质量形式的变化速率和大地水准面的变化速率(m/yr)。GIA模型包括:

Geruo

ICE5G-Geruo-A; A, G., J. Wahr, and S. Zhong (2013) "Computations of the viscoelastic response of a 3-D compressible Earth to surface loading: an application to Glacial Isostatic Adjustment in Antarctica and Canada", Geophys. J. Int., 192, 557–572, doi: 10.1093/gji/ggs030'

Caron

Caron, L., E.R. Ivins, E. Larour, S. Adhikari, J. Nilsson, and G. Blewitt: GIA model statistics for GRACE hydrology, cryosphere and ocean science, Geophys. Res. Lett., 45, 2018'

ICE6G-D

ICE6G-D; Peltier, W. R., D. F. Argus, and R. Drummond (2018) Comment on the paper by Purcell et al. 2016 entitled An assessment of ICE-6G_C (VM5a) glacial isostatic adjustment model, J. Geophys. Res. Solid Earth, 122, doi:10.1002/2016JB013844'

matlab读取代码和结果图如下:

file1 = 'Tellus_GIA_L3_A-WAHR_ICE5G-VM2_0.5-DEG_v1.0.nc';
file2 = 'Tellus_GIA_L3_CARON-2018_0.5-DEG_v1.0.nc';
file3 = 'Tellus_GIA_L3_PELTIER_ICE6G-D_0.5-DEG_v1.0.nc';
ncdisp(file3)
lon1 = ncread(file1,'lon');
lat1 = ncread(file1,'lat');
rg1_m = ncread(file1,'GIA_mass_rate_3degJPL_MSCN');
rg1_g = ncread(file1,'GIA_geoid_rate_3degJPL_MSCN');
[lon1,lat1] = meshgrid(lon1,lat1);
O1.lon = lon1;O1.lat = lat1;O1.rg = rg1_m'*100;
subplot(3,2,1),rg_plot(O1),h = colorbar,title('mass'),h.Label.String = 'cm/yr';h.Label.FontSize = 8;
O1.lon = lon1;O1.lat = lat1;O1.rg = rg1_g'*100; % cm/yr
subplot(3,2,2),rg_plot(O1),h = colorbar,title('geoid'),h = colorbar,h.Label.String = 'cm/yr';h.Label.FontSize = 8;


lon1 = ncread(file2,'lon');
lat1 = ncread(file2,'lat');
rg1_m = ncread(file2,'GIA_mass_rate_3degJPL_MSCN');
rg1_g = ncread(file2,'GIA_geoid_rate_3degJPL_MSCN');
[lon1,lat1] = meshgrid(lon1,lat1);
O1.lon = lon1;O1.lat = lat1;O1.rg = rg1_m'*100;
subplot(3,2,3),rg_plot(O1),h = colorbar,title('mass'),h.Label.String = 'cm/yr';h.Label.FontSize = 8;
O1.lon = lon1;O1.lat = lat1;O1.rg = rg1_g'*100; % cm/yr
subplot(3,2,4),rg_plot(O1),h = colorbar,title('geoid'),h = colorbar,h.Label.String = 'cm/yr';h.Label.FontSize = 8;


lon1 = ncread(file3,'lon');
lat1 = ncread(file3,'lat');
rg1_m = ncread(file3,'GIA_mass_rate_3degJPL_MSCN');
rg1_g = ncread(file3,'GIA_geoid_rate_3degJPL_MSCN');
[lon1,lat1] = meshgrid(lon1,lat1);
O1.lon = lon1;O1.lat = lat1;O1.rg = rg1_m'*100;
subplot(3,2,5),rg_plot(O1),h = colorbar,title('mass'),h.Label.String = 'cm/yr';h.Label.FontSize = 8;
O1.lon = lon1;O1.lat = lat1;O1.rg = rg1_g'*100; % cm/yr
subplot(3,2,6),rg_plot(O1),h = colorbar,title('geoid'),h = colorbar,h.Label.String = 'cm/yr';h.Label.FontSize = 8;

♥欢迎点赞收藏♥

  • 29
    点赞
  • 24
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

我是水怪的哥

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值