How to read and plot nc4 files?
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have downloaded huge nc4-files from NASA through matlab. Just wondering if someone know how to read spesific things in these files and then plot them?
0 commentaires
Réponse acceptée
KSSV
le 8 Mai 2017
Read about ncdisp, ncread
These two should be enough to read the data.
Plus de réponses (1)
kk1991
le 8 Mai 2017
1 commentaire
KSSV
le 8 Mai 2017
It is very much possible.....Read the documentation....
lon = ncread('myfile.nc','lon') ;
lat = ncread('myfile.nc','lat') ;
data = ncread('myfile.nc','data') ;
% plot here
And please don't type your comment sin answer box. You comment under the answer/ comment.
Voir également
Catégories
En savoir plus sur Standard File Formats dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!