Search found 469 matches

by OB SeaDAS - xuanyang02
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...
by OB SeaDAS - xuanyang02
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
by OB SeaDAS - xuanyang02
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

Code: Select all

/usr/local/bin/pip3 install requests
.
Otherwise add

Code: Select all

export PATH="/usr/local/bin:$PATH"
to your bash or zsh file, start a new terminal, and start SeaDAS in that terminal.
by OB SeaDAS - xuanyang02
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...
by OB SeaDAS - xuanyang02
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 > ...
by OB SeaDAS - xuanyang02
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.
by OB SeaDAS - xuanyang02
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
by OB SeaDAS - xuanyang02
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...
by OB SeaDAS - xuanyang02
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/...
by OB SeaDAS - xuanyang02
Wed Feb 01, 2023 12:17 pm America/New_York
Forum: Questions/Comments
Question: l2mapgen by command line
Replies: 2

Re: l2mapgen by command line

It's hard to tell if a .xml file is doing what it is supposed to do by just looking at it. If you share the gpt command line with the ifile name, I can test it for you. As we discussed in the post https://forum.earthdata.nasa.gov/viewtopic.php?t=3823#p13616, SeaDAS can not write to netCDF4-CF at the...