Regriding of nc file

2 次查看(过去 30 天)
Tanmoyee Bhattacharya
回答: KSSV 2017-9-26
I have a cmip5 nc file of 0.5 degree.LAT LON Pressure and time these are the four dimensions of this nc file.The time is from 1979 to 2005.How can we regrid it to 0.05 degree. lat range-31.500:0.5:32.500 lon range-76.500:0.5:78.000
I have no idea about interpolation.Can anyone help me?

回答(1 个)

KSSV
KSSV 2017-9-26
lat = 31.500:0.5:32.500 ;
lon = 76.500:0.5:78.000 ;
%%REgrid
ds = 0.05 ;
loni = min(lon):ds:max(lon) ;
lati = min(lat):ds:max(lat) ;
%
[Loni,Lati] = meshgrid(loni,lati) ;
And then you can use interp2 to get your 3D values on regirdded data.

类别

Help CenterFile Exchange 中查找有关 Text Data Preparation 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by