-
Hello, I tried to run through Writing to LDT output directory: ./
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I strongly suspect this is somewhat related to #1059. Just as step 1 requires HDF4, step 5 requires HDF5 to read the SMAP data (HDF5 files). Unfortunately, our preprocessor checks for HDF5 support do not write an error message to the log if this requirement is not satisfied--it simply skips over the code contained within the I'm also noticing that in this case the ldtlog file will inaccurately indicate that SMAP files are being read because the log message is written before the calls to Rebuilding with HDF5 support is the only way forward with this particular reader. I will open an issue about adding log messages that notify users about the HDF5 requirement. Thanks again for bringing these issues to our attention. |
Beta Was this translation helpful? Give feedback.
I strongly suspect this is somewhat related to #1059. Just as step 1 requires HDF4, step 5 requires HDF5 to read the SMAP data (HDF5 files).
Unfortunately, our preprocessor checks for HDF5 support do not write an error message to the log if this requirement is not satisfied--it simply skips over the code contained within the
#if (defined USE_HDF5)
block.I'm also noticing that in this case the ldtlog file will inaccurately indicate that SMAP files are being read because the log message is written before the calls to
read_NASASMAP_data
andread_SMAPL2sm_data
, the majority of which are skipped if LDT has not been built with HDF5 support.Rebuilding with HDF5 support is the only way forward …