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

조회 수: 1 (최근 30일)
HN
HN 2019년 5월 26일
댓글: HN 2019년 5월 28일
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

채택된 답변

KSSV
KSSV 2019년 5월 27일
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(:)]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by