How can I merge two netCDF files?

조회 수: 5 (최근 30일)
Luis Caja
Luis Caja 2021년 7월 15일
답변: KSSV 2021년 7월 15일
Good morning for all.
I am trying to merge two netCDF files in one. One of the files has data from 26 of February to 28 February and the other has data from 28 February to 2 March, both from 2020. I am trying to create a new one from 26 February to 2 March. I have tried to merge with ncwriteschema and ncinfo but it doesnt what I want to do.
I am attaching the prove that I have done
I hope that you can help me.
Write me if you need the files
Thank you
Greetings
  댓글 수: 2
KSSV
KSSV 2021년 7월 15일
편집: KSSV 2021년 7월 15일
One option is read each file's data and write a new one.
Luis Caja
Luis Caja 2021년 7월 15일
Hi.
Can you explain me a bit how can i do that?
Thanks

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2021년 7월 15일
To read ncfile data, just you need to know only two functions,
  1. ncdisp - this will give you information about what variables are present in the file, which will be later useful to read.
  2. ncread - this is used to read the variables into MATLAB.
To write data into ncfile, you need to know just two functions.
  1. nccreate - this is used to create a variable name and dimensions needed.
  2. ncwrite - this is used to write the data into creted variable.
You try out with these function. If not successfull you are welcome.

카테고리

Help CenterFile Exchange에서 NetCDF에 대해 자세히 알아보기

태그

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by