ACCESS TO DATA CONTENT
-
- Subject Matter Expert
- Posts: 165
- Joined: Mon Mar 22, 2021 3:55 pm America/New_York
- Has thanked: 1 time
- Been thanked: 11 times
Re: ACCESS TO DATA CONTENT
Hello,
Here is a sample of how to simply open CALIPSO file in HDF using MATLAB:
If you would like to read and plot CALIPSO data, examples can be found on HDF-EOS website:
http://hdfeos.org/zoo/index_openLaRC_Examples.php
Hope this helps, please let us know if you have anymore questions.
Regards,
ASDC User Services
Here is a sample of how to simply open CALIPSO file in HDF using MATLAB:
Code: Select all
%Tested with MATLAB R2021a
import matlab.io.hdf4.*
% Open the HDF4 File.
FILE_NAME = 'CAL_LID_L2_VFM-ValStage1-V3-41.2021-11-29T23-32-39ZD.hdf';
SD_id = sd.start(FILE_NAME, 'rdonly');
http://hdfeos.org/zoo/index_openLaRC_Examples.php
Hope this helps, please let us know if you have anymore questions.
Regards,
ASDC User Services