python读取HDF文件

目录

HDF文件介绍

PyTables


HDF文件及信息查看

HDF官网:The HDF Group - ensuring long-term access and usability of HDF data and supporting users of HDF technologies

Hierarchical Data Format 层次型资料格式

很好用的信息查看软件:HDFview

PyTables

官网:Welcome to PyTables’ documentation! — PyTables 3.7.0 documentation

user guide: PyTables User’s Guide — PyTables 3.7.0 documentation

import matplotlib.pyplot as plt
from tables import *

f="D:\Download\D202107180081468319/FY3C_MERSI_GBAL_L1_20150529_0210_0250M_MS.HDF"

h5file=open_file(f, 'r')

for group in h5file.walk_groups():    
        print(group)
        
for node in h5file:
    print(node)
    
    
dt= h5file.root.Data.EV_250_RefSB_b3 #(CArray(8000, 8192), zlib(5))
plt.contour(dt)
plt.show()

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值