Search found 470 matches
- 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: 4
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...
- Mon Feb 06, 2023 4:35 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?
I assume you used collocation tool to put the L3m files together. https://seadas.gsfc.nasa.gov/help-8.3.0/collocation/CollocationTool.html Here is an example expression for the Math Band Tool for 3 files -- ((chlor_a_M > 0.0 ? chlor_a_M : NaN) + (chlor_a_D0 > 0.0 ? chlor_a_D0 : NaN) + (chlor_a_D1 > ...
- Fri Feb 03, 2023 5:33 pm America/New_York
- Forum: Questions/Comments
- Question: L2GEN with Landsat 8/9
- Replies: 3
Re: L2GEN with Landsat 8/9
l2gen on Landsat 8 collection2 seems work with SeaDAS 8.3.0 and SeaDAS Processors (OCSSW) V2022.3.
Please let us know your SeaDAS version and SeaDAS processors tag.
Please let us know your SeaDAS version and SeaDAS processors tag.
- Fri Feb 03, 2023 10:27 am America/New_York
- Forum: Questions/Comments
- Question: Input output L2GEN
- Replies: 2
Re: Input output L2GEN
Please make sure you have olcis3a and/or olcis3b installed.
Also choose xfdumanifest.xml (with absolute path) as ifile on l2gen GUI
Also choose xfdumanifest.xml (with absolute path) as ifile on l2gen GUI
- Fri Feb 03, 2023 10:23 am America/New_York
- Forum: Questions/Comments
- Question: L2GEN
- Replies: 1
Re: L2GEN
On the SeaDAS GUI, choose SeaDAS-Toolbox -> Install/Update SeaDAS Processors, check olcis3a and/or olcis3b, and click run. https://seadas.gsfc.nasa.gov/help-8.3.0/processors/InstallOCSSW.html Choose SeaDAS-Toolbox -> l2gen, choose xfdumanifest.xml as your ifile, and click run https://seadas.gsfc.nas...
- Wed Feb 01, 2023 4:06 pm America/New_York
- Forum: Questions/Comments
- Question: Problems in updating LUTs and installing OCSSW processor
- Replies: 8
Re: Problems in updating LUTs and installing OCSSW processor
If you have another copy of python3 in /usr/local/bin/, it might be easier to point SeaDAS to use that copy of python3 by adding this line export PATH="/usr/local/bin/python3:$PATH" to your bash file. And then run: /usr/local/bin/pip3 install requests If you still want to use /Users/masud/...