Search found 448 matches

by OB ODPS - towens
Sat Jul 13, 2024 10:57 pm America/New_York
Forum: Home
Question: Get Level0 files size from curl command line
Replies: 3

Re: Get Level0 files size from curl command line

Use wget and check the return code on the transfer? #!/bin/bash url=https://oceandata.sci.gsfc.nasa.gov/getfile file=MOD00.P2002165.0000_1.PDS.bz2 wget ${url}/${file} &> /dev/null if [[ "$?" != 0 ]]; then echo "Error downloading $file" else echo "Success" fi Either ...
by OB ODPS - towens
Sat Jul 13, 2024 1:08 am America/New_York
Forum: Home
Question: Missing data: GOCI 05/05/12 00
Replies: 2

Re: Missing data: GOCI 05/05/12 00

COMS_GOCI_L1B_GA_20120505001643.he5 was lost when a storage device failed, and is missing from our archive. We tried to recover the file from KOSC and it was no longer available. In the past they have withdrawn files after they were published, due to discovered QC problems. https://kosc.kiost.ac.kr/...
by OB ODPS - towens
Fri Jul 12, 2024 4:12 pm America/New_York
Forum: Home
Question: VIIRS subscriptions not updated
Replies: 7

Re: VIIRS subscriptions not updated

The GPS on SNPP stopped functioning so there are no accurate geolocation data. VIIRS processing was halted until the GPS is reactivated.

Tommy
by OB ODPS - towens
Tue Jul 09, 2024 11:48 am America/New_York
Forum: Home
Question: Get Level0 files size from curl command line
Replies: 3

Re: Get Level0 files size from curl command line

Since the files are bz2 compressed, you can run the

Code: Select all

bunzip2 -t <file>
test command. If the download is incomplete, the file will not have a valid bz2 structure and the test will return a non-zero exit status.

Tommy
by OB ODPS - towens
Thu Jul 04, 2024 8:56 pm America/New_York
Forum: Home
Question: How to access PACE OCI Level-2 Regional Surface Reflectance data?
Replies: 3

Re: How to access PACE OCI Level-2 Regional Surface Reflectance data?

OCI Surface Reflectance products are still under development and are not yet distributed publicly.

Tommy
by OB ODPS - towens
Thu Jul 04, 2024 8:37 pm America/New_York
Forum: Home
Question: Data Delay on PACE OCI?
Replies: 1

Re: Data Delay on PACE OCI?

We have just completed the V2.0 reprocessing of OCI data. There will not be any further production of the preliminary V1.0 products.

Tommy
by OB ODPS - towens
Sat Jun 29, 2024 2:51 pm America/New_York
Forum: Home
Question: JPSS1 VIIRS L2 containing suspect "CI" metadata
Replies: 2

Re: JPSS1 VIIRS L2 containing suspect "CI" metadata

There were some changes to the processing scripts introduced last week and these files look to have processed while the scripts were in flux. I will reprocess them to get the correct metadata in the files, but the differences are only in the metadata.

Tommy
by OB ODPS - towens
Fri Jun 28, 2024 11:37 am America/New_York
Forum: Home
Question: MODIS Data processing with OCSSW
Replies: 2

Re: MODIS Data processing with OCSSW

One thing I noticed:

Code: Select all

Failed: 'l2bin prodtype=regional ofile=MOD00.P2024177.1600_1.PDS.sst.L3b.nc infile=MOD00.P2024177.1600_1.PDS.sst.L2.nc resolution=Q average=area suite=SST l3bprod=sst', error 28160
average=area is not an l2bin option

You can apply interp=area to map the L3b to L3m

Tommy
by OB ODPS - towens
Mon Jun 03, 2024 9:56 am America/New_York
Forum: Home
Question: insitu data acces
Replies: 1

Re: insitu data acces

try the SeaWiFS Bio-optical Archive and Storage System (SeaBASS)

https://seabass.gsfc.nasa.gov/

Tommy
by OB ODPS - towens
Thu May 16, 2024 10:09 am America/New_York
Forum: Home
Question: MODIS data process SeaDAS
Replies: 1

Re: MODIS data process SeaDAS

The MERRA2 optimal ancillary data for 2024-04-18 (2024109) will not be available until at least May 21, 2024.

Tommy