RSL_HDF_TO_RADAR is used to read from a TSDIS HDF. This function ingests one volume scan (VOS) from a 1C-51 HDF file and returns the data in a radar structure. The following example shows how to retrieve the first VOS in an HDF file.
radar = rsl_hdf_to_radar('1C51.980820.1.MELB.3.HDF')
To access a VOS other than the first, use the VOS_NUMBER keyword to specify its position within the HDF file. In this example, the second VOS is read.
moreradar = rsl_hdf_to_radar('1C51.980820.1.MELB.3.HDF', vos_number=2)