Search found 495 matches
- Fri Feb 24, 2023 3:55 pm America/New_York
- Forum: Questions/Comments
- Question: Sentinel 2B SeaDAS with blank Rrs
- Replies: 8
Re: Sentinel 2B SeaDAS with blank Rrs
It turns out I am able to do l2gen on the MSI_S2A file you provided and created an L2 file with valid Rrs data
- Thu Feb 23, 2023 11:08 am America/New_York
- Forum: Questions/Comments
- Question: l2gen bug in setting subsetting options
- Replies: 2
Re: l2gen bug in setting subsetting options
Yes, it's a known bug. For resolution=250, 500, the work around is to do l1aextrract_modis first and the do l2gen without subset.
Here is a post that might be helpful -- viewtopic.php?p=11063&hilit=l2gen#p11029
Here is a post that might be helpful -- viewtopic.php?p=11063&hilit=l2gen#p11029
- Fri Feb 17, 2023 10:37 am America/New_York
- Forum: Questions/Comments
- Question: Sentinel 2B SeaDAS with blank Rrs
- Replies: 8
Re: Sentinel 2B SeaDAS with blank Rrs
You don't need to alter anything if you want to do l2gen on GUI with default values. However, if you want to do l2gen with "Multi-scattering with MUMM correction and MUMM NIR calculation", you need to choose "-10: Multi-scattering with MUMM correction and MUMM NIR calculation" fo...
- Fri Feb 17, 2023 10:24 am America/New_York
- Forum: Questions/Comments
- Question: Problem on MODIS L2 data processed
- Replies: 1
Re: Problem on MODIS L2 data processed
Please share what version of SeaDAS and what tag of SeaDAS Science Processing Package (OCSSW) you are using. Please also share the name of your L1A file, so we can try to replicate the error.
- Mon Feb 13, 2023 10:43 am America/New_York
- Forum: Questions/Comments
- Question: How to average images with clouds and ignore these cloud pixels?
- Replies: 11
Re: How to average images with clouds and ignore these cloud pixels?
Thanks George for pointing out the difference between the average of geophysical parameters and the math average. Hope I get it right this time -- ((chlor_a_M >= 0.0 ? chlor_a_M : 0) +( chlor_a_D0 >= 0.0 ? chlor_a_D0 : 0) + (chlor_a_D1 >= 0.0 ? chlor_a_D1 : 0)) / (((chlor_a_M >= 0.0 ? 1 : 0) + (chlo...
- Fri Feb 10, 2023 10:21 am America/New_York
- Forum: Questions/Comments
- Question: How to average images with clouds and ignore these cloud pixels?
- Replies: 11
Re: How to average images with clouds and ignore these cloud pixels?
I used the expression you gave and I got a full white image with NaN pixels. Should I do chlor_a < 0 instead of chlor_a > 0? It should be chlor_a > 0 Make sure your files are opened as [1], [2], [3], when you use the example expression. Here is the screenshot of BandMath GUI. Make sure you uncheck ...
- Thu Feb 09, 2023 10:40 am America/New_York
- Forum: Questions/Comments
- Question: How to average images with clouds and ignore these cloud pixels?
- Replies: 11
Re: How to average images with clouds and ignore these cloud pixels?
Yes. Here is the content of myGraph.xml -- <graph id="Graph"> <version>1.0</version> <node id="Read"> <operator>Read</operator> <sources/> <parameters class="com.bc.ceres.binding.dom.XppDomElement"> <useAdvancedOptions>false</useAdvancedOptions> <file>/Users/bingyang/Sc...
- Tue Feb 07, 2023 5:15 pm America/New_York
- Forum: Questions/Comments
- Question: How to average images with clouds and ignore these cloud pixels?
- Replies: 11
Re: How to average images with clouds and ignore these cloud pixels?
If you open 3 L3m files in GUI, you can use the Math Band with the following expression to calculate the chlor_a_mean for the 3 files (($1.chlor_a > 0.0 ? $1.chlor_a : NaN) + ($2.chlor_a > 0.0 ? $2.chlor_a : NaN) + ($3.chlor_a > 0.0 ? $3.chlor_a : NaN)) / 3.0 Screen Shot 2023-02-08 at 11.10.51 AM.png
- Tue Feb 07, 2023 12:18 pm America/New_York
- Forum: Questions/Comments
- Question: Configure Python interpreter used by SeaDAS
- Replies: 5
Re: Configure Python interpreter used by SeaDAS
If you can use /usr/local/bin/python3 for SeaDAS, it might be easier just to do .
Otherwise add
to your bash or zsh file, start a new terminal, and start SeaDAS in that terminal.
Code: Select all
/usr/local/bin/pip3 install requests
Otherwise add
Code: Select all
export PATH="/usr/local/bin:$PATH"
- Tue Feb 07, 2023 10:51 am America/New_York
- Forum: Questions/Comments
- Question: L2GEN with Landsat 8/9
- Replies: 3
Re: L2GEN with Landsat 8/9
That's interesting. I can't replicate the error you've got. Can you do SeaDAS-Toolbox -> SeaDAS/System Info and post it here? 1. Try to run l2gen without ancillary files after deleting /root/SeaDAS/ocssw/var/anc/2023/021 2. Try to run l2gen with freshly downloaded ancillary files after clicking &quo...