Search found 249 matches

by OB SeaDAS - dshea
Thu Mar 03, 2022 1:21 pm America/New_York
Forum: Questions/Comments
Question: Python3 on Linux
Replies: 5

Re: Python3 on Linux

The problem is that you do not have a program called "python3"

Since you mentioned that you python is version 3 and not version 2.7, you need a link from python3 to python.
Assuming $HOME/bin is in your PATH, make a symbolic link

ln -s `which python` $HOME/bin/python3


don
by OB SeaDAS - dshea
Thu Feb 24, 2022 2:39 pm America/New_York
Forum: Questions/Comments
Question: Parallel OCSSW l2gen code with OpenMP
Replies: 3

Re: Parallel OCSSW l2gen code with OpenMP

OCSSW_MPI=1 is only used to enable a few of the libraries in ocssw/opt/src to be compiled with openmpi support. We have some radiative transfer code that uses MPI on a parallel processing computer we have. After the OCSSW_MPI environment variable is set to 1, make sure you rebuild ocssw/opt/src Ever...
by OB SeaDAS - dshea
Tue Feb 15, 2022 1:08 pm America/New_York
Forum: Questions/Comments
Question: Error downloading manifest.py
Replies: 4

Re: Error downloading manifest.py

OK, minor reconfig of the web server fixed this issue. Download now works.

Thanks for finding this.

don
by OB SeaDAS - dshea
Tue Feb 15, 2022 12:28 pm America/New_York
Forum: Questions/Comments
Question: Error downloading manifest.py
Replies: 4

Re: Error downloading manifest.py

Until we fix this, you can grab the file from here:

https://oceandata.sci.gsfc.nasa.gov/man ... anifest.py

don
by OB SeaDAS - dshea
Thu Jan 13, 2022 10:39 am America/New_York
Forum: Questions/Comments
Question: l2gen not using specific settings
Replies: 9

Re: l2gen not using specific settings

The bug that you are seeing only happens when you use the north,south,east,west parameters. The bug was introduced between V2021.1 and V2021.2. It was fixed in T2021.11 and later If you do not want to install a newer version of the code you can - run lonlat2pixline to find the spix,epix,sline,eline ...
by OB SeaDAS - dshea
Thu Dec 30, 2021 3:33 pm America/New_York
Forum: Questions/Comments
Question: SeaDAS, LUTs
Replies: 6

Re: SeaDAS, LUTs

If you have installed a sensor using the SeaDAS GUI or install_ocssw, the aerosol LUTs will be in:

$OCSSWROOT/share/<sensor>/aerosol/*

Hope that helps.

don
by OB SeaDAS - dshea
Wed Dec 29, 2021 11:43 am America/New_York
Forum: Questions/Comments
Question: L2gen fail with exit code 1
Replies: 13

Re: L2gen fail with exit code 1

Thanks George,

I get the same core dump when producing sst_tripple on a MODIS file. We will enter a bug report. L2gen should catch products that can not be produced and print out a reasonable error.

don
by OB SeaDAS - dshea
Thu Dec 09, 2021 6:41 pm America/New_York
Forum: Questions/Comments
Question: Errors in building ocssw processing executables
Replies: 5

Re: Errors in building ocssw processing executables

Actually I had to fix a few things in the CMakeLists.txt file. You will need to use "--tag T2021.23". You will not be able to build the VIIRS code so do not turn on the BUILD_ALL or BUILD_VIIRS_L1 flag for cmake. The process becomes: export OCSSWROOT=/home/colapao/seadas-7.5.3/ocssw instal...
by OB SeaDAS - dshea
Thu Dec 09, 2021 4:34 pm America/New_York
Forum: Questions/Comments
Question: Errors in building ocssw processing executables
Replies: 5

Re: Errors in building ocssw processing executables

I would suggest not building the VIIRS part for now. I have to make a few sets of libraries to export for that to work. Try this:

Code: Select all

cd /home/colapao/seadas-7.5.3/ocssw/ocssw_src/
rm -rf build
mkdir build
cd build
cmake .. -DBUILD_VIIRS_L1=OFF
make -j 20 install
Let me know how that works.

don
by OB SeaDAS - dshea
Wed Dec 08, 2021 12:00 pm America/New_York
Forum: Questions/Comments
Question: Add new products for l2bin-l3mapgen
Replies: 3

Re: Add new products for l2bin-l3mapgen

All of the programs you mentioned read the product.xml file. Here is a minimum product entry: </product> <product name="my_new_product"> <units>m s^-1</units> <category>Derived</category> <range> <validMin>0</validMin> <validMax>50</validMax> <displayMin>0</displayMin> <displayMax>20</disp...