Until we fix this, you can grab the file from here:
https://oceandata.sci.gsfc.nasa.gov/man ... anifest.py
don
Search found 265 matches
- Tue Feb 15, 2022 12:28 pm America/New_York
- Forum: Home
- Question: Error downloading manifest.py
- Replies: 4
- Thu Jan 13, 2022 10:39 am America/New_York
- Forum: Home
- 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 ...
- Thu Dec 30, 2021 3:33 pm America/New_York
- Forum: Home
- 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
$OCSSWROOT/share/<sensor>/aerosol/*
Hope that helps.
don
- Wed Dec 29, 2021 11:43 am America/New_York
- Forum: Home
- 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
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
- Thu Dec 09, 2021 6:41 pm America/New_York
- Forum: Home
- 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...
- Thu Dec 09, 2021 4:34 pm America/New_York
- Forum: Home
- 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:
Let me know how that works.
don
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
don
- Wed Dec 08, 2021 12:00 pm America/New_York
- Forum: Home
- 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...
- Fri Oct 22, 2021 8:49 am America/New_York
- Forum: Home
- 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
Thanks again for finding this.
don
- Thu Oct 21, 2021 1:04 pm America/New_York
- Forum: Home
- 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...
- Wed Oct 20, 2021 11:49 am America/New_York
- Forum: Home
- 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...