Search found 688 matches
- Wed Aug 17, 2022 10:54 am America/New_York
- Forum: Questions/Comments
- Question: Reprojecting Modis data using python
- Replies: 5
Re: Reprojecting Modis data using python
ESA SNAP snappy uses the jpy java-python bridge and can map MODIS level-2 files, but the mapped data will be a Java object so there is consierable overhead if you want the mapped data in Python. For native Python with MODIS data: https://python-geotiepoints.readthedocs.io/en/latest/#example-aqua-ter...
- Tue Aug 16, 2022 11:00 am America/New_York
- Forum: Questions/Comments
- Question: Java JRE issue
- Replies: 5
Re: Java JRE issue
Hello, I have just installed SeaDAS 8.2 on Ubuntu 18.04 But when I run it, I have a fatal error message like below: # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f34d2b72db9, pid=7643, tid=0x00007f343cc77700 # # JRE version: Java(TM) SE Runtime ...
- Fri Jul 08, 2022 7:12 am America/New_York
- Forum: Questions/Comments
- Question: SeaDAS MODIS Cloud Mask
- Replies: 3
Re: SeaDAS MODIS Cloud Mask
The problem I'm running into here is that the MODIS product MOD35_L2 isn't an easy binary mask, the actual cloud mask is a 48-bit band that is kind of tricky to work with, so it doesn't even show up in the "Bands" section of its product. Show single flags isn't an option for this product ...
- Thu Jun 02, 2022 12:44 pm America/New_York
- Forum: Questions/Comments
- Question: SeaDAS 8 install_OCSSW problem with python requests
- Replies: 45
Re: SeaDAS 8 install_OCSSW problem with python requests
[...] The simplest solution is to append that python path to your sys.path list. In your notebook, first try: import sys sys.path.append('my/path/to/module/folder') The popularity of Python means there are more and more clashes between very different libraires with the same name as well as multiple...
- Wed Jun 01, 2022 12:37 pm America/New_York
- Forum: Questions/Comments
- Question: ‘p’ is not recognized as an internal or external command, operable program or batch file when using wget on Windows10
- Replies: 5
Re: ‘p’ is not recognized as an internal or external command, operable program or batch file when using wget on Windows1
Although they don't seem to mention it, the instructions at <https://oceancolor.gsfc.nasa.gov/data/download_methods/> are for linux or macOS and will need extensive changes for use on Windows. In my experience, there are many versions of wget.exe for Windows, but many are old or otherwise limited an...
- Sat Apr 30, 2022 11:19 am America/New_York
- Forum: Questions/Comments
- Question: l2gen Try doing atomsphreic correction
- Replies: 4
Re: l2gen Try doing atomsphreic correction
Ubuntu20 under VMWare. It's very vary Strange. I just update my OCSSW with selecting the "Clean install", and then I did it. Thank you a lot for your reply! I saw an error similar to your report: -E- Invalid argument "avw_coef" avw_coef (string) (current=[-1.8010144475E+05,1.786...
- Tue Apr 26, 2022 2:25 pm America/New_York
- Forum: Questions/Comments
- Question: Failed to compile OCSSW on Debian 11
- Replies: 2
Re: Failed to compile OCSSW on Debian 11
You probably need to add `--opt` to get and some sensors to your command line. You should end up with .
Code: Select all
./install_ocssw --bin --opt --install_dir $seadas_dir --tag V2022.0 ...
Code: Select all
$OCSSWROOT/opt/lib/libnetcdff.so.7
- Sat Mar 26, 2022 7:53 pm America/New_York
- Forum: Questions/Comments
- Question: Why Kd490?
- Replies: 5
Re: Why Kd490?
There is some history of early measurements of material properties being revised when more "pure" materials became available. In some cases earlier measurements were more useful for practical purposes because the material used in for original measurements more closely resembled the materia...
- Sun Mar 06, 2022 8:05 pm America/New_York
- Forum: Questions/Comments
- Question: Python3 on Linux
- Replies: 5
Re: Python3 on Linux
I get a message '/usr/bin/env: ‘python3’: No such file or directory'. Just to clarify the problem: Linux distros generally follow the python.org recommendation to use "python" for version 2.x, "python3" for version 3.x, but ADAPT Anaconda uses "python", and https://www...
- Tue Feb 22, 2022 6:10 pm America/New_York
- Forum: Questions/Comments
- Question: Parallel OCSSW l2gen code with OpenMP
- Replies: 3
Re: Parallel OCSSW l2gen code with OpenMP
Hello, I want parallel ocssw l2gen code with OpenMP. Many OCSSW users want to do the same l2gen processing on many files. For that use case, running multiple l2gen processes (e.g., using GNU parallel) is simple and efficient. I have done exactly that many times. Note that mass storage I/O is often ...