How to convert data file from grid-format(lat,lon, time) into a table

1 Ansicht (letzte 30 Tage)
HN
HN am 26 Mai 2019
Kommentiert: HN am 28 Mai 2019
I have downloaded precipitation file of U Delaware Dataset in .nc format and opened with the ncread. This file is as follows precip 720×360×1416 Including Lat(360×1), Lon (720×1) and Time(1416×1) for 1901/01-2017/12.
I want to change this file to a table for any year as follows
  1. Cordinate file 2592200×2
  2. Data file 12×2592200
where
720×360=2592200

Akzeptierte Antwort

KSSV
KSSV am 27 Mai 2019
x = 1:10 ;
y = 1:5 ;
[X,Y] = meshgrid(x,y) ;
A = rand(5,10,10) ;
% repeat spatial matrix
X = repmat(X,1,1,10) ;
Y = repmat(Y,1,1,10) ;
iwant = [X(:) Y(:) A(:)]

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by