Search found 255 matches

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...
by OB SeaDAS - dshea
Fri Oct 22, 2021 8:49 am America/New_York
Forum: Questions/Comments
Question: l2gen segmentation fault
Replies: 12

Re: l2gen segmentation fault

Yes, the n,s,e,w params for l2gen are more convenient than grabbing the output of lonlat2pixline. I am almost done fixing the bug. Expect the fix in the next release.

Thanks again for finding this.

don
by OB SeaDAS - dshea
Thu Oct 21, 2021 1:04 pm America/New_York
Forum: Questions/Comments
Question: l2gen segmentation fault
Replies: 12

Re: l2gen segmentation fault

OK, looks like the n,s,e,w params for l2gen processing VIIRS has a nasty bug in it. Here is what I suggest for your processing stream. - run lonlat2pixline with the GEO file and n,s,e,w to get start/end, line/pixel for region of interest - run l2gen with L1A and GEO file and start/end, line/pixel pa...
by OB SeaDAS - dshea
Wed Oct 20, 2021 11:49 am America/New_York
Forum: Questions/Comments
Question: l2gen segmentation fault
Replies: 12

Re: l2gen segmentation fault

I can reproduce the seg fault on my Linux machine. Seems to work fine on my mac, but that is how these memory issues usually behave. There is an easy work around that you can put into your processing stream. l2gen works fine if you use an L1B file as the ifile instead of an L1A. Using the example fi...
by OB SeaDAS - dshea
Tue Oct 19, 2021 1:16 pm America/New_York
Forum: Questions/Comments
Question: how to use IOP models with GOCI-II
Replies: 2

Re: how to use IOP models with GOCI-II

The best way to solve this is to write a GOCI-II reader for l2gen. Currently, we do not have plans to write one. We do supply the source code, so others can contribute. Here is what I see as the major issues for you: - l2gen is written in C/C++, so it is easiest to write the reader in C++. - l2gen d...