- 积分
- 26293
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-6-1
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
这个数据是别人经过处理的TRMM的激光雷达数据。
我的数据和经纬度信息都是单独放在不同的HDF文件之中。其中lat和lon都是一维数组。data是二维数组12180545*16。
我print出数据信息。
我的问题是我如何重新分配数组,是的经纬度成为二维,data为3维数组。使得经纬度信息和data的信息对应起来?
一下是我print出的数据信息。
Copyright (C) 1995-2013 - All Rights Reserved
University Corporation for Atmospheric Research
NCAR Command Language Version 6.1.2
The use of this software is governed by a License Agreement.
See http://www.ncl.ucar.edu/ for more details.
Variable: flat
Type: file
filename: D:\dropbox\Kong\LAT
path: D:\dropbox\Kong\LAT.HDF
file global attributes:
dimensions:
fakeDim0 = 12180545
variables:
float LAT ( fakeDim0 )
hdf_name : LAT
Variable: flon
Type: file
filename: D:\dropbox\Kong\LON
path: D:\dropbox\Kong\LON.HDF
file global attributes:
dimensions:
fakeDim0 = 12180545
variables:
float LON ( fakeDim0 )
hdf_name : LON
Variable: fdata
Type: file
filename: D:\dropbox\Kong\DATA
path: D:\dropbox\Kong\DATA.HDF
file global attributes:
dimensions:
fakeDim0 = 12180545
fakeDim1 = 16
variables:
float DATA ( fakeDim0,fakeDim1 )
hdf_name : LON
|
|