Search found 3 matches

by clynnes
Sat Oct 23, 2021 7:32 pm America/New_York
Forum: Questions/Comments
Question: How do I access data via OPeNDAP in SeaDAS 8.1.0?
Replies: 1

How do I access data via OPeNDAP in SeaDAS 8.1.0?

Just downloaded and installed SeaDAS 8.1.0, and I am trying to figure out how to access data in an OPeNDAP server. The functionality seems to have been there in SeaDAS 7, judging by online searches, but I cannot find it anywhere in any of the menu options of SeaDAS 8, or in the help menu.
by clynnes
Wed Apr 14, 2021 2:33 pm America/New_York
Forum: Questions/Comments
Question: What is the easiest way to get full-resolution geolocation into a MYD11_L2 LST file?
Replies: 2

Re: What is the easiest way to get full-resolution geolocation into a MYD11_L2 LST file?

I want to use the data in native sensor coords, not reprojected. Eventually I developed a recipe using NCO: #! /usr/bin/env python import os import sys lst_h4 = sys.argv[1] geo_h4 = sys.argv[2] # Convert from HDF4 to netcdf-compatible HDF5 so we can use NCO lst_h5 = lst_h4.replace('.hdf','.h5') os.s...
by clynnes
Fri Apr 09, 2021 10:29 am America/New_York
Forum: Questions/Comments
Question: What is the easiest way to get full-resolution geolocation into a MYD11_L2 LST file?
Replies: 2

What is the easiest way to get full-resolution geolocation into a MYD11_L2 LST file?

I want to visualize MYD11_L2 in Panoply, so I need lat/long at the same resolution as the LST data; Panoply does not grok the Coarse lat/longs. I ended up dumping lat/lon to text from MYD03 with hdp, converting MYD11_L2 to HDF5, ncdumping to CDL, and then vi’ing the CDL to flatten the hierarchy and ...