Merging multiple .txt files into one NetCDF file
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I have climate data from different stations in 37 separate .txt files (one per station). The text files all have 10 columns with different variables (precpitation, lat/lon etc), and one row per day (about 90 days), they all have the same days. I want to merge these .txt files into one .nc file. How would I go about doing that?
0 个评论
采纳的回答
Jyotsna Talluri
2020-4-23
First,you can read the text files into tables of data using readtable. Merge the data of the 37 tables to a single table.Convert the table of data to a matrix as table datatype is not supported to write to a NetCDF file. Create a NetCDF file and a variable with 90*37 rows and 10 columns as dimensions using nccreate function.Write the matrix of data to the created variable using ncwrite function.
Refer to the documentation links of the below functions
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 NetCDF 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!