Regriding of nc file

조회 수: 2 (최근 30일)
Tanmoyee Bhattacharya
Tanmoyee Bhattacharya 2017년 9월 26일
답변: 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