Your number represents "days since 1950-01-01 00:00:00 UTC". Most netcdf times are stored like this, you need to look at attribute on the time field in the netcdf file to so see whether it is hours since or days since and the date of origin. To convert do this:
epoch = datetime(1950,01,01);
time = epoch + days(jd);
1 Comment
Direct link to this comment
https://au.mathworks.com/matlabcentral/answers/618478-convert-julian-date-to-yyyy-mm-dd#comment_1071263
Direct link to this comment
https://au.mathworks.com/matlabcentral/answers/618478-convert-julian-date-to-yyyy-mm-dd#comment_1071263
Sign in to comment.