Page 1 of 1

SeaDAS installation issues

Posted: Wed Aug 18, 2021 8:02 am America/New_York
by ksharsun
I have ran BuildIt.py to build 3rd party libraries and it was successful.

Then I have created a Build folder in $OCSSWROOT/ocssw_src and ran cmake and it was also successful. But I am getting the below error while running 'make' command inside ocssw_src/build/src:

home/sandhani/seadas8.1/ocssw/ocssw_src/oel_hdf4/libl1/l1_viirs_nc.c:11:39: fatal error: Calibrate_Viirs_Connector.h: No such file or directory
compilation terminated.
oel_hdf4/libl1/CMakeFiles/l1.dir/build.make:753: recipe for target 'oel_hdf4/libl1/CMakeFiles/l1.dir/l1_viirs_nc.c.o' failed
make[2]: *** [oel_hdf4/libl1/CMakeFiles/l1.dir/l1_viirs_nc.c.o] Error 1
CMakeFiles/Makefile2:2328: recipe for target 'oel_hdf4/libl1/CMakeFiles/l1.dir/all' failed
make[1]: *** [oel_hdf4/libl1/CMakeFiles/l1.dir/all] Error 2
Makefile:145: recipe for target 'all' failed
make: *** [all] Error 2

I hope this error is due to link failure of viirs lib. Earlier in Seadas 7.5 version, we used to solve this issue by using viirs.ubuntu16.04.gcc5.v7.5.2.tar.gz package.

I have tried to use this same package for SeaDAS 8.1 to rectify this issue but its not working.

So, is there any similar viirs package is available for the SeaDAS latest version?

--
Harish Kumar K S

Re: SeaDAS installation issues

Posted: Fri Aug 20, 2021 1:24 am America/New_York
by ksharsun
Dear Sir,

I have already posted my query in the forum, but I didn't get a response.

I am eagerly waiting for your response.

--
Harish Kumar K S

Re: SeaDAS installation issues

Posted: Fri Aug 20, 2021 9:46 am America/New_York
by OB SeaDAS - dshea
The easiest way to compile our code is to not build the VIIRS L1 hooks.

cd ocssw/ocssw_src
rm -rf build
mkdir build
cd build
cmake .. -DBUILD_VIIRS_L1=0
make -j 10 install

When I get the time, I will make a few tar files for different OSs. The problem is that we are not allowed to distribute the VIIRS source code.

don