i have attached two csv file i want to convert "GLDAS_NOA​H10......c​sv"file in the format of "Apr-02.csv".please provide me the code

조회 수: 1 (최근 30일)
convert the GLDAS ......csv in the format of Apr-02.csv

채택된 답변

KSSV
KSSV 2018년 6월 26일
file = 'GLDAS_NOAH10_M.A200201.021.csv' ;
[num,txt,raw] = xlsread(file) ;
lon = num(1,:) ; lon(1) = [] ;
lat = num(:,1) ; lat(1) = [] ;
A = num(2:end,2:end) ;
[X,Y] = meshgrid(lon,lat) ;
T = [X(:) Y(:) A(:)] ;
xlswrite('check.xlsx',T)

추가 답변 (1개)

TAPAS
TAPAS 2018년 6월 26일
I have attached this .nc4 format file.I want to extract a particular parameter eg. "SoilMoi0_10cm_inst" but the extracted file will be in the .xlsx format along with long and lat and the data in three column one for long,one for lat and one for value.

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by