Search found 266 matches

by OB SeaDAS - dshea
Wed Aug 26, 2020 3:14 pm America/New_York
Forum: Home
Question: OLI L2 data
Replies: 6

OLI L2 data

l2flags is a bit field.  Your example breaks down like this:

decimal = 2112
hex = 0x0840
binary = 0000 1000 0100 0000

That means bit 6 and bit 11 are on.  The first bit is on the right and you start numbering the bits at 0

bit 6 = 64 = COASTZ
bit 11 = 2048 = TURBIDW

don
by OB SeaDAS - dshea
Thu Jul 30, 2020 9:13 am America/New_York
Forum: Home
Question: gpt.sh reprojection issue
Replies: 3

gpt.sh reprojection issue

Your XML file looks like you are asking for 9 millimeter wide pixels.  That would be too many pixels, which you do not have enough memory to store.  You are trying to allocate about 5 PetaBytes of memory.

don
by OB SeaDAS - dshea
Mon Jul 27, 2020 9:46 am America/New_York
Forum: Home
Question: l3mapgen/smigen redux
Replies: 11

l3mapgen/smigen redux

Look at the function:

get_minmax_rowcol()
file: smigen.cpp
line: 2324

Looks like line 2331 does truncate.  Unfortunately, I like the way l3mapgen does it better.

don
by OB SeaDAS - dshea
Fri Jul 24, 2020 4:34 pm America/New_York
Forum: Home
Question: l3mapgen/smigen redux
Replies: 11

l3mapgen/smigen redux

Barry,I processed the bin file you sent me with smigen and l3mapgen.  I get the same results as you with l3mapgen having an extra line.  It looks like smigen is using a float for the resolution calculations and l3mapgen is using doubles.  The only thing I came up with that could help ...
by OB SeaDAS - dshea
Wed Jul 22, 2020 9:15 am America/New_York
Forum: Home
Question: Trouble Building Third Party Libraries
Replies: 6

Trouble Building Third Party Libraries

I just made a machine with Ubuntu 16.04, installed cmake 3.18.0, git, bison, flex, lib32z1-dev

opt/src would not build unless I deleted

opt/bin
opt/lib

then BuildIt worked fine.

don
by OB SeaDAS - dshea
Thu Jul 16, 2020 7:09 pm America/New_York
Forum: Home
Question: l3mapgen/smigen redux
Replies: 11

l3mapgen/smigen redux

Sure,

Not sure if it will work, but send it to my email:

don.shea@nasa.gov

don
by OB SeaDAS - dshea
Thu Jul 16, 2020 8:41 am America/New_York
Forum: Home
Question: l3mapgen/smigen redux
Replies: 11

l3mapgen/smigen redux

Can you put a bin file that exhibits this problem somewhere where I can grab it.  Then send me the exact command line for smigen and l3mapgen and I will take a look at this.

don
by OB SeaDAS - dshea
Thu Jul 02, 2020 7:18 pm America/New_York
Forum: Home
Question: L2gen processing for 10m Sentinel 2
Replies: 7

L2gen processing for 10m Sentinel 2

l2gen will only output 20m resolution as Sean explained earlier in this thread.  There are not enough bands at 10m for l2gen to do any useful ocean calculations.  Sorry, but we do not have any plans to output 10m resolution for Sentinel-2 MSI.

don
by OB SeaDAS - dshea
Tue Jun 30, 2020 11:12 pm America/New_York
Forum: Home
Question: make command error when building ocssw binaries
Replies: 4

make command error when building ocssw binaries

How did you get the lib3 source files (ocssw/opt/src)?  When using the SeaDAS 7.5.3 GUI or the install_ocssw.py script you will get proj4 version 4.9.2.  It is true that our latest in-house development code is using proj version 7.0.0, but it is strange that you have that version using ins...
by OB SeaDAS - dshea
Tue Jun 09, 2020 3:37 pm America/New_York
Forum: Home
Question: Rrs_556 not found in default product list?
Replies: 2

Rrs_556 not found in default product list?

Barry,

My first guess is that since smigen is deprecated it does not know anything about JPSS.  It is probably using the wavelengths for NPP which has 551 instead of 556.  Might I suggest using l3mapgen which is what the production system here uses to make SMIs.

don